diff --git a/README.md b/README.md index 3e6f21b..0c3db6f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Limbo [![Build Status](http://ci.loohpjames.com/job/Limbo/badge/icon)](http://ci.loohpjames.com/job/Limbo/) -## Standalone Limbo Minecraft Server (Currently 1.21.4) +## Standalone Limbo Minecraft Server (Currently 1.21.5) https://www.spigotmc.org/resources/82468/ @@ -18,7 +18,7 @@ IP: mc.loohpjames.com ``` ![Server Banner](https://api.loohpjames.com/serverbanner.png?ip=mc.loohpjames.com&width=918&name=IP:%20mc.loohpjames.com) *** -### Downloads (1.17.1-1.21.4) +### Downloads (1.17.1-1.21.5) - [Jenkins](http://ci.loohpjames.com/job/Limbo/) *** ### Offical Plugins diff --git a/pom.xml b/pom.xml index dd3b5d8..26fe2bb 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ com.loohp Limbo Limbo - 0.7.12-ALPHA + 0.7.13-ALPHA Standalone Limbo Minecraft Server. https://github.com/LOOHP/Limbo @@ -136,7 +136,7 @@ - ${project.artifactId}-${project.version}-1.21.4 + ${project.artifactId}-${project.version}-1.21.5 @@ -265,31 +265,31 @@ net.kyori adventure-text-serializer-gson - 4.17.0 + 4.18.0 compile net.kyori adventure-text-serializer-legacy - 4.17.0 + 4.18.0 compile net.kyori adventure-text-serializer-plain - 4.17.0 + 4.18.0 compile net.kyori adventure-api - 4.17.0 + 4.18.0 compile net.kyori adventure-nbt - 4.17.0 + 4.18.0 compile diff --git a/spawn.schem b/spawn.schem index 539f365..3aad575 100644 Binary files a/spawn.schem and b/spawn.schem differ diff --git a/src/main/java/com/loohp/limbo/Limbo.java b/src/main/java/com/loohp/limbo/Limbo.java index c6c0388..474b516 100644 --- a/src/main/java/com/loohp/limbo/Limbo.java +++ b/src/main/java/com/loohp/limbo/Limbo.java @@ -132,8 +132,8 @@ public final class Limbo { //=========================== - public final String SERVER_IMPLEMENTATION_VERSION = "1.21.4"; - public final int SERVER_IMPLEMENTATION_PROTOCOL = 769; + public final String SERVER_IMPLEMENTATION_VERSION = "1.21.5"; + public final int SERVER_IMPLEMENTATION_PROTOCOL = 770; public final String LIMBO_IMPLEMENTATION_VERSION; private final AtomicBoolean isRunning; @@ -163,7 +163,6 @@ public final class Limbo { @SuppressWarnings("deprecation") private Unsafe unsafe; - @SuppressWarnings("unchecked") public Limbo() throws IOException, ParseException, NumberFormatException, ClassNotFoundException, InterruptedException { instance = this; unsafe = new Unsafe(this); diff --git a/src/main/java/com/loohp/limbo/entity/DataWatcher.java b/src/main/java/com/loohp/limbo/entity/DataWatcher.java index 55e339f..4e40fb9 100644 --- a/src/main/java/com/loohp/limbo/entity/DataWatcher.java +++ b/src/main/java/com/loohp/limbo/entity/DataWatcher.java @@ -31,8 +31,8 @@ import java.util.Map.Entry; public class DataWatcher { - private Entity entity; - private Map values; + private final Entity entity; + private final Map values; public DataWatcher(Entity entity) { this.entity = entity; @@ -147,7 +147,7 @@ public class DataWatcher { @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) - public static @interface WatchableField { + public @interface WatchableField { int MetadataIndex(); WatchableObjectType WatchableObjectType(); boolean IsOptional() default false; @@ -155,26 +155,37 @@ public class DataWatcher { int Bitmask() default 0x00; } - public static enum WatchableObjectType { + public enum WatchableObjectType { BYTE(0), - VARINT(1, 17), - FLOAT(2), - STRING(3), - CHAT(4, 5), - SLOT(6), - BOOLEAN(7), - ROTATION(8), - POSITION(9, 10), - DIRECTION(11), - UUID(-1, 12), - BLOCKID(-1, 13), - NBT(14), - PARTICLE(15), - VILLAGER_DATA(16), - POSE(18); + VARINT(1, 20), + VARLONG(2, 17), + FLOAT(3), + STRING(4), + CHAT(5, 6), + SLOT(7), + BOOLEAN(8), + ROTATION(9), + POSITION(10, 11), + DIRECTION(12), + UUID(-1, 13), + BLOCKID(14, 15), + NBT(16), + PARTICLE(17), + PARTICLES(18), + VILLAGER_DATA(19), + POSE(21), + CAT_VARIANT(22), + WOLF_VARIANT(23), + FROG_VARIANT(24), + GLOBAL_POSITION(-1, 25), + PAINTING_VARIANT(26), + SNIFFER_STATE(27), + ARMADILLO_STATE(28), + VECTOR3(29), + QUATERNION(30); - int typeId; - int optionalTypeId; + private final int typeId; + private final int optionalTypeId; WatchableObjectType(int typeId, int optionalTypeId) { this.typeId = typeId; diff --git a/src/main/java/com/loohp/limbo/network/ClientConnection.java b/src/main/java/com/loohp/limbo/network/ClientConnection.java index 784e52c..7bd0e32 100644 --- a/src/main/java/com/loohp/limbo/network/ClientConnection.java +++ b/src/main/java/com/loohp/limbo/network/ClientConnection.java @@ -601,6 +601,7 @@ public class ClientConnection extends Thread { PacketPlayOutGameStateChange gameEvent = new PacketPlayOutGameStateChange(PacketPlayOutGameStateChange.GameStateChangeEvent.LEVEL_CHUNKS_LOAD_START, 0); sendPacket(gameEvent); + player.playerInteractManager.update(); PacketPlayOutDeclareCommands declare = DeclareCommands.getDeclareCommandsPacket(player); 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 9874da6..c1b6557 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 @@ -28,6 +28,7 @@ import com.loohp.limbo.world.GeneratedBlockDataMappings; import net.kyori.adventure.key.Key; import net.querz.mca.Chunk; import net.querz.mca.Section; +import net.querz.nbt.io.SNBTUtil; import net.querz.nbt.tag.CompoundTag; import net.querz.nbt.tag.ListTag; @@ -120,7 +121,14 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut { output.writeInt(chunkX); output.writeInt(chunkZ); - DataTypeIO.writeTag(output, chunk.getHeightMaps()); + + DataTypeIO.writeVarInt(output, 1); + DataTypeIO.writeVarInt(output, 4); + long[] motionBlocking = chunk.getHeightMaps().getLongArray("MOTION_BLOCKING"); + DataTypeIO.writeVarInt(output, motionBlocking.length); + for (long l : motionBlocking) { + output.writeLong(l); + } ByteArrayOutputStream dataBuffer = new ByteArrayOutputStream(); DataOutputStream dataOut = new DataOutputStream(dataBuffer); @@ -164,7 +172,7 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut { long[] formattedLongs = bits.toLongArray(); //Limbo.getInstance().getConsole().sendMessage(longsNeeded + ""); - DataTypeIO.writeVarInt(dataOut, longsNeeded); + //DataTypeIO.writeVarInt(dataOut, longsNeeded); ??? for (int u = 0; u < longsNeeded; u++) { if (u < formattedLongs.length) { dataOut.writeLong(formattedLongs[u]); @@ -203,7 +211,7 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut { currentLong = currentLong << 16; currentLong |= id; } - DataTypeIO.writeVarInt(dataOut, longsNeeded); + //DataTypeIO.writeVarInt(dataOut, longsNeeded); ??? for (int j = 0; j < longsNeeded; j++) { if (j < globalLongs.size()) { dataOut.writeLong(globalLongs.get(j)); @@ -219,21 +227,21 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut { dataOut.writeShort(0); dataOut.writeByte(0); DataTypeIO.writeVarInt(dataOut, 0); - DataTypeIO.writeVarInt(dataOut, 0); + //DataTypeIO.writeVarInt(dataOut, 0); ??? } int biome; if (environment.equals(Environment.END)) { - biome = 55; //the_end + biome = 56; //the_end } else if (environment.equals(Environment.NETHER)) { biome = 34; //nether_waste } else if (environment.equals(Environment.NORMAL)) { - biome = 39; //plains + biome = 40; //plains } else { - biome = 39; //plains + biome = 40; //plains } dataOut.writeByte(0); DataTypeIO.writeVarInt(dataOut, biome); - DataTypeIO.writeVarInt(dataOut, 0); + //DataTypeIO.writeVarInt(dataOut, 0); ??? } byte[] data = dataBuffer.toByteArray(); @@ -246,10 +254,14 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut { int x = each.getInt("x") % 16; int y = each.getInt("y"); int z = each.getInt("z") % 16; + Key key = Key.key(chunk.getBlockStateAt(x, y, z).getString("Name")); + int id = BuiltInRegistries.BLOCK_ENTITY_TYPE.getId(key); + if (id < 0) { + new IllegalStateException("Unable to get block entity type for " + key + " (Is this scheme created in the same Minecraft version as Limbo?)").printStackTrace(); + } output.writeByte(((x & 15) << 4) | (z & 15)); output.writeShort(y); - Integer id = BuiltInRegistries.BLOCK_ENTITY_TYPE.getId(Key.key(chunk.getBlockStateAt(x, y, z).getString("Name"))); - DataTypeIO.writeVarInt(output, id == null ? -1 : id); + DataTypeIO.writeVarInt(output, Math.max(0, id)); DataTypeIO.writeTag(output, each); } @@ -276,9 +288,9 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut { if (array != null) { DataTypeIO.writeVarInt(output, 2048); //System.out.println(Arrays.toString(ArrayUtils.toPrimitive(array))); - for (int u = 0; u < array.length; u++) { - output.writeByte(array[u]); - } + for (Byte aByte : array) { + output.writeByte(aByte); + } } } @@ -288,9 +300,9 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut { if (array != null) { DataTypeIO.writeVarInt(output, 2048); //System.out.println(Arrays.toString(ArrayUtils.toPrimitive(array))); - for (int u = 0; u < array.length; u++) { - output.writeByte(array[u]); - } + for (Byte aByte : array) { + output.writeByte(aByte); + } } } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerAbilities.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerAbilities.java index 7798fad..62fb871 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerAbilities.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerAbilities.java @@ -72,11 +72,11 @@ public class PacketPlayOutPlayerAbilities extends PacketOut { DataOutputStream output = new DataOutputStream(buffer); output.writeByte(PacketRegistry.getPacketId(getClass())); + byte value = 0; for (PlayerAbilityFlags flag : flags) { value = (byte) (value | flag.getValue()); } - output.writeByte(value); output.writeFloat(flySpeed); output.writeFloat(fieldOfField); diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutUnloadChunk.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutUnloadChunk.java index 9291d51..9e9f1a3 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutUnloadChunk.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutUnloadChunk.java @@ -20,6 +20,8 @@ package com.loohp.limbo.network.protocol.packets; import com.loohp.limbo.registry.PacketRegistry; +import com.loohp.limbo.utils.DataTypeIO; +import com.loohp.limbo.world.ChunkPosition; import java.io.ByteArrayOutputStream; import java.io.DataOutputStream; @@ -27,20 +29,14 @@ import java.io.IOException; public class PacketPlayOutUnloadChunk extends PacketOut { - private final int chunkX; - private final int chunkZ; + private final ChunkPosition chunkPosition; - public PacketPlayOutUnloadChunk(int chunkX, int chunkZ) { - this.chunkX = chunkX; - this.chunkZ = chunkZ; + public PacketPlayOutUnloadChunk(ChunkPosition chunkPosition) { + this.chunkPosition = chunkPosition; } - public int getChunkX() { - return chunkX; - } - - public int getChunkZ() { - return chunkZ; + public ChunkPosition getChunkPosition() { + return chunkPosition; } @Override @@ -49,8 +45,7 @@ public class PacketPlayOutUnloadChunk extends PacketOut { DataOutputStream output = new DataOutputStream(buffer); output.writeByte(PacketRegistry.getPacketId(getClass())); - output.writeInt(chunkX); - output.writeInt(chunkZ); + DataTypeIO.writeChunkPosition(output, chunkPosition); return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java b/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java index 9c57313..1ed7522 100644 --- a/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java +++ b/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java @@ -121,7 +121,7 @@ public class PlayerInteractManager { for (Entry entry : currentViewing.entrySet()) { ChunkPosition chunkPos = entry.getKey(); if (!chunksInRange.containsKey(chunkPos)) { - PacketPlayOutUnloadChunk packet = new PacketPlayOutUnloadChunk(chunkPos.getChunkX(), chunkPos.getChunkZ()); + PacketPlayOutUnloadChunk packet = new PacketPlayOutUnloadChunk(chunkPos); player.clientConnection.sendPacket(packet); } } diff --git a/src/main/java/com/loohp/limbo/registry/RegistryCustom.java b/src/main/java/com/loohp/limbo/registry/RegistryCustom.java index 91c3df4..622ea9c 100644 --- a/src/main/java/com/loohp/limbo/registry/RegistryCustom.java +++ b/src/main/java/com/loohp/limbo/registry/RegistryCustom.java @@ -42,10 +42,16 @@ public class RegistryCustom { private static final Map REGISTRIES = new HashMap<>(); + public static final RegistryCustom CAT_VARIANT = register("cat_variant"); public static final RegistryCustom CHAT_TYPE = register("chat_type"); + public static final RegistryCustom CHICKEN_VARIANT = register("chicken_variant"); + public static final RegistryCustom COW_VARIANT = register("cow_variant"); public static final RegistryCustom DAMAGE_TYPE = register("damage_type"); public static final RegistryCustom DIMENSION_TYPE = register("dimension_type"); + public static final RegistryCustom FROG_VARIANT = register("frog_variant"); public static final RegistryCustom PAINTING_VARIANT = register("painting_variant"); + public static final RegistryCustom PIG_VARIANT = register("pig_variant"); + public static final RegistryCustom WOLF_SOUND_VARIANT = register("wolf_sound_variant"); public static final RegistryCustom WOLF_VARIANT = register("wolf_variant"); public static final RegistryCustom WORLDGEN_BIOME = register("worldgen/biome"); diff --git a/src/main/java/com/loohp/limbo/utils/DataTypeIO.java b/src/main/java/com/loohp/limbo/utils/DataTypeIO.java index 7ae6599..21963ef 100644 --- a/src/main/java/com/loohp/limbo/utils/DataTypeIO.java +++ b/src/main/java/com/loohp/limbo/utils/DataTypeIO.java @@ -27,6 +27,7 @@ import com.loohp.limbo.location.Vector; import com.loohp.limbo.registry.BuiltInRegistries; import com.loohp.limbo.registry.DataComponentType; import com.loohp.limbo.world.BlockPosition; +import com.loohp.limbo.world.ChunkPosition; import net.kyori.adventure.key.Key; import net.kyori.adventure.text.Component; import net.kyori.adventure.text.serializer.gson.GsonComponentSerializer; @@ -186,7 +187,7 @@ public class DataTypeIO { tag = EndTag.INSTANCE; } out.writeByte(tag.getID()); - if (tag.getID() != 0) { + if (tag.getID() != EndTag.ID) { new NBTOutputStream(out).writeRawTag(tag, Tag.DEFAULT_MAX_DEPTH); } } @@ -194,7 +195,7 @@ public class DataTypeIO { @SuppressWarnings("unchecked") public static > T readTag(DataInputStream in, Class type) throws IOException { byte b = in.readByte(); - if (b == 0) { + if (b == EndTag.ID) { return type.isInstance(EndTag.INSTANCE) ? (T) EndTag.INSTANCE : null; } PushbackInputStream buffered = new PushbackInputStream(in); @@ -226,47 +227,31 @@ public class DataTypeIO { } public static int readVarInt(DataInputStream in) throws IOException { - int numRead = 0; - int result = 0; - byte read; - do { - read = in.readByte(); - int value = (read & 0b01111111); - result |= (value << (7 * numRead)); - - numRead++; - if (numRead > 5) { - throw new RuntimeException("VarInt is too big"); - } - } while ((read & 0b10000000) != 0); - - return result; + int i = 0; + int j = 0; + byte b; + do { + b = in.readByte(); + i |= (b & 127) << j++ * 7; + if (j > 5) { + throw new RuntimeException("VarInt too big"); + } + } while ((b & 128) == 128); + return i; } public static void writeVarInt(DataOutputStream out, int value) throws IOException { - do { - byte temp = (byte)(value & 0b01111111); - // Note: >>> means that the sign bit is shifted with the rest of the number rather than being left alone - value >>>= 7; - if (value != 0) { - temp |= 0b10000000; - } - out.writeByte(temp); - } while (value != 0); + while ((value & -128) != 0) { + out.writeByte(value & 127 | 128); + value >>>= 7; + } + out.writeByte(value); } public static int getVarIntLength(int value) throws IOException { ByteArrayOutputStream buffer = new ByteArrayOutputStream(); DataOutputStream out = new DataOutputStream(buffer); - do { - byte temp = (byte)(value & 0b01111111); - // Note: >>> means that the sign bit is shifted with the rest of the number rather than being left alone - value >>>= 7; - if (value != 0) { - temp |= 0b10000000; - } - out.writeByte(temp); - } while (value != 0); + writeVarInt(out, value); return buffer.toByteArray().length; } @@ -316,4 +301,9 @@ public class DataTypeIO { writeTag(out, tag); } + public static void writeChunkPosition(DataOutputStream out, ChunkPosition chunkPosition) throws IOException { + long l = (long) chunkPosition.getChunkX() & 4294967295L | ((long) chunkPosition.getChunkZ() & 4294967295L) << 32; + out.writeLong(l); + } + } diff --git a/src/main/java/com/loohp/limbo/utils/LastSeenMessages.java b/src/main/java/com/loohp/limbo/utils/LastSeenMessages.java index 88232c7..b2b1b84 100644 --- a/src/main/java/com/loohp/limbo/utils/LastSeenMessages.java +++ b/src/main/java/com/loohp/limbo/utils/LastSeenMessages.java @@ -65,19 +65,22 @@ public class LastSeenMessages { private final int offset; private final BitSet acknowledged; + private final byte checksum; - public b(int offset, BitSet acknowledged) { + public b(int offset, BitSet acknowledged, byte checksum) { this.offset = offset; this.acknowledged = acknowledged; + this.checksum = checksum; } public b(DataInputStream in) throws IOException { - this(DataTypeIO.readVarInt(in), DataTypeIO.readFixedBitSet(in, 20)); + this(DataTypeIO.readVarInt(in), DataTypeIO.readFixedBitSet(in, 20), in.readByte()); } public void write(DataOutputStream out) throws IOException { DataTypeIO.writeVarInt(out, this.offset); DataTypeIO.writeFixedBitSet(out, this.acknowledged, 20); + out.writeByte(checksum); } } diff --git a/src/main/java/com/loohp/limbo/utils/SchematicConversionUtils.java b/src/main/java/com/loohp/limbo/utils/SchematicConversionUtils.java index 27e8fbf..ba1dd2f 100644 --- a/src/main/java/com/loohp/limbo/utils/SchematicConversionUtils.java +++ b/src/main/java/com/loohp/limbo/utils/SchematicConversionUtils.java @@ -21,6 +21,9 @@ package com.loohp.limbo.utils; import net.kyori.adventure.key.Key; import net.querz.nbt.tag.CompoundTag; +import net.querz.nbt.tag.ListTag; +import net.querz.nbt.tag.StringTag; +import net.querz.nbt.tag.Tag; public class SchematicConversionUtils { @@ -31,6 +34,27 @@ public class SchematicConversionUtils { tag.putInt("x", pos[0]); tag.putInt("y", pos[1]); tag.putInt("z", pos[2]); + for (Tag subTag : tag.values()) { + removeStringTagQuote(subTag); + } + return tag; + } + + public static Tag removeStringTagQuote(Tag tag) { + if (tag instanceof StringTag) { + String value = ((StringTag) tag).getValue(); + if (value.startsWith("\"") && value.endsWith("\"")) { + ((StringTag) tag).setValue(value.substring(1, value.length() - 1)); + } + } else if (tag instanceof CompoundTag) { + for (Tag subTag : ((CompoundTag) tag).values()) { + removeStringTagQuote(subTag); + } + } else if (tag instanceof ListTag) { + for (Tag subTag : (ListTag) tag) { + removeStringTagQuote(subTag); + } + } return tag; } diff --git a/src/main/java/com/loohp/limbo/world/World.java b/src/main/java/com/loohp/limbo/world/World.java index 9107c6f..47c8297 100644 --- a/src/main/java/com/loohp/limbo/world/World.java +++ b/src/main/java/com/loohp/limbo/world/World.java @@ -66,7 +66,7 @@ public class World { EMPTY_CHUNK.cleanupPalettesAndBlockStates(); EMPTY_CHUNK.setHeightMaps(HEIGHT_MAP.clone()); EMPTY_CHUNK.setBiomes(new int[256]); - EMPTY_CHUNK.setTileEntities(new ListTag(CompoundTag.class)); + EMPTY_CHUNK.setTileEntities(new ListTag<>(CompoundTag.class)); } private String name; diff --git a/src/main/resources/data/minecraft/cat_variant/all_black.json b/src/main/resources/data/minecraft/cat_variant/all_black.json new file mode 100644 index 0000000..c444623 --- /dev/null +++ b/src/main/resources/data/minecraft/cat_variant/all_black.json @@ -0,0 +1,21 @@ +{ + "asset_id": "minecraft:entity/cat/all_black", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:structure", + "structures": "#minecraft:cats_spawn_as_black" + }, + "priority": 1 + }, + { + "condition": { + "type": "minecraft:moon_brightness", + "range": { + "min": 0.9 + } + }, + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/cat_variant/black.json b/src/main/resources/data/minecraft/cat_variant/black.json new file mode 100644 index 0000000..32f6664 --- /dev/null +++ b/src/main/resources/data/minecraft/cat_variant/black.json @@ -0,0 +1,8 @@ +{ + "asset_id": "minecraft:entity/cat/black", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/cat_variant/british_shorthair.json b/src/main/resources/data/minecraft/cat_variant/british_shorthair.json new file mode 100644 index 0000000..a65e0be --- /dev/null +++ b/src/main/resources/data/minecraft/cat_variant/british_shorthair.json @@ -0,0 +1,8 @@ +{ + "asset_id": "minecraft:entity/cat/british_shorthair", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/cat_variant/calico.json b/src/main/resources/data/minecraft/cat_variant/calico.json new file mode 100644 index 0000000..1e8eca7 --- /dev/null +++ b/src/main/resources/data/minecraft/cat_variant/calico.json @@ -0,0 +1,8 @@ +{ + "asset_id": "minecraft:entity/cat/calico", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/cat_variant/jellie.json b/src/main/resources/data/minecraft/cat_variant/jellie.json new file mode 100644 index 0000000..86d9e4a --- /dev/null +++ b/src/main/resources/data/minecraft/cat_variant/jellie.json @@ -0,0 +1,8 @@ +{ + "asset_id": "minecraft:entity/cat/jellie", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/cat_variant/persian.json b/src/main/resources/data/minecraft/cat_variant/persian.json new file mode 100644 index 0000000..fa4b3c5 --- /dev/null +++ b/src/main/resources/data/minecraft/cat_variant/persian.json @@ -0,0 +1,8 @@ +{ + "asset_id": "minecraft:entity/cat/persian", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/cat_variant/ragdoll.json b/src/main/resources/data/minecraft/cat_variant/ragdoll.json new file mode 100644 index 0000000..2b98489 --- /dev/null +++ b/src/main/resources/data/minecraft/cat_variant/ragdoll.json @@ -0,0 +1,8 @@ +{ + "asset_id": "minecraft:entity/cat/ragdoll", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/cat_variant/red.json b/src/main/resources/data/minecraft/cat_variant/red.json new file mode 100644 index 0000000..cf2ec42 --- /dev/null +++ b/src/main/resources/data/minecraft/cat_variant/red.json @@ -0,0 +1,8 @@ +{ + "asset_id": "minecraft:entity/cat/red", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/cat_variant/siamese.json b/src/main/resources/data/minecraft/cat_variant/siamese.json new file mode 100644 index 0000000..1449d8b --- /dev/null +++ b/src/main/resources/data/minecraft/cat_variant/siamese.json @@ -0,0 +1,8 @@ +{ + "asset_id": "minecraft:entity/cat/siamese", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/cat_variant/tabby.json b/src/main/resources/data/minecraft/cat_variant/tabby.json new file mode 100644 index 0000000..640eeb7 --- /dev/null +++ b/src/main/resources/data/minecraft/cat_variant/tabby.json @@ -0,0 +1,8 @@ +{ + "asset_id": "minecraft:entity/cat/tabby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/cat_variant/white.json b/src/main/resources/data/minecraft/cat_variant/white.json new file mode 100644 index 0000000..ef736fe --- /dev/null +++ b/src/main/resources/data/minecraft/cat_variant/white.json @@ -0,0 +1,8 @@ +{ + "asset_id": "minecraft:entity/cat/white", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/chicken_variant/cold.json b/src/main/resources/data/minecraft/chicken_variant/cold.json new file mode 100644 index 0000000..caa2e76 --- /dev/null +++ b/src/main/resources/data/minecraft/chicken_variant/cold.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:entity/chicken/cold_chicken", + "model": "cold", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:plains" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/chicken_variant/temperate.json b/src/main/resources/data/minecraft/chicken_variant/temperate.json new file mode 100644 index 0000000..703a10c --- /dev/null +++ b/src/main/resources/data/minecraft/chicken_variant/temperate.json @@ -0,0 +1,8 @@ +{ + "asset_id": "minecraft:entity/chicken/temperate_chicken", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/chicken_variant/warm.json b/src/main/resources/data/minecraft/chicken_variant/warm.json new file mode 100644 index 0000000..b001f78 --- /dev/null +++ b/src/main/resources/data/minecraft/chicken_variant/warm.json @@ -0,0 +1,12 @@ +{ + "asset_id": "minecraft:entity/chicken/warm_chicken", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:plains" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/cow_variant/cold.json b/src/main/resources/data/minecraft/cow_variant/cold.json new file mode 100644 index 0000000..be0744a --- /dev/null +++ b/src/main/resources/data/minecraft/cow_variant/cold.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:entity/cow/cold_cow", + "model": "cold", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:plains" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/cow_variant/temperate.json b/src/main/resources/data/minecraft/cow_variant/temperate.json new file mode 100644 index 0000000..fea2f40 --- /dev/null +++ b/src/main/resources/data/minecraft/cow_variant/temperate.json @@ -0,0 +1,8 @@ +{ + "asset_id": "minecraft:entity/cow/temperate_cow", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/cow_variant/warm.json b/src/main/resources/data/minecraft/cow_variant/warm.json new file mode 100644 index 0000000..9d10f50 --- /dev/null +++ b/src/main/resources/data/minecraft/cow_variant/warm.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:entity/cow/warm_cow", + "model": "warm", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:plains" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/frog_variant/cold.json b/src/main/resources/data/minecraft/frog_variant/cold.json new file mode 100644 index 0000000..7880709 --- /dev/null +++ b/src/main/resources/data/minecraft/frog_variant/cold.json @@ -0,0 +1,12 @@ +{ + "asset_id": "minecraft:entity/frog/cold_frog", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:plains" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/frog_variant/temperate.json b/src/main/resources/data/minecraft/frog_variant/temperate.json new file mode 100644 index 0000000..0211c65 --- /dev/null +++ b/src/main/resources/data/minecraft/frog_variant/temperate.json @@ -0,0 +1,8 @@ +{ + "asset_id": "minecraft:entity/frog/temperate_frog", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/frog_variant/warm.json b/src/main/resources/data/minecraft/frog_variant/warm.json new file mode 100644 index 0000000..cf909bd --- /dev/null +++ b/src/main/resources/data/minecraft/frog_variant/warm.json @@ -0,0 +1,12 @@ +{ + "asset_id": "minecraft:entity/frog/warm_frog", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:plains" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/pig_variant/cold.json b/src/main/resources/data/minecraft/pig_variant/cold.json new file mode 100644 index 0000000..b59c997 --- /dev/null +++ b/src/main/resources/data/minecraft/pig_variant/cold.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:entity/pig/cold_pig", + "model": "cold", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:plains" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/pig_variant/temperate.json b/src/main/resources/data/minecraft/pig_variant/temperate.json new file mode 100644 index 0000000..4b769b1 --- /dev/null +++ b/src/main/resources/data/minecraft/pig_variant/temperate.json @@ -0,0 +1,8 @@ +{ + "asset_id": "minecraft:entity/pig/temperate_pig", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/pig_variant/warm.json b/src/main/resources/data/minecraft/pig_variant/warm.json new file mode 100644 index 0000000..9ee4d3e --- /dev/null +++ b/src/main/resources/data/minecraft/pig_variant/warm.json @@ -0,0 +1,12 @@ +{ + "asset_id": "minecraft:entity/pig/warm_pig", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:plains" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/wolf_sound_variant/angry.json b/src/main/resources/data/minecraft/wolf_sound_variant/angry.json new file mode 100644 index 0000000..b8e40f3 --- /dev/null +++ b/src/main/resources/data/minecraft/wolf_sound_variant/angry.json @@ -0,0 +1,8 @@ +{ + "ambient_sound": "minecraft:entity.wolf_angry.ambient", + "death_sound": "minecraft:entity.wolf_angry.death", + "growl_sound": "minecraft:entity.wolf_angry.growl", + "hurt_sound": "minecraft:entity.wolf_angry.hurt", + "pant_sound": "minecraft:entity.wolf_angry.pant", + "whine_sound": "minecraft:entity.wolf_angry.whine" +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/wolf_sound_variant/big.json b/src/main/resources/data/minecraft/wolf_sound_variant/big.json new file mode 100644 index 0000000..27f167e --- /dev/null +++ b/src/main/resources/data/minecraft/wolf_sound_variant/big.json @@ -0,0 +1,8 @@ +{ + "ambient_sound": "minecraft:entity.wolf_big.ambient", + "death_sound": "minecraft:entity.wolf_big.death", + "growl_sound": "minecraft:entity.wolf_big.growl", + "hurt_sound": "minecraft:entity.wolf_big.hurt", + "pant_sound": "minecraft:entity.wolf_big.pant", + "whine_sound": "minecraft:entity.wolf_big.whine" +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/wolf_sound_variant/classic.json b/src/main/resources/data/minecraft/wolf_sound_variant/classic.json new file mode 100644 index 0000000..7c43a8a --- /dev/null +++ b/src/main/resources/data/minecraft/wolf_sound_variant/classic.json @@ -0,0 +1,8 @@ +{ + "ambient_sound": "minecraft:entity.wolf.ambient", + "death_sound": "minecraft:entity.wolf.death", + "growl_sound": "minecraft:entity.wolf.growl", + "hurt_sound": "minecraft:entity.wolf.hurt", + "pant_sound": "minecraft:entity.wolf.pant", + "whine_sound": "minecraft:entity.wolf.whine" +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/wolf_sound_variant/cute.json b/src/main/resources/data/minecraft/wolf_sound_variant/cute.json new file mode 100644 index 0000000..83b26be --- /dev/null +++ b/src/main/resources/data/minecraft/wolf_sound_variant/cute.json @@ -0,0 +1,8 @@ +{ + "ambient_sound": "minecraft:entity.wolf_cute.ambient", + "death_sound": "minecraft:entity.wolf_cute.death", + "growl_sound": "minecraft:entity.wolf_cute.growl", + "hurt_sound": "minecraft:entity.wolf_cute.hurt", + "pant_sound": "minecraft:entity.wolf_cute.pant", + "whine_sound": "minecraft:entity.wolf_cute.whine" +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/wolf_sound_variant/grumpy.json b/src/main/resources/data/minecraft/wolf_sound_variant/grumpy.json new file mode 100644 index 0000000..94ada85 --- /dev/null +++ b/src/main/resources/data/minecraft/wolf_sound_variant/grumpy.json @@ -0,0 +1,8 @@ +{ + "ambient_sound": "minecraft:entity.wolf_grumpy.ambient", + "death_sound": "minecraft:entity.wolf_grumpy.death", + "growl_sound": "minecraft:entity.wolf_grumpy.growl", + "hurt_sound": "minecraft:entity.wolf_grumpy.hurt", + "pant_sound": "minecraft:entity.wolf_grumpy.pant", + "whine_sound": "minecraft:entity.wolf_grumpy.whine" +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/wolf_sound_variant/puglin.json b/src/main/resources/data/minecraft/wolf_sound_variant/puglin.json new file mode 100644 index 0000000..09194d3 --- /dev/null +++ b/src/main/resources/data/minecraft/wolf_sound_variant/puglin.json @@ -0,0 +1,8 @@ +{ + "ambient_sound": "minecraft:entity.wolf_puglin.ambient", + "death_sound": "minecraft:entity.wolf_puglin.death", + "growl_sound": "minecraft:entity.wolf_puglin.growl", + "hurt_sound": "minecraft:entity.wolf_puglin.hurt", + "pant_sound": "minecraft:entity.wolf_puglin.pant", + "whine_sound": "minecraft:entity.wolf_puglin.whine" +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/wolf_sound_variant/sad.json b/src/main/resources/data/minecraft/wolf_sound_variant/sad.json new file mode 100644 index 0000000..80cbaa3 --- /dev/null +++ b/src/main/resources/data/minecraft/wolf_sound_variant/sad.json @@ -0,0 +1,8 @@ +{ + "ambient_sound": "minecraft:entity.wolf_sad.ambient", + "death_sound": "minecraft:entity.wolf_sad.death", + "growl_sound": "minecraft:entity.wolf_sad.growl", + "hurt_sound": "minecraft:entity.wolf_sad.hurt", + "pant_sound": "minecraft:entity.wolf_sad.pant", + "whine_sound": "minecraft:entity.wolf_sad.whine" +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/wolf_variant/ashen.json b/src/main/resources/data/minecraft/wolf_variant/ashen.json index 16ad8ae..0322dba 100644 --- a/src/main/resources/data/minecraft/wolf_variant/ashen.json +++ b/src/main/resources/data/minecraft/wolf_variant/ashen.json @@ -1,6 +1,16 @@ { - "angry_texture": "minecraft:entity/wolf/wolf_ashen_angry", - "biomes": "minecraft:snowy_taiga", - "tame_texture": "minecraft:entity/wolf/wolf_ashen_tame", - "wild_texture": "minecraft:entity/wolf/wolf_ashen" + "assets": { + "angry": "minecraft:entity/wolf/wolf_ashen_angry", + "tame": "minecraft:entity/wolf/wolf_ashen_tame", + "wild": "minecraft:entity/wolf/wolf_ashen" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:snowy_taiga" + }, + "priority": 1 + } + ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/wolf_variant/black.json b/src/main/resources/data/minecraft/wolf_variant/black.json index fe704d1..52d7db6 100644 --- a/src/main/resources/data/minecraft/wolf_variant/black.json +++ b/src/main/resources/data/minecraft/wolf_variant/black.json @@ -1,6 +1,16 @@ { - "angry_texture": "minecraft:entity/wolf/wolf_black_angry", - "biomes": "minecraft:old_growth_pine_taiga", - "tame_texture": "minecraft:entity/wolf/wolf_black_tame", - "wild_texture": "minecraft:entity/wolf/wolf_black" + "assets": { + "angry": "minecraft:entity/wolf/wolf_black_angry", + "tame": "minecraft:entity/wolf/wolf_black_tame", + "wild": "minecraft:entity/wolf/wolf_black" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:old_growth_pine_taiga" + }, + "priority": 1 + } + ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/wolf_variant/chestnut.json b/src/main/resources/data/minecraft/wolf_variant/chestnut.json index c94e4f5..88f4877 100644 --- a/src/main/resources/data/minecraft/wolf_variant/chestnut.json +++ b/src/main/resources/data/minecraft/wolf_variant/chestnut.json @@ -1,6 +1,16 @@ { - "angry_texture": "minecraft:entity/wolf/wolf_chestnut_angry", - "biomes": "minecraft:old_growth_spruce_taiga", - "tame_texture": "minecraft:entity/wolf/wolf_chestnut_tame", - "wild_texture": "minecraft:entity/wolf/wolf_chestnut" + "assets": { + "angry": "minecraft:entity/wolf/wolf_chestnut_angry", + "tame": "minecraft:entity/wolf/wolf_chestnut_tame", + "wild": "minecraft:entity/wolf/wolf_chestnut" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:old_growth_spruce_taiga" + }, + "priority": 1 + } + ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/wolf_variant/pale.json b/src/main/resources/data/minecraft/wolf_variant/pale.json index fde9505..f90fdc7 100644 --- a/src/main/resources/data/minecraft/wolf_variant/pale.json +++ b/src/main/resources/data/minecraft/wolf_variant/pale.json @@ -1,6 +1,12 @@ { - "angry_texture": "minecraft:entity/wolf/wolf_angry", - "biomes": "minecraft:taiga", - "tame_texture": "minecraft:entity/wolf/wolf_tame", - "wild_texture": "minecraft:entity/wolf/wolf" + "assets": { + "angry": "minecraft:entity/wolf/wolf_angry", + "tame": "minecraft:entity/wolf/wolf_tame", + "wild": "minecraft:entity/wolf/wolf" + }, + "spawn_conditions": [ + { + "priority": 0 + } + ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/wolf_variant/rusty.json b/src/main/resources/data/minecraft/wolf_variant/rusty.json index 3fe050b..6bac44a 100644 --- a/src/main/resources/data/minecraft/wolf_variant/rusty.json +++ b/src/main/resources/data/minecraft/wolf_variant/rusty.json @@ -1,6 +1,16 @@ { - "angry_texture": "minecraft:entity/wolf/wolf_rusty_angry", - "biomes": "minecraft:jungle", - "tame_texture": "minecraft:entity/wolf/wolf_rusty_tame", - "wild_texture": "minecraft:entity/wolf/wolf_rusty" + "assets": { + "angry": "minecraft:entity/wolf/wolf_rusty_angry", + "tame": "minecraft:entity/wolf/wolf_rusty_tame", + "wild": "minecraft:entity/wolf/wolf_rusty" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:jungle" + }, + "priority": 1 + } + ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/wolf_variant/snowy.json b/src/main/resources/data/minecraft/wolf_variant/snowy.json index 41441e8..f829123 100644 --- a/src/main/resources/data/minecraft/wolf_variant/snowy.json +++ b/src/main/resources/data/minecraft/wolf_variant/snowy.json @@ -1,6 +1,16 @@ { - "angry_texture": "minecraft:entity/wolf/wolf_snowy_angry", - "biomes": "minecraft:grove", - "tame_texture": "minecraft:entity/wolf/wolf_snowy_tame", - "wild_texture": "minecraft:entity/wolf/wolf_snowy" + "assets": { + "angry": "minecraft:entity/wolf/wolf_snowy_angry", + "tame": "minecraft:entity/wolf/wolf_snowy_tame", + "wild": "minecraft:entity/wolf/wolf_snowy" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:grove" + }, + "priority": 1 + } + ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/wolf_variant/spotted.json b/src/main/resources/data/minecraft/wolf_variant/spotted.json index 96e3154..cec4040 100644 --- a/src/main/resources/data/minecraft/wolf_variant/spotted.json +++ b/src/main/resources/data/minecraft/wolf_variant/spotted.json @@ -1,6 +1,16 @@ { - "angry_texture": "minecraft:entity/wolf/wolf_spotted_angry", - "biomes": "minecraft:savanna", - "tame_texture": "minecraft:entity/wolf/wolf_spotted_tame", - "wild_texture": "minecraft:entity/wolf/wolf_spotted" + "assets": { + "angry": "minecraft:entity/wolf/wolf_spotted_angry", + "tame": "minecraft:entity/wolf/wolf_spotted_tame", + "wild": "minecraft:entity/wolf/wolf_spotted" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:savanna" + }, + "priority": 1 + } + ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/wolf_variant/striped.json b/src/main/resources/data/minecraft/wolf_variant/striped.json index 6168bf3..60d9f4c 100644 --- a/src/main/resources/data/minecraft/wolf_variant/striped.json +++ b/src/main/resources/data/minecraft/wolf_variant/striped.json @@ -1,6 +1,16 @@ { - "angry_texture": "minecraft:entity/wolf/wolf_striped_angry", - "biomes": "minecraft:badlands", - "tame_texture": "minecraft:entity/wolf/wolf_striped_tame", - "wild_texture": "minecraft:entity/wolf/wolf_striped" + "assets": { + "angry": "minecraft:entity/wolf/wolf_striped_angry", + "tame": "minecraft:entity/wolf/wolf_striped_tame", + "wild": "minecraft:entity/wolf/wolf_striped" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:badlands" + }, + "priority": 1 + } + ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/wolf_variant/woods.json b/src/main/resources/data/minecraft/wolf_variant/woods.json index 7c2afa2..35dba8c 100644 --- a/src/main/resources/data/minecraft/wolf_variant/woods.json +++ b/src/main/resources/data/minecraft/wolf_variant/woods.json @@ -1,6 +1,16 @@ { - "angry_texture": "minecraft:entity/wolf/wolf_woods_angry", - "biomes": "minecraft:forest", - "tame_texture": "minecraft:entity/wolf/wolf_woods_tame", - "wild_texture": "minecraft:entity/wolf/wolf_woods" + "assets": { + "angry": "minecraft:entity/wolf/wolf_woods_angry", + "tame": "minecraft:entity/wolf/wolf_woods_tame", + "wild": "minecraft:entity/wolf/wolf_woods" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:forest" + }, + "priority": 1 + } + ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/worldgen/biome/badlands.json b/src/main/resources/data/minecraft/worldgen/biome/badlands.json index 68fe247..ae75cf6 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/badlands.json +++ b/src/main/resources/data/minecraft/worldgen/biome/badlands.json @@ -87,12 +87,14 @@ [ "minecraft:glow_lichen", "minecraft:patch_grass_badlands", + "minecraft:patch_dry_grass_badlands", "minecraft:patch_dead_bush_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", "minecraft:patch_sugar_cane_badlands", "minecraft:patch_pumpkin", - "minecraft:patch_cactus_decorated" + "minecraft:patch_cactus_decorated", + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" @@ -111,6 +113,30 @@ ], "axolotls": [], "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, { "type": "minecraft:armadillo", "maxCount": 2, diff --git a/src/main/resources/data/minecraft/worldgen/biome/bamboo_jungle.json b/src/main/resources/data/minecraft/worldgen/biome/bamboo_jungle.json index a0df35f..8d68123 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/bamboo_jungle.json +++ b/src/main/resources/data/minecraft/worldgen/biome/bamboo_jungle.json @@ -88,8 +88,9 @@ "minecraft:patch_grass_jungle", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", "minecraft:vines", "minecraft:patch_melon" ], diff --git a/src/main/resources/data/minecraft/worldgen/biome/beach.json b/src/main/resources/data/minecraft/worldgen/biome/beach.json index 8146697..8de498e 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/beach.json +++ b/src/main/resources/data/minecraft/worldgen/biome/beach.json @@ -75,8 +75,9 @@ "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/birch_forest.json b/src/main/resources/data/minecraft/worldgen/biome/birch_forest.json index 2dfdd62..6778612 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/birch_forest.json +++ b/src/main/resources/data/minecraft/worldgen/biome/birch_forest.json @@ -83,13 +83,16 @@ [ "minecraft:glow_lichen", "minecraft:forest_flowers", + "minecraft:wildflowers_birch_forest", "minecraft:trees_birch", + "minecraft:patch_bush", "minecraft:flower_default", "minecraft:patch_grass_forest", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/cold_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/cold_ocean.json index ef30c57..6d96a7b 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/cold_ocean.json +++ b/src/main/resources/data/minecraft/worldgen/biome/cold_ocean.json @@ -76,8 +76,9 @@ "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", "minecraft:seagrass_cold", "minecraft:kelp_cold" ], diff --git a/src/main/resources/data/minecraft/worldgen/biome/dark_forest.json b/src/main/resources/data/minecraft/worldgen/biome/dark_forest.json index 9096e3b..f44558b 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/dark_forest.json +++ b/src/main/resources/data/minecraft/worldgen/biome/dark_forest.json @@ -6,6 +6,7 @@ ], "downfall": 0.8, "effects": { + "dry_foliage_color": 8082228, "fog_color": 12638463, "grass_color_modifier": "dark_forest", "mood_sound": { @@ -89,8 +90,10 @@ "minecraft:patch_grass_forest", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_leaf_litter", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/deep_cold_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/deep_cold_ocean.json index c26e48f..214327c 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/deep_cold_ocean.json +++ b/src/main/resources/data/minecraft/worldgen/biome/deep_cold_ocean.json @@ -76,8 +76,9 @@ "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", "minecraft:seagrass_deep_cold", "minecraft:kelp_cold" ], diff --git a/src/main/resources/data/minecraft/worldgen/biome/deep_dark.json b/src/main/resources/data/minecraft/worldgen/biome/deep_dark.json index 0bffad7..81e98dd 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/deep_dark.json +++ b/src/main/resources/data/minecraft/worldgen/biome/deep_dark.json @@ -85,7 +85,6 @@ "minecraft:patch_grass_plain", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin" ], [ diff --git a/src/main/resources/data/minecraft/worldgen/biome/deep_frozen_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/deep_frozen_ocean.json index 8e834ed..b01af16 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/deep_frozen_ocean.json +++ b/src/main/resources/data/minecraft/worldgen/biome/deep_frozen_ocean.json @@ -80,8 +80,9 @@ "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/deep_lukewarm_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/deep_lukewarm_ocean.json index 55caa33..fdf7f55 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/deep_lukewarm_ocean.json +++ b/src/main/resources/data/minecraft/worldgen/biome/deep_lukewarm_ocean.json @@ -76,8 +76,9 @@ "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", "minecraft:seagrass_deep_warm", "minecraft:kelp_warm" ], diff --git a/src/main/resources/data/minecraft/worldgen/biome/deep_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/deep_ocean.json index 7f964ef..302bd3a 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/deep_ocean.json +++ b/src/main/resources/data/minecraft/worldgen/biome/deep_ocean.json @@ -76,8 +76,9 @@ "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", "minecraft:seagrass_deep", "minecraft:kelp_cold" ], diff --git a/src/main/resources/data/minecraft/worldgen/biome/desert.json b/src/main/resources/data/minecraft/worldgen/biome/desert.json index 9f4c9f6..cb4d62b 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/desert.json +++ b/src/main/resources/data/minecraft/worldgen/biome/desert.json @@ -88,6 +88,7 @@ "minecraft:glow_lichen", "minecraft:flower_default", "minecraft:patch_grass_badlands", + "minecraft:patch_dry_grass_desert", "minecraft:patch_dead_bush_2", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", @@ -116,7 +117,13 @@ "type": "minecraft:rabbit", "maxCount": 3, "minCount": 2, - "weight": 4 + "weight": 12 + }, + { + "type": "minecraft:camel", + "maxCount": 1, + "minCount": 1, + "weight": 1 } ], "misc": [], diff --git a/src/main/resources/data/minecraft/worldgen/biome/dripstone_caves.json b/src/main/resources/data/minecraft/worldgen/biome/dripstone_caves.json index 9a9b209..2c52745 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/dripstone_caves.json +++ b/src/main/resources/data/minecraft/worldgen/biome/dripstone_caves.json @@ -92,7 +92,6 @@ "minecraft:patch_grass_plain", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin" ], [ diff --git a/src/main/resources/data/minecraft/worldgen/biome/eroded_badlands.json b/src/main/resources/data/minecraft/worldgen/biome/eroded_badlands.json index 68fe247..ae75cf6 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/eroded_badlands.json +++ b/src/main/resources/data/minecraft/worldgen/biome/eroded_badlands.json @@ -87,12 +87,14 @@ [ "minecraft:glow_lichen", "minecraft:patch_grass_badlands", + "minecraft:patch_dry_grass_badlands", "minecraft:patch_dead_bush_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", "minecraft:patch_sugar_cane_badlands", "minecraft:patch_pumpkin", - "minecraft:patch_cactus_decorated" + "minecraft:patch_cactus_decorated", + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" @@ -111,6 +113,30 @@ ], "axolotls": [], "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, { "type": "minecraft:armadillo", "maxCount": 2, diff --git a/src/main/resources/data/minecraft/worldgen/biome/flower_forest.json b/src/main/resources/data/minecraft/worldgen/biome/flower_forest.json index 2eea711..cac1e70 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/flower_forest.json +++ b/src/main/resources/data/minecraft/worldgen/biome/flower_forest.json @@ -88,8 +88,9 @@ "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/forest.json b/src/main/resources/data/minecraft/worldgen/biome/forest.json index 8922b7a..6d16e03 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/forest.json +++ b/src/main/resources/data/minecraft/worldgen/biome/forest.json @@ -83,13 +83,15 @@ [ "minecraft:glow_lichen", "minecraft:forest_flowers", - "minecraft:trees_birch_and_oak", + "minecraft:trees_birch_and_oak_leaf_litter", + "minecraft:patch_bush", "minecraft:flower_default", "minecraft:patch_grass_forest", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/frozen_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/frozen_ocean.json index 2f8fa12..f60bd4d 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/frozen_ocean.json +++ b/src/main/resources/data/minecraft/worldgen/biome/frozen_ocean.json @@ -80,8 +80,9 @@ "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/frozen_river.json b/src/main/resources/data/minecraft/worldgen/biome/frozen_river.json index 6ce8051..279bbc3 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/frozen_river.json +++ b/src/main/resources/data/minecraft/worldgen/biome/frozen_river.json @@ -72,12 +72,14 @@ [ "minecraft:glow_lichen", "minecraft:trees_water", + "minecraft:patch_bush", "minecraft:flower_default", "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/grove.json b/src/main/resources/data/minecraft/worldgen/biome/grove.json index 459e9ca..af07cbd 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/grove.json +++ b/src/main/resources/data/minecraft/worldgen/biome/grove.json @@ -87,7 +87,6 @@ [ "minecraft:glow_lichen", "minecraft:trees_grove", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin" ], [ diff --git a/src/main/resources/data/minecraft/worldgen/biome/ice_spikes.json b/src/main/resources/data/minecraft/worldgen/biome/ice_spikes.json index 0b87fb4..68f99d7 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/ice_spikes.json +++ b/src/main/resources/data/minecraft/worldgen/biome/ice_spikes.json @@ -80,8 +80,9 @@ "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/jungle.json b/src/main/resources/data/minecraft/worldgen/biome/jungle.json index 61850c6..67b5fe7 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/jungle.json +++ b/src/main/resources/data/minecraft/worldgen/biome/jungle.json @@ -88,8 +88,9 @@ "minecraft:patch_grass_jungle", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", "minecraft:vines", "minecraft:patch_melon" ], diff --git a/src/main/resources/data/minecraft/worldgen/biome/lukewarm_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/lukewarm_ocean.json index 0a79ab2..54a836a 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/lukewarm_ocean.json +++ b/src/main/resources/data/minecraft/worldgen/biome/lukewarm_ocean.json @@ -76,8 +76,9 @@ "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", "minecraft:seagrass_warm", "minecraft:kelp_warm" ], diff --git a/src/main/resources/data/minecraft/worldgen/biome/mangrove_swamp.json b/src/main/resources/data/minecraft/worldgen/biome/mangrove_swamp.json index 7bd6098..178f886 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/mangrove_swamp.json +++ b/src/main/resources/data/minecraft/worldgen/biome/mangrove_swamp.json @@ -6,6 +6,7 @@ ], "downfall": 0.9, "effects": { + "dry_foliage_color": 8082228, "fog_color": 12638463, "foliage_color": 9285927, "grass_color_modifier": "swamp", @@ -89,7 +90,8 @@ "minecraft:patch_grass_normal", "minecraft:patch_dead_bush", "minecraft:patch_waterlily", - "minecraft:seagrass_swamp" + "minecraft:seagrass_swamp", + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/meadow.json b/src/main/resources/data/minecraft/worldgen/biome/meadow.json index 393849c..5768f87 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/meadow.json +++ b/src/main/resources/data/minecraft/worldgen/biome/meadow.json @@ -86,9 +86,10 @@ [ "minecraft:glow_lichen", "minecraft:patch_tall_grass_2", - "minecraft:patch_grass_plain", + "minecraft:patch_grass_meadow", "minecraft:flower_meadow", - "minecraft:trees_meadow" + "minecraft:trees_meadow", + "minecraft:wildflowers_meadow" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/mushroom_fields.json b/src/main/resources/data/minecraft/worldgen/biome/mushroom_fields.json index af25780..d03e179 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/mushroom_fields.json +++ b/src/main/resources/data/minecraft/worldgen/biome/mushroom_fields.json @@ -74,8 +74,9 @@ "minecraft:mushroom_island_vegetation", "minecraft:brown_mushroom_taiga", "minecraft:red_mushroom_taiga", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/ocean.json b/src/main/resources/data/minecraft/worldgen/biome/ocean.json index 9374025..3513295 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/ocean.json +++ b/src/main/resources/data/minecraft/worldgen/biome/ocean.json @@ -76,8 +76,9 @@ "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", "minecraft:seagrass_normal", "minecraft:kelp_cold" ], diff --git a/src/main/resources/data/minecraft/worldgen/biome/old_growth_birch_forest.json b/src/main/resources/data/minecraft/worldgen/biome/old_growth_birch_forest.json index 33e51ae..28a1d94 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/old_growth_birch_forest.json +++ b/src/main/resources/data/minecraft/worldgen/biome/old_growth_birch_forest.json @@ -83,13 +83,16 @@ [ "minecraft:glow_lichen", "minecraft:forest_flowers", + "minecraft:wildflowers_birch_forest", "minecraft:birch_tall", + "minecraft:patch_bush", "minecraft:flower_default", "minecraft:patch_grass_forest", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/old_growth_pine_taiga.json b/src/main/resources/data/minecraft/worldgen/biome/old_growth_pine_taiga.json index 9c88558..e221c24 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/old_growth_pine_taiga.json +++ b/src/main/resources/data/minecraft/worldgen/biome/old_growth_pine_taiga.json @@ -92,8 +92,9 @@ "minecraft:red_mushroom_old_growth", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", "minecraft:patch_berry_common" ], [ diff --git a/src/main/resources/data/minecraft/worldgen/biome/old_growth_spruce_taiga.json b/src/main/resources/data/minecraft/worldgen/biome/old_growth_spruce_taiga.json index 59752b9..7f393af 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/old_growth_spruce_taiga.json +++ b/src/main/resources/data/minecraft/worldgen/biome/old_growth_spruce_taiga.json @@ -92,8 +92,9 @@ "minecraft:red_mushroom_old_growth", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", "minecraft:patch_berry_common" ], [ diff --git a/src/main/resources/data/minecraft/worldgen/biome/pale_garden.json b/src/main/resources/data/minecraft/worldgen/biome/pale_garden.json index d46ba10..ac2df04 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/pale_garden.json +++ b/src/main/resources/data/minecraft/worldgen/biome/pale_garden.json @@ -6,6 +6,7 @@ ], "downfall": 0.8, "effects": { + "dry_foliage_color": 10528412, "fog_color": 8484720, "foliage_color": 8883574, "grass_color": 7832178, @@ -79,8 +80,9 @@ "minecraft:pale_garden_flowers", "minecraft:flower_pale_garden", "minecraft:patch_grass_forest", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/plains.json b/src/main/resources/data/minecraft/worldgen/biome/plains.json index 4124953..a396056 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/plains.json +++ b/src/main/resources/data/minecraft/worldgen/biome/plains.json @@ -72,13 +72,15 @@ [ "minecraft:glow_lichen", "minecraft:patch_tall_grass_2", + "minecraft:patch_bush", "minecraft:trees_plains", "minecraft:flower_plains", "minecraft:patch_grass_plain", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/river.json b/src/main/resources/data/minecraft/worldgen/biome/river.json index 834c5e1..0221bd9 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/river.json +++ b/src/main/resources/data/minecraft/worldgen/biome/river.json @@ -72,12 +72,14 @@ [ "minecraft:glow_lichen", "minecraft:trees_water", + "minecraft:patch_bush", "minecraft:flower_default", "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", "minecraft:seagrass_river" ], [ diff --git a/src/main/resources/data/minecraft/worldgen/biome/savanna.json b/src/main/resources/data/minecraft/worldgen/biome/savanna.json index c086501..59b9a6c 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/savanna.json +++ b/src/main/resources/data/minecraft/worldgen/biome/savanna.json @@ -77,8 +77,9 @@ "minecraft:patch_grass_savanna", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/savanna_plateau.json b/src/main/resources/data/minecraft/worldgen/biome/savanna_plateau.json index c776c77..eafc228 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/savanna_plateau.json +++ b/src/main/resources/data/minecraft/worldgen/biome/savanna_plateau.json @@ -77,8 +77,9 @@ "minecraft:patch_grass_savanna", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/snowy_beach.json b/src/main/resources/data/minecraft/worldgen/biome/snowy_beach.json index c5d81fe..e87419c 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/snowy_beach.json +++ b/src/main/resources/data/minecraft/worldgen/biome/snowy_beach.json @@ -75,8 +75,9 @@ "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/snowy_plains.json b/src/main/resources/data/minecraft/worldgen/biome/snowy_plains.json index 489a061..845813c 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/snowy_plains.json +++ b/src/main/resources/data/minecraft/worldgen/biome/snowy_plains.json @@ -77,8 +77,9 @@ "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/snowy_slopes.json b/src/main/resources/data/minecraft/worldgen/biome/snowy_slopes.json index df845d7..c601af8 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/snowy_slopes.json +++ b/src/main/resources/data/minecraft/worldgen/biome/snowy_slopes.json @@ -86,7 +86,6 @@ ], [ "minecraft:glow_lichen", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin" ], [ diff --git a/src/main/resources/data/minecraft/worldgen/biome/snowy_taiga.json b/src/main/resources/data/minecraft/worldgen/biome/snowy_taiga.json index 2fe871e..bb792a2 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/snowy_taiga.json +++ b/src/main/resources/data/minecraft/worldgen/biome/snowy_taiga.json @@ -77,8 +77,9 @@ "minecraft:patch_grass_taiga_2", "minecraft:brown_mushroom_taiga", "minecraft:red_mushroom_taiga", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", "minecraft:patch_berry_rare" ], [ diff --git a/src/main/resources/data/minecraft/worldgen/biome/sparse_jungle.json b/src/main/resources/data/minecraft/worldgen/biome/sparse_jungle.json index 8ca6b21..5e37d71 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/sparse_jungle.json +++ b/src/main/resources/data/minecraft/worldgen/biome/sparse_jungle.json @@ -87,8 +87,9 @@ "minecraft:patch_grass_jungle", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", "minecraft:vines", "minecraft:patch_melon_sparse" ], diff --git a/src/main/resources/data/minecraft/worldgen/biome/stony_shore.json b/src/main/resources/data/minecraft/worldgen/biome/stony_shore.json index 1637f0f..5371b00 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/stony_shore.json +++ b/src/main/resources/data/minecraft/worldgen/biome/stony_shore.json @@ -75,8 +75,9 @@ "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/sunflower_plains.json b/src/main/resources/data/minecraft/worldgen/biome/sunflower_plains.json index 78ab660..0e007c0 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/sunflower_plains.json +++ b/src/main/resources/data/minecraft/worldgen/biome/sunflower_plains.json @@ -78,8 +78,9 @@ "minecraft:patch_grass_plain", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/swamp.json b/src/main/resources/data/minecraft/worldgen/biome/swamp.json index c0a03d9..3816f56 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/swamp.json +++ b/src/main/resources/data/minecraft/worldgen/biome/swamp.json @@ -6,6 +6,7 @@ ], "downfall": 0.9, "effects": { + "dry_foliage_color": 8082228, "fog_color": 12638463, "foliage_color": 6975545, "grass_color_modifier": "swamp", @@ -95,6 +96,8 @@ "minecraft:red_mushroom_normal", "minecraft:patch_sugar_cane_swamp", "minecraft:patch_pumpkin", + "minecraft:patch_firefly_bush_swamp", + "minecraft:patch_firefly_bush_near_water_swamp", "minecraft:seagrass_swamp" ], [ diff --git a/src/main/resources/data/minecraft/worldgen/biome/taiga.json b/src/main/resources/data/minecraft/worldgen/biome/taiga.json index b531870..5947919 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/taiga.json +++ b/src/main/resources/data/minecraft/worldgen/biome/taiga.json @@ -77,8 +77,9 @@ "minecraft:patch_grass_taiga_2", "minecraft:brown_mushroom_taiga", "minecraft:red_mushroom_taiga", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", "minecraft:patch_berry_common" ], [ diff --git a/src/main/resources/data/minecraft/worldgen/biome/warm_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/warm_ocean.json index 50aba53..3238349 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/warm_ocean.json +++ b/src/main/resources/data/minecraft/worldgen/biome/warm_ocean.json @@ -76,8 +76,9 @@ "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", - "minecraft:patch_sugar_cane", "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", "minecraft:warm_ocean_vegetation", "minecraft:seagrass_warm", "minecraft:sea_pickle" diff --git a/src/main/resources/data/minecraft/worldgen/biome/windswept_forest.json b/src/main/resources/data/minecraft/worldgen/biome/windswept_forest.json index c94e221..4e4dd49 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/windswept_forest.json +++ b/src/main/resources/data/minecraft/worldgen/biome/windswept_forest.json @@ -75,12 +75,14 @@ [ "minecraft:glow_lichen", "minecraft:trees_windswept_forest", + "minecraft:patch_bush", "minecraft:flower_default", "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/windswept_gravelly_hills.json b/src/main/resources/data/minecraft/worldgen/biome/windswept_gravelly_hills.json index 6277321..e0c0140 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/windswept_gravelly_hills.json +++ b/src/main/resources/data/minecraft/worldgen/biome/windswept_gravelly_hills.json @@ -75,12 +75,14 @@ [ "minecraft:glow_lichen", "minecraft:trees_windswept_hills", + "minecraft:patch_bush", "minecraft:flower_default", "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/windswept_hills.json b/src/main/resources/data/minecraft/worldgen/biome/windswept_hills.json index 6277321..e0c0140 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/windswept_hills.json +++ b/src/main/resources/data/minecraft/worldgen/biome/windswept_hills.json @@ -75,12 +75,14 @@ [ "minecraft:glow_lichen", "minecraft:trees_windswept_hills", + "minecraft:patch_bush", "minecraft:flower_default", "minecraft:patch_grass_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/windswept_savanna.json b/src/main/resources/data/minecraft/worldgen/biome/windswept_savanna.json index b6a6b1d..3d4b738 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/windswept_savanna.json +++ b/src/main/resources/data/minecraft/worldgen/biome/windswept_savanna.json @@ -76,8 +76,9 @@ "minecraft:patch_grass_normal", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", "minecraft:patch_sugar_cane", - "minecraft:patch_pumpkin" + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" diff --git a/src/main/resources/data/minecraft/worldgen/biome/wooded_badlands.json b/src/main/resources/data/minecraft/worldgen/biome/wooded_badlands.json index e22ccb1..9db7100 100644 --- a/src/main/resources/data/minecraft/worldgen/biome/wooded_badlands.json +++ b/src/main/resources/data/minecraft/worldgen/biome/wooded_badlands.json @@ -88,12 +88,14 @@ "minecraft:glow_lichen", "minecraft:trees_badlands", "minecraft:patch_grass_badlands", + "minecraft:patch_dry_grass_badlands", "minecraft:patch_dead_bush_badlands", "minecraft:brown_mushroom_normal", "minecraft:red_mushroom_normal", "minecraft:patch_sugar_cane_badlands", "minecraft:patch_pumpkin", - "minecraft:patch_cactus_decorated" + "minecraft:patch_cactus_decorated", + "minecraft:patch_firefly_bush_near_water" ], [ "minecraft:freeze_top_layer" @@ -112,6 +114,30 @@ ], "axolotls": [], "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, { "type": "minecraft:armadillo", "maxCount": 2, diff --git a/src/main/resources/reports/blocks.json b/src/main/resources/reports/blocks.json index 2363531..13cf23a 100644 --- a/src/main/resources/reports/blocks.json +++ b/src/main/resources/reports/blocks.json @@ -25,7 +25,7 @@ }, "states": [ { - "id": 9482, + "id": 9492, "properties": { "face": "floor", "facing": "north", @@ -33,7 +33,7 @@ } }, { - "id": 9483, + "id": 9493, "properties": { "face": "floor", "facing": "north", @@ -41,7 +41,7 @@ } }, { - "id": 9484, + "id": 9494, "properties": { "face": "floor", "facing": "south", @@ -49,7 +49,7 @@ } }, { - "id": 9485, + "id": 9495, "properties": { "face": "floor", "facing": "south", @@ -57,7 +57,7 @@ } }, { - "id": 9486, + "id": 9496, "properties": { "face": "floor", "facing": "west", @@ -65,7 +65,7 @@ } }, { - "id": 9487, + "id": 9497, "properties": { "face": "floor", "facing": "west", @@ -73,7 +73,7 @@ } }, { - "id": 9488, + "id": 9498, "properties": { "face": "floor", "facing": "east", @@ -81,7 +81,7 @@ } }, { - "id": 9489, + "id": 9499, "properties": { "face": "floor", "facing": "east", @@ -89,7 +89,7 @@ } }, { - "id": 9490, + "id": 9500, "properties": { "face": "wall", "facing": "north", @@ -98,95 +98,95 @@ }, { "default": true, - "id": 9491, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9492, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 9493, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 9494, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 9495, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 9496, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 9497, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 9498, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 9499, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9500, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { "id": 9501, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "north", "powered": "false" } }, { "id": 9502, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9503, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9504, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 9505, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 9506, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 9507, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 9508, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 9509, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 9510, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9511, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9512, "properties": { "face": "ceiling", "facing": "west", @@ -194,7 +194,7 @@ } }, { - "id": 9503, + "id": 9513, "properties": { "face": "ceiling", "facing": "west", @@ -202,7 +202,7 @@ } }, { - "id": 9504, + "id": 9514, "properties": { "face": "ceiling", "facing": "east", @@ -210,7 +210,7 @@ } }, { - "id": 9505, + "id": 9515, "properties": { "face": "ceiling", "facing": "east", @@ -250,108 +250,108 @@ ] }, "states": [ - { - "id": 12963, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12964, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12965, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12966, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12967, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12968, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12969, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12970, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12971, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12972, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 12973, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12974, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12975, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12976, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12977, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12978, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12979, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12980, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12981, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12982, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12983, "properties": { "facing": "north", "half": "lower", @@ -362,152 +362,52 @@ }, { "default": true, - "id": 12974, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12975, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12976, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12977, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12978, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12979, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12980, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12981, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12982, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12983, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { "id": 12984, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 12985, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12986, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 12987, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "true" } }, { "id": 12988, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "false" } }, @@ -515,9 +415,9 @@ "id": 12989, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -525,9 +425,9 @@ "id": 12990, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -535,9 +435,9 @@ "id": 12991, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -545,14 +445,114 @@ "id": 12992, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 12993, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12994, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12995, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12996, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12997, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12998, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12999, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13000, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13001, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13002, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13003, "properties": { "facing": "south", "half": "lower", @@ -562,7 +562,7 @@ } }, { - "id": 12994, + "id": 13004, "properties": { "facing": "south", "half": "lower", @@ -571,113 +571,13 @@ "powered": "false" } }, - { - "id": 12995, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12996, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12997, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12998, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12999, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13000, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13001, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13002, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13003, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13004, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 13005, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -685,9 +585,9 @@ "id": 13006, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -695,9 +595,9 @@ "id": 13007, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -705,14 +605,114 @@ "id": 13008, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 13009, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13010, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13011, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13012, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13013, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13014, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13015, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13016, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13017, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13018, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13019, "properties": { "facing": "west", "half": "lower", @@ -722,7 +722,7 @@ } }, { - "id": 13010, + "id": 13020, "properties": { "facing": "west", "half": "lower", @@ -731,113 +731,13 @@ "powered": "false" } }, - { - "id": 13011, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13012, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13013, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13014, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13015, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13016, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13017, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13018, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13019, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13020, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 13021, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -845,14 +745,114 @@ "id": 13022, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 13023, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13024, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13025, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13026, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13027, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13028, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13029, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13030, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13031, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13032, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13033, "properties": { "facing": "east", "half": "lower", @@ -862,7 +862,7 @@ } }, { - "id": 13024, + "id": 13034, "properties": { "facing": "east", "half": "lower", @@ -872,7 +872,7 @@ } }, { - "id": 13025, + "id": 13035, "properties": { "facing": "east", "half": "lower", @@ -882,7 +882,7 @@ } }, { - "id": 13026, + "id": 13036, "properties": { "facing": "east", "half": "lower", @@ -921,113 +921,13 @@ ] }, "states": [ - { - "id": 12579, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12580, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12581, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12582, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12583, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12584, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12585, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12586, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12587, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12588, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 12589, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -1035,9 +935,9 @@ "id": 12590, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -1045,9 +945,9 @@ "id": 12591, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -1055,14 +955,114 @@ "id": 12592, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 12593, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12594, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12595, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12596, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12597, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12598, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12599, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12600, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12601, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12602, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12603, "properties": { "east": "true", "north": "false", @@ -1072,7 +1072,7 @@ } }, { - "id": 12594, + "id": 12604, "properties": { "east": "true", "north": "false", @@ -1081,118 +1081,118 @@ "west": "false" } }, - { - "id": 12595, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12596, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12597, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12598, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12599, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12600, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12601, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12602, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12603, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12604, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 12605, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 12606, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12607, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12608, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12609, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12610, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12611, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12612, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12613, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12614, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12615, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12616, "properties": { "east": "false", "north": "false", @@ -1202,7 +1202,7 @@ } }, { - "id": 12607, + "id": 12617, "properties": { "east": "false", "north": "false", @@ -1212,7 +1212,7 @@ } }, { - "id": 12608, + "id": 12618, "properties": { "east": "false", "north": "false", @@ -1222,7 +1222,7 @@ } }, { - "id": 12609, + "id": 12619, "properties": { "east": "false", "north": "false", @@ -1233,7 +1233,7 @@ }, { "default": true, - "id": 12610, + "id": 12620, "properties": { "east": "false", "north": "false", @@ -1272,7 +1272,7 @@ }, "states": [ { - "id": 12291, + "id": 12301, "properties": { "facing": "north", "in_wall": "true", @@ -1281,7 +1281,7 @@ } }, { - "id": 12292, + "id": 12302, "properties": { "facing": "north", "in_wall": "true", @@ -1290,7 +1290,7 @@ } }, { - "id": 12293, + "id": 12303, "properties": { "facing": "north", "in_wall": "true", @@ -1299,7 +1299,7 @@ } }, { - "id": 12294, + "id": 12304, "properties": { "facing": "north", "in_wall": "true", @@ -1308,7 +1308,7 @@ } }, { - "id": 12295, + "id": 12305, "properties": { "facing": "north", "in_wall": "false", @@ -1317,7 +1317,7 @@ } }, { - "id": 12296, + "id": 12306, "properties": { "facing": "north", "in_wall": "false", @@ -1326,7 +1326,7 @@ } }, { - "id": 12297, + "id": 12307, "properties": { "facing": "north", "in_wall": "false", @@ -1336,7 +1336,7 @@ }, { "default": true, - "id": 12298, + "id": 12308, "properties": { "facing": "north", "in_wall": "false", @@ -1344,143 +1344,143 @@ "powered": "false" } }, - { - "id": 12299, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 12300, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 12301, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 12302, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 12303, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 12304, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 12305, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 12306, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 12307, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 12308, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, { "id": 12309, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12310, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 12311, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "true" } }, { "id": 12312, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "false" } }, { "id": 12313, "properties": { - "facing": "west", + "facing": "south", "in_wall": "false", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12314, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 12315, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 12316, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 12317, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 12318, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 12319, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 12320, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 12321, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 12322, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 12323, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 12324, "properties": { "facing": "west", "in_wall": "false", @@ -1489,7 +1489,7 @@ } }, { - "id": 12315, + "id": 12325, "properties": { "facing": "east", "in_wall": "true", @@ -1498,7 +1498,7 @@ } }, { - "id": 12316, + "id": 12326, "properties": { "facing": "east", "in_wall": "true", @@ -1507,7 +1507,7 @@ } }, { - "id": 12317, + "id": 12327, "properties": { "facing": "east", "in_wall": "true", @@ -1516,7 +1516,7 @@ } }, { - "id": 12318, + "id": 12328, "properties": { "facing": "east", "in_wall": "true", @@ -1525,7 +1525,7 @@ } }, { - "id": 12319, + "id": 12329, "properties": { "facing": "east", "in_wall": "false", @@ -1534,7 +1534,7 @@ } }, { - "id": 12320, + "id": 12330, "properties": { "facing": "east", "in_wall": "false", @@ -1543,7 +1543,7 @@ } }, { - "id": 12321, + "id": 12331, "properties": { "facing": "east", "in_wall": "false", @@ -1552,7 +1552,7 @@ } }, { - "id": 12322, + "id": 12332, "properties": { "facing": "east", "in_wall": "false", @@ -1597,240 +1597,240 @@ ] }, "states": [ - { - "id": 5121, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5122, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5123, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5124, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5125, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5126, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5127, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5128, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5129, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, { "id": 5130, "properties": { "attached": "true", - "rotation": "4", - "waterlogged": "false" + "rotation": "0", + "waterlogged": "true" } }, { "id": 5131, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "true" + "rotation": "0", + "waterlogged": "false" } }, { "id": 5132, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5133, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5134, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5135, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5136, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5137, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5138, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5139, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5140, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5141, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5142, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5143, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5144, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5145, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5146, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5147, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5148, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "false" + "rotation": "9", + "waterlogged": "true" } }, { "id": 5149, "properties": { "attached": "true", - "rotation": "14", - "waterlogged": "true" + "rotation": "9", + "waterlogged": "false" } }, { "id": 5150, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5151, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5152, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5153, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5154, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5155, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5156, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5157, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5158, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5159, "properties": { "attached": "true", "rotation": "14", @@ -1838,7 +1838,7 @@ } }, { - "id": 5151, + "id": 5160, "properties": { "attached": "true", "rotation": "15", @@ -1846,7 +1846,7 @@ } }, { - "id": 5152, + "id": 5161, "properties": { "attached": "true", "rotation": "15", @@ -1854,7 +1854,7 @@ } }, { - "id": 5153, + "id": 5162, "properties": { "attached": "false", "rotation": "0", @@ -1863,215 +1863,215 @@ }, { "default": true, - "id": 5154, + "id": 5163, "properties": { "attached": "false", "rotation": "0", "waterlogged": "false" } }, - { - "id": 5155, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5156, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5157, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5158, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5159, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5160, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5161, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5162, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5163, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 5164, "properties": { "attached": "false", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5165, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5166, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5167, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5168, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5169, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5170, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5171, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5172, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5173, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5174, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5175, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5176, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5177, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5178, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5179, "properties": { "attached": "false", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5180, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5181, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5182, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5183, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5184, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5185, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5186, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5187, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5188, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5189, "properties": { "attached": "false", "rotation": "13", @@ -2079,7 +2079,7 @@ } }, { - "id": 5181, + "id": 5190, "properties": { "attached": "false", "rotation": "14", @@ -2087,7 +2087,7 @@ } }, { - "id": 5182, + "id": 5191, "properties": { "attached": "false", "rotation": "14", @@ -2095,7 +2095,7 @@ } }, { - "id": 5183, + "id": 5192, "properties": { "attached": "false", "rotation": "15", @@ -2103,7 +2103,7 @@ } }, { - "id": 5184, + "id": 5193, "properties": { "attached": "false", "rotation": "15", @@ -2114,7 +2114,8 @@ }, "minecraft:acacia_leaves": { "definition": { - "type": "minecraft:leaves", + "type": "minecraft:tinted_particle_leaves", + "leaf_particle_chance": 0.01, "properties": {} }, "properties": { @@ -2424,14 +2425,14 @@ }, "states": [ { - "id": 5891, + "id": 5900, "properties": { "powered": "true" } }, { "default": true, - "id": 5892, + "id": 5901, "properties": { "powered": "false" } @@ -2498,7 +2499,7 @@ }, "states": [ { - "id": 4453, + "id": 4462, "properties": { "rotation": "0", "waterlogged": "true" @@ -2506,217 +2507,217 @@ }, { "default": true, - "id": 4454, + "id": 4463, "properties": { "rotation": "0", "waterlogged": "false" } }, - { - "id": 4455, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4456, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4457, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4458, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4459, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4460, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4461, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4462, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4463, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 4464, "properties": { - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 4465, "properties": { - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 4466, "properties": { - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 4467, "properties": { - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 4468, "properties": { - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 4469, "properties": { - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 4470, "properties": { - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 4471, "properties": { - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 4472, "properties": { - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 4473, "properties": { - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 4474, "properties": { - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 4475, "properties": { - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 4476, "properties": { - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 4477, "properties": { - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 4478, "properties": { - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 4479, "properties": { - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 4480, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4481, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4482, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4483, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4484, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4485, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4486, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4487, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4488, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4489, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 4481, + "id": 4490, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 4482, + "id": 4491, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 4483, + "id": 4492, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 4484, + "id": 4493, "properties": { "rotation": "15", "waterlogged": "false" @@ -2742,21 +2743,21 @@ }, "states": [ { - "id": 12065, + "id": 12075, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12066, + "id": 12076, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12067, + "id": 12077, "properties": { "type": "bottom", "waterlogged": "true" @@ -2764,21 +2765,21 @@ }, { "default": true, - "id": 12068, + "id": 12078, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12069, + "id": 12079, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12070, + "id": 12080, "properties": { "type": "double", "waterlogged": "false" @@ -2818,98 +2819,98 @@ ] }, "states": [ - { - "id": 10683, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10684, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10685, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10686, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10687, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10688, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10689, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10690, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10691, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10692, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 10693, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10694, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10695, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10696, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10697, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10698, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10699, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10700, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10701, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10702, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10703, "properties": { "facing": "north", "half": "bottom", @@ -2919,100 +2920,10 @@ }, { "default": true, - "id": 10694, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10695, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10696, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10697, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10698, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10699, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10700, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10701, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10702, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10703, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 10704, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -3020,8 +2931,8 @@ { "id": 10705, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -3029,8 +2940,8 @@ { "id": 10706, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -3038,8 +2949,8 @@ { "id": 10707, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -3047,8 +2958,8 @@ { "id": 10708, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -3056,8 +2967,8 @@ { "id": 10709, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -3065,8 +2976,8 @@ { "id": 10710, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -3074,8 +2985,8 @@ { "id": 10711, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -3083,8 +2994,8 @@ { "id": 10712, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -3093,7 +3004,7 @@ "id": 10713, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -3102,7 +3013,7 @@ "id": 10714, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -3111,7 +3022,7 @@ "id": 10715, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -3120,7 +3031,7 @@ "id": 10716, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -3129,7 +3040,7 @@ "id": 10717, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -3138,7 +3049,7 @@ "id": 10718, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -3147,7 +3058,7 @@ "id": 10719, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -3156,7 +3067,7 @@ "id": 10720, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -3165,7 +3076,7 @@ "id": 10721, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -3174,7 +3085,7 @@ "id": 10722, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -3182,8 +3093,8 @@ { "id": 10723, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -3191,8 +3102,8 @@ { "id": 10724, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -3200,8 +3111,8 @@ { "id": 10725, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -3209,8 +3120,8 @@ { "id": 10726, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -3218,8 +3129,8 @@ { "id": 10727, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -3227,8 +3138,8 @@ { "id": 10728, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -3236,8 +3147,8 @@ { "id": 10729, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -3245,8 +3156,8 @@ { "id": 10730, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -3254,8 +3165,8 @@ { "id": 10731, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -3263,8 +3174,8 @@ { "id": 10732, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -3273,7 +3184,7 @@ "id": 10733, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -3282,7 +3193,7 @@ "id": 10734, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -3291,7 +3202,7 @@ "id": 10735, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -3300,7 +3211,7 @@ "id": 10736, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -3309,7 +3220,7 @@ "id": 10737, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -3318,7 +3229,7 @@ "id": 10738, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -3327,7 +3238,7 @@ "id": 10739, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -3336,7 +3247,7 @@ "id": 10740, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -3345,7 +3256,7 @@ "id": 10741, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -3354,7 +3265,7 @@ "id": 10742, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -3362,8 +3273,8 @@ { "id": 10743, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -3371,8 +3282,8 @@ { "id": 10744, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -3380,8 +3291,8 @@ { "id": 10745, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -3389,8 +3300,8 @@ { "id": 10746, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -3398,8 +3309,8 @@ { "id": 10747, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -3407,8 +3318,8 @@ { "id": 10748, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -3416,8 +3327,8 @@ { "id": 10749, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -3425,8 +3336,8 @@ { "id": 10750, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -3434,8 +3345,8 @@ { "id": 10751, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -3443,8 +3354,8 @@ { "id": 10752, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -3453,7 +3364,7 @@ "id": 10753, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -3462,7 +3373,7 @@ "id": 10754, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -3471,7 +3382,7 @@ "id": 10755, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -3480,7 +3391,7 @@ "id": 10756, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -3489,7 +3400,7 @@ "id": 10757, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -3498,7 +3409,7 @@ "id": 10758, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -3507,7 +3418,7 @@ "id": 10759, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -3516,7 +3427,7 @@ "id": 10760, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -3525,13 +3436,103 @@ "id": 10761, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 10762, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10763, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10764, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10765, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10766, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10767, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10768, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10769, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10770, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10771, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10772, "properties": { "facing": "east", "half": "bottom", @@ -3572,118 +3573,118 @@ ] }, "states": [ - { - "id": 6386, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6387, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6388, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6389, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6390, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6391, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6392, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6393, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6394, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6395, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6396, "properties": { "facing": "north", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, { "id": 6397, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6398, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6399, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6400, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6401, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6402, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6403, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6404, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6405, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6406, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6407, "properties": { "facing": "north", "half": "bottom", @@ -3693,7 +3694,7 @@ } }, { - "id": 6398, + "id": 6408, "properties": { "facing": "north", "half": "bottom", @@ -3703,7 +3704,7 @@ } }, { - "id": 6399, + "id": 6409, "properties": { "facing": "north", "half": "bottom", @@ -3713,7 +3714,7 @@ } }, { - "id": 6400, + "id": 6410, "properties": { "facing": "north", "half": "bottom", @@ -3724,7 +3725,7 @@ }, { "default": true, - "id": 6401, + "id": 6411, "properties": { "facing": "north", "half": "bottom", @@ -3733,113 +3734,13 @@ "waterlogged": "false" } }, - { - "id": 6402, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6403, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6404, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6405, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6406, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6407, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6408, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6409, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6410, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6411, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6412, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -3847,9 +3748,9 @@ "id": 6413, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -3857,9 +3758,9 @@ "id": 6414, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -3867,14 +3768,114 @@ "id": 6415, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6416, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6417, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6418, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6419, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6420, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6421, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6422, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6423, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6424, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6425, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6426, "properties": { "facing": "south", "half": "bottom", @@ -3884,7 +3885,7 @@ } }, { - "id": 6417, + "id": 6427, "properties": { "facing": "south", "half": "bottom", @@ -3893,113 +3894,13 @@ "waterlogged": "false" } }, - { - "id": 6418, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6419, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6420, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6421, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6422, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6423, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6424, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6425, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6426, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6427, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6428, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -4007,9 +3908,9 @@ "id": 6429, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -4017,9 +3918,9 @@ "id": 6430, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -4027,14 +3928,114 @@ "id": 6431, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6432, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6433, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6434, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6435, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6436, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6437, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6438, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6439, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6440, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6441, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6442, "properties": { "facing": "west", "half": "bottom", @@ -4044,7 +4045,7 @@ } }, { - "id": 6433, + "id": 6443, "properties": { "facing": "west", "half": "bottom", @@ -4053,113 +4054,13 @@ "waterlogged": "false" } }, - { - "id": 6434, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6435, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6436, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6437, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6438, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6439, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6440, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6441, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6442, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6443, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6444, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -4167,14 +4068,114 @@ "id": 6445, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, { "id": 6446, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6447, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6448, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6449, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6450, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6451, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6452, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6453, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6454, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6455, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6456, "properties": { "facing": "east", "half": "bottom", @@ -4184,7 +4185,7 @@ } }, { - "id": 6447, + "id": 6457, "properties": { "facing": "east", "half": "bottom", @@ -4194,7 +4195,7 @@ } }, { - "id": 6448, + "id": 6458, "properties": { "facing": "east", "half": "bottom", @@ -4204,7 +4205,7 @@ } }, { - "id": 6449, + "id": 6459, "properties": { "facing": "east", "half": "bottom", @@ -4235,7 +4236,7 @@ }, "states": [ { - "id": 5721, + "id": 5730, "properties": { "facing": "north", "waterlogged": "true" @@ -4243,49 +4244,49 @@ }, { "default": true, - "id": 5722, + "id": 5731, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5723, + "id": 5732, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5724, + "id": 5733, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5725, + "id": 5734, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5726, + "id": 5735, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5727, + "id": 5736, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5728, + "id": 5737, "properties": { "facing": "east", "waterlogged": "false" @@ -4313,7 +4314,7 @@ }, "states": [ { - "id": 4873, + "id": 4882, "properties": { "facing": "north", "waterlogged": "true" @@ -4321,49 +4322,49 @@ }, { "default": true, - "id": 4874, + "id": 4883, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 4875, + "id": 4884, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 4876, + "id": 4885, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 4877, + "id": 4886, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 4878, + "id": 4887, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 4879, + "id": 4888, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4880, + "id": 4889, "properties": { "facing": "east", "waterlogged": "false" @@ -4429,91 +4430,11 @@ ] }, "states": [ - { - "id": 10119, - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "true" - } - }, - { - "id": 10120, - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "false" - } - }, - { - "id": 10121, - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "true" - } - }, - { - "id": 10122, - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "false" - } - }, - { - "id": 10123, - "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "true" - } - }, - { - "id": 10124, - "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "false" - } - }, - { - "id": 10125, - "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "true" - } - }, - { - "id": 10126, - "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "false" - } - }, - { - "id": 10127, - "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "true" - } - }, - { - "id": 10128, - "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "false" - } - }, { "id": 10129, "properties": { "powered": "true", - "shape": "ascending_south", + "shape": "north_south", "waterlogged": "true" } }, @@ -4521,12 +4442,92 @@ "id": 10130, "properties": { "powered": "true", - "shape": "ascending_south", + "shape": "north_south", "waterlogged": "false" } }, { "id": 10131, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 10132, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 10133, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 10134, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 10135, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 10136, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 10137, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 10138, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 10139, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 10140, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 10141, "properties": { "powered": "false", "shape": "north_south", @@ -4535,7 +4536,7 @@ }, { "default": true, - "id": 10132, + "id": 10142, "properties": { "powered": "false", "shape": "north_south", @@ -4543,7 +4544,7 @@ } }, { - "id": 10133, + "id": 10143, "properties": { "powered": "false", "shape": "east_west", @@ -4551,7 +4552,7 @@ } }, { - "id": 10134, + "id": 10144, "properties": { "powered": "false", "shape": "east_west", @@ -4559,7 +4560,7 @@ } }, { - "id": 10135, + "id": 10145, "properties": { "powered": "false", "shape": "ascending_east", @@ -4567,7 +4568,7 @@ } }, { - "id": 10136, + "id": 10146, "properties": { "powered": "false", "shape": "ascending_east", @@ -4575,7 +4576,7 @@ } }, { - "id": 10137, + "id": 10147, "properties": { "powered": "false", "shape": "ascending_west", @@ -4583,7 +4584,7 @@ } }, { - "id": 10138, + "id": 10148, "properties": { "powered": "false", "shape": "ascending_west", @@ -4591,7 +4592,7 @@ } }, { - "id": 10139, + "id": 10149, "properties": { "powered": "false", "shape": "ascending_north", @@ -4599,7 +4600,7 @@ } }, { - "id": 10140, + "id": 10150, "properties": { "powered": "false", "shape": "ascending_north", @@ -4607,7 +4608,7 @@ } }, { - "id": 10141, + "id": 10151, "properties": { "powered": "false", "shape": "ascending_south", @@ -4615,7 +4616,7 @@ } }, { - "id": 10142, + "id": 10152, "properties": { "powered": "false", "shape": "ascending_south", @@ -4650,7 +4651,7 @@ "states": [ { "default": true, - "id": 2122 + "id": 2125 } ] }, @@ -4662,16 +4663,16 @@ "states": [ { "default": true, - "id": 22044 + "id": 22059 } ] }, "minecraft:amethyst_cluster": { "definition": { "type": "minecraft:amethyst_cluster", - "aabb_offset": 3.0, "height": 7.0, - "properties": {} + "properties": {}, + "width": 10.0 }, "properties": { "facing": [ @@ -4689,63 +4690,63 @@ }, "states": [ { - "id": 22046, + "id": 22061, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 22047, + "id": 22062, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 22048, + "id": 22063, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 22049, + "id": 22064, "properties": { "facing": "east", "waterlogged": "false" } }, { - "id": 22050, + "id": 22065, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 22051, + "id": 22066, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 22052, + "id": 22067, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 22053, + "id": 22068, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 22054, + "id": 22069, "properties": { "facing": "up", "waterlogged": "true" @@ -4753,21 +4754,21 @@ }, { "default": true, - "id": 22055, + "id": 22070, "properties": { "facing": "up", "waterlogged": "false" } }, { - "id": 22056, + "id": 22071, "properties": { "facing": "down", "waterlogged": "true" } }, { - "id": 22057, + "id": 22072, "properties": { "facing": "down", "waterlogged": "false" @@ -4783,7 +4784,7 @@ "states": [ { "default": true, - "id": 20461 + "id": 20476 } ] }, @@ -4817,21 +4818,21 @@ }, "states": [ { - "id": 15149, + "id": 15159, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 15150, + "id": 15160, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 15151, + "id": 15161, "properties": { "type": "bottom", "waterlogged": "true" @@ -4839,21 +4840,21 @@ }, { "default": true, - "id": 15152, + "id": 15162, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 15153, + "id": 15163, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 15154, + "id": 15164, "properties": { "type": "double", "waterlogged": "false" @@ -4893,98 +4894,98 @@ ] }, "states": [ - { - "id": 14775, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 14776, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14777, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14778, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14779, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14780, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14781, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14782, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14783, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14784, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 14785, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14786, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14787, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14788, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14789, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14790, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14791, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14792, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14793, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14794, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14795, "properties": { "facing": "north", "half": "bottom", @@ -4994,100 +4995,10 @@ }, { "default": true, - "id": 14786, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14787, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14788, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14789, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14790, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14791, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14792, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14793, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14794, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 14795, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 14796, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -5095,8 +5006,8 @@ { "id": 14797, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -5104,8 +5015,8 @@ { "id": 14798, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -5113,8 +5024,8 @@ { "id": 14799, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -5122,8 +5033,8 @@ { "id": 14800, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -5131,8 +5042,8 @@ { "id": 14801, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -5140,8 +5051,8 @@ { "id": 14802, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -5149,8 +5060,8 @@ { "id": 14803, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -5158,8 +5069,8 @@ { "id": 14804, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -5168,7 +5079,7 @@ "id": 14805, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -5177,7 +5088,7 @@ "id": 14806, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -5186,7 +5097,7 @@ "id": 14807, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -5195,7 +5106,7 @@ "id": 14808, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -5204,7 +5115,7 @@ "id": 14809, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -5213,7 +5124,7 @@ "id": 14810, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -5222,7 +5133,7 @@ "id": 14811, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -5231,7 +5142,7 @@ "id": 14812, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -5240,7 +5151,7 @@ "id": 14813, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -5249,7 +5160,7 @@ "id": 14814, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -5257,8 +5168,8 @@ { "id": 14815, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -5266,8 +5177,8 @@ { "id": 14816, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -5275,8 +5186,8 @@ { "id": 14817, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -5284,8 +5195,8 @@ { "id": 14818, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -5293,8 +5204,8 @@ { "id": 14819, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -5302,8 +5213,8 @@ { "id": 14820, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -5311,8 +5222,8 @@ { "id": 14821, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -5320,8 +5231,8 @@ { "id": 14822, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -5329,8 +5240,8 @@ { "id": 14823, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -5338,8 +5249,8 @@ { "id": 14824, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -5348,7 +5259,7 @@ "id": 14825, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -5357,7 +5268,7 @@ "id": 14826, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -5366,7 +5277,7 @@ "id": 14827, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -5375,7 +5286,7 @@ "id": 14828, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -5384,7 +5295,7 @@ "id": 14829, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -5393,7 +5304,7 @@ "id": 14830, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -5402,7 +5313,7 @@ "id": 14831, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -5411,7 +5322,7 @@ "id": 14832, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -5420,7 +5331,7 @@ "id": 14833, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -5429,7 +5340,7 @@ "id": 14834, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -5437,8 +5348,8 @@ { "id": 14835, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -5446,8 +5357,8 @@ { "id": 14836, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -5455,8 +5366,8 @@ { "id": 14837, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -5464,8 +5375,8 @@ { "id": 14838, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -5473,8 +5384,8 @@ { "id": 14839, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -5482,8 +5393,8 @@ { "id": 14840, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -5491,8 +5402,8 @@ { "id": 14841, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -5500,8 +5411,8 @@ { "id": 14842, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -5509,8 +5420,8 @@ { "id": 14843, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -5518,8 +5429,8 @@ { "id": 14844, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -5528,7 +5439,7 @@ "id": 14845, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -5537,7 +5448,7 @@ "id": 14846, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -5546,7 +5457,7 @@ "id": 14847, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -5555,7 +5466,7 @@ "id": 14848, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -5564,7 +5475,7 @@ "id": 14849, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -5573,7 +5484,7 @@ "id": 14850, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -5582,7 +5493,7 @@ "id": 14851, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -5591,7 +5502,7 @@ "id": 14852, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -5600,13 +5511,103 @@ "id": 14853, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 14854, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14855, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14856, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14857, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14858, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14859, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14860, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14861, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14862, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14863, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14864, "properties": { "facing": "east", "half": "bottom", @@ -5653,7 +5654,7 @@ }, "states": [ { - "id": 17765, + "id": 17775, "properties": { "east": "none", "north": "none", @@ -5664,7 +5665,7 @@ } }, { - "id": 17766, + "id": 17776, "properties": { "east": "none", "north": "none", @@ -5675,7 +5676,7 @@ } }, { - "id": 17767, + "id": 17777, "properties": { "east": "none", "north": "none", @@ -5687,124 +5688,14 @@ }, { "default": true, - "id": 17768, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17769, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17770, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17771, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17772, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17773, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17774, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17775, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17776, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17777, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { "id": 17778, "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -5812,10 +5703,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -5823,10 +5714,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -5834,10 +5725,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -5845,10 +5736,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -5856,10 +5747,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -5867,10 +5758,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -5878,10 +5769,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -5889,10 +5780,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -5901,9 +5792,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -5912,9 +5803,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -5922,10 +5813,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -5933,10 +5824,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -5944,10 +5835,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -5955,10 +5846,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -5966,10 +5857,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -5977,10 +5868,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -5988,10 +5879,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -5999,10 +5890,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -6010,10 +5901,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -6021,10 +5912,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -6033,9 +5924,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -6044,130 +5935,130 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 17801, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 17802, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 17803, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 17804, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17805, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 17806, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17807, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17808, - "properties": { - "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 17809, + "id": 17807, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 17810, + "id": 17808, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 17809, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17810, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 17811, "properties": { "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -6176,9 +6067,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -6186,10 +6077,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -6197,10 +6088,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -6208,10 +6099,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -6219,10 +6110,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -6230,10 +6121,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -6241,10 +6132,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -6252,10 +6143,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -6263,10 +6154,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -6274,10 +6165,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -6285,10 +6176,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -6297,9 +6188,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -6308,9 +6199,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -6318,10 +6209,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -6329,10 +6220,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -6340,10 +6231,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -6351,10 +6242,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -6362,10 +6253,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -6373,10 +6264,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -6384,10 +6275,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -6395,10 +6286,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -6406,10 +6297,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -6417,10 +6308,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -6429,9 +6320,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -6440,130 +6331,130 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 17837, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 17838, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 17839, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 17840, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17841, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 17842, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17843, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17844, - "properties": { - "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 17845, + "id": 17843, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 17846, + "id": 17844, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 17845, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17846, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 17847, "properties": { "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -6572,9 +6463,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -6582,10 +6473,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -6593,10 +6484,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -6604,10 +6495,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -6615,10 +6506,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -6626,10 +6517,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -6637,10 +6528,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -6648,10 +6539,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -6659,10 +6550,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -6670,10 +6561,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -6681,10 +6572,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -6693,9 +6584,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -6704,9 +6595,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -6714,10 +6605,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -6725,10 +6616,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -6736,10 +6627,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -6747,10 +6638,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -6758,10 +6649,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -6769,10 +6660,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -6780,10 +6671,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -6791,10 +6682,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -6802,10 +6693,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -6813,14 +6704,124 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17871, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17872, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17873, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17874, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17875, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17876, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17877, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17878, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17879, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17880, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17881, "properties": { "east": "none", "north": "tall", @@ -6831,7 +6832,7 @@ } }, { - "id": 17872, + "id": 17882, "properties": { "east": "none", "north": "tall", @@ -6841,125 +6842,15 @@ "west": "tall" } }, - { - "id": 17873, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17874, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17875, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17876, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17877, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17878, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17879, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17880, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17881, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17882, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 17883, "properties": { "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -6968,9 +6859,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -6978,10 +6869,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -6989,10 +6880,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -7000,10 +6891,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -7011,10 +6902,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -7022,10 +6913,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -7033,10 +6924,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -7044,10 +6935,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -7055,10 +6946,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -7066,10 +6957,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -7077,10 +6968,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -7089,9 +6980,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -7100,9 +6991,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -7110,10 +7001,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -7121,10 +7012,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -7132,10 +7023,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -7143,10 +7034,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -7154,10 +7045,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -7165,10 +7056,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -7176,10 +7067,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -7187,10 +7078,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -7198,10 +7089,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -7209,10 +7100,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -7221,9 +7112,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -7232,130 +7123,130 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 17909, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 17910, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 17911, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 17912, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17913, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 17914, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17915, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17916, - "properties": { - "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 17917, + "id": 17915, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 17918, + "id": 17916, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 17917, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17918, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 17919, "properties": { "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -7364,9 +7255,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -7374,10 +7265,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -7385,10 +7276,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -7396,10 +7287,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -7407,10 +7298,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -7418,10 +7309,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -7429,10 +7320,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -7440,10 +7331,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -7451,10 +7342,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -7462,10 +7353,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -7473,10 +7364,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -7485,9 +7376,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -7496,9 +7387,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -7506,10 +7397,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -7517,10 +7408,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -7528,10 +7419,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -7539,10 +7430,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -7550,10 +7441,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -7561,10 +7452,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -7572,10 +7463,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -7583,10 +7474,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -7594,10 +7485,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -7605,10 +7496,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -7617,9 +7508,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -7628,130 +7519,130 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 17945, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 17946, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 17947, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 17948, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17949, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 17950, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17951, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17952, - "properties": { - "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 17953, + "id": 17951, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 17954, + "id": 17952, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 17953, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17954, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 17955, "properties": { "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -7760,9 +7651,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -7770,10 +7661,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -7781,10 +7672,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -7792,10 +7683,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -7803,10 +7694,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -7814,10 +7705,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -7825,10 +7716,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -7836,10 +7727,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -7847,10 +7738,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -7858,10 +7749,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -7869,10 +7760,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -7881,9 +7772,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -7892,9 +7783,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -7902,10 +7793,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -7913,10 +7804,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -7924,10 +7815,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -7935,10 +7826,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -7946,10 +7837,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -7957,10 +7848,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -7968,10 +7859,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -7979,10 +7870,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -7990,10 +7881,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -8001,14 +7892,124 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17979, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17980, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17981, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17982, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17983, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17984, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17985, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17986, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17987, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17988, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17989, "properties": { "east": "low", "north": "tall", @@ -8019,7 +8020,7 @@ } }, { - "id": 17980, + "id": 17990, "properties": { "east": "low", "north": "tall", @@ -8029,125 +8030,15 @@ "west": "tall" } }, - { - "id": 17981, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17982, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17983, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17984, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17985, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17986, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17987, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17988, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17989, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17990, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 17991, "properties": { "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -8156,9 +8047,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -8166,10 +8057,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -8177,10 +8068,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -8188,10 +8079,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -8199,10 +8090,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -8210,10 +8101,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -8221,10 +8112,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -8232,10 +8123,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -8243,10 +8134,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -8254,10 +8145,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -8265,10 +8156,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -8277,9 +8168,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -8288,9 +8179,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -8298,10 +8189,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -8309,10 +8200,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -8320,10 +8211,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -8331,10 +8222,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -8342,10 +8233,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -8353,10 +8244,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -8364,10 +8255,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -8375,10 +8266,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -8386,10 +8277,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -8397,14 +8288,124 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18015, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18016, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18017, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18018, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18019, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18020, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18021, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18022, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18023, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18024, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18025, "properties": { "east": "tall", "north": "none", @@ -8415,7 +8416,7 @@ } }, { - "id": 18016, + "id": 18026, "properties": { "east": "tall", "north": "none", @@ -8425,125 +8426,15 @@ "west": "tall" } }, - { - "id": 18017, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18018, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18019, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18020, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18021, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18022, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18023, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18024, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18025, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18026, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 18027, "properties": { "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -8552,9 +8443,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -8562,10 +8453,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -8573,10 +8464,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -8584,10 +8475,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -8595,10 +8486,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -8606,10 +8497,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -8617,10 +8508,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -8628,10 +8519,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -8639,10 +8530,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -8650,10 +8541,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -8661,10 +8552,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -8673,9 +8564,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -8684,9 +8575,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -8694,10 +8585,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -8705,10 +8596,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -8716,10 +8607,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -8727,10 +8618,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -8738,10 +8629,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -8749,10 +8640,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -8760,10 +8651,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -8771,10 +8662,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -8782,10 +8673,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -8793,14 +8684,124 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18051, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18052, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18053, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18054, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18055, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18056, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18057, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18058, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18059, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18060, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18061, "properties": { "east": "tall", "north": "low", @@ -8811,7 +8812,7 @@ } }, { - "id": 18052, + "id": 18062, "properties": { "east": "tall", "north": "low", @@ -8821,125 +8822,15 @@ "west": "tall" } }, - { - "id": 18053, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18054, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18055, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18056, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18057, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18058, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18059, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18060, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18061, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18062, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 18063, "properties": { "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -8948,9 +8839,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -8958,10 +8849,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -8969,10 +8860,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -8980,10 +8871,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -8991,10 +8882,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -9002,10 +8893,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -9013,10 +8904,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -9024,10 +8915,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -9035,10 +8926,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -9046,10 +8937,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -9057,14 +8948,124 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18075, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18076, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18077, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18078, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18079, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18080, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18081, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18082, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18083, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18084, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18085, "properties": { "east": "tall", "north": "tall", @@ -9075,7 +9076,7 @@ } }, { - "id": 18076, + "id": 18086, "properties": { "east": "tall", "north": "tall", @@ -9085,118 +9086,118 @@ "west": "tall" } }, - { - "id": 18077, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18078, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18079, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18080, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18081, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18082, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18083, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18084, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18085, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18086, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 18087, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18088, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18089, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18090, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18091, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18092, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18093, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18094, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18095, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18096, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18097, "properties": { "east": "tall", "north": "tall", @@ -9207,7 +9208,7 @@ } }, { - "id": 18088, + "id": 18098, "properties": { "east": "tall", "north": "tall", @@ -9235,25 +9236,25 @@ "states": [ { "default": true, - "id": 9906, + "id": 9916, "properties": { "facing": "north" } }, { - "id": 9907, + "id": 9917, "properties": { "facing": "south" } }, { - "id": 9908, + "id": 9918, "properties": { "facing": "west" } }, { - "id": 9909, + "id": 9919, "properties": { "facing": "east" } @@ -9279,25 +9280,25 @@ "states": [ { "default": true, - "id": 7050, + "id": 7060, "properties": { "facing": "north" } }, { - "id": 7051, + "id": 7061, "properties": { "facing": "south" } }, { - "id": 7052, + "id": 7062, "properties": { "facing": "west" } }, { - "id": 7053, + "id": 7063, "properties": { "facing": "east" } @@ -9323,25 +9324,25 @@ "states": [ { "default": true, - "id": 7046, + "id": 7056, "properties": { "facing": "north" } }, { - "id": 7047, + "id": 7057, "properties": { "facing": "south" } }, { - "id": 7048, + "id": 7058, "properties": { "facing": "west" } }, { - "id": 7049, + "id": 7059, "properties": { "facing": "east" } @@ -9356,13 +9357,18 @@ "states": [ { "default": true, - "id": 25837 + "id": 25852 } ] }, "minecraft:azalea_leaves": { "definition": { - "type": "minecraft:leaves", + "type": "minecraft:untinted_particle_leaves", + "leaf_particle": { + "type": "minecraft:tinted_leaves", + "color": -9399763 + }, + "leaf_particle_chance": 0.01, "properties": {} }, "properties": { @@ -9626,7 +9632,7 @@ "states": [ { "default": true, - "id": 2123 + "id": 2126 } ] }, @@ -9653,95 +9659,95 @@ "states": [ { "default": true, - "id": 13958, - "properties": { - "age": "0", - "leaves": "none", - "stage": "0" - } - }, - { - "id": 13959, - "properties": { - "age": "0", - "leaves": "none", - "stage": "1" - } - }, - { - "id": 13960, - "properties": { - "age": "0", - "leaves": "small", - "stage": "0" - } - }, - { - "id": 13961, - "properties": { - "age": "0", - "leaves": "small", - "stage": "1" - } - }, - { - "id": 13962, - "properties": { - "age": "0", - "leaves": "large", - "stage": "0" - } - }, - { - "id": 13963, - "properties": { - "age": "0", - "leaves": "large", - "stage": "1" - } - }, - { - "id": 13964, - "properties": { - "age": "1", - "leaves": "none", - "stage": "0" - } - }, - { - "id": 13965, - "properties": { - "age": "1", - "leaves": "none", - "stage": "1" - } - }, - { - "id": 13966, - "properties": { - "age": "1", - "leaves": "small", - "stage": "0" - } - }, - { - "id": 13967, - "properties": { - "age": "1", - "leaves": "small", - "stage": "1" - } - }, - { "id": 13968, "properties": { - "age": "1", - "leaves": "large", + "age": "0", + "leaves": "none", "stage": "0" } }, { "id": 13969, + "properties": { + "age": "0", + "leaves": "none", + "stage": "1" + } + }, + { + "id": 13970, + "properties": { + "age": "0", + "leaves": "small", + "stage": "0" + } + }, + { + "id": 13971, + "properties": { + "age": "0", + "leaves": "small", + "stage": "1" + } + }, + { + "id": 13972, + "properties": { + "age": "0", + "leaves": "large", + "stage": "0" + } + }, + { + "id": 13973, + "properties": { + "age": "0", + "leaves": "large", + "stage": "1" + } + }, + { + "id": 13974, + "properties": { + "age": "1", + "leaves": "none", + "stage": "0" + } + }, + { + "id": 13975, + "properties": { + "age": "1", + "leaves": "none", + "stage": "1" + } + }, + { + "id": 13976, + "properties": { + "age": "1", + "leaves": "small", + "stage": "0" + } + }, + { + "id": 13977, + "properties": { + "age": "1", + "leaves": "small", + "stage": "1" + } + }, + { + "id": 13978, + "properties": { + "age": "1", + "leaves": "large", + "stage": "0" + } + }, + { + "id": 13979, "properties": { "age": "1", "leaves": "large", @@ -9810,7 +9816,7 @@ }, "states": [ { - "id": 9602, + "id": 9612, "properties": { "face": "floor", "facing": "north", @@ -9818,7 +9824,7 @@ } }, { - "id": 9603, + "id": 9613, "properties": { "face": "floor", "facing": "north", @@ -9826,7 +9832,7 @@ } }, { - "id": 9604, + "id": 9614, "properties": { "face": "floor", "facing": "south", @@ -9834,7 +9840,7 @@ } }, { - "id": 9605, + "id": 9615, "properties": { "face": "floor", "facing": "south", @@ -9842,7 +9848,7 @@ } }, { - "id": 9606, + "id": 9616, "properties": { "face": "floor", "facing": "west", @@ -9850,7 +9856,7 @@ } }, { - "id": 9607, + "id": 9617, "properties": { "face": "floor", "facing": "west", @@ -9858,7 +9864,7 @@ } }, { - "id": 9608, + "id": 9618, "properties": { "face": "floor", "facing": "east", @@ -9866,7 +9872,7 @@ } }, { - "id": 9609, + "id": 9619, "properties": { "face": "floor", "facing": "east", @@ -9874,7 +9880,7 @@ } }, { - "id": 9610, + "id": 9620, "properties": { "face": "wall", "facing": "north", @@ -9883,95 +9889,95 @@ }, { "default": true, - "id": 9611, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9612, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 9613, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 9614, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 9615, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 9616, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 9617, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 9618, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 9619, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9620, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { "id": 9621, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "north", "powered": "false" } }, { "id": 9622, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9623, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9624, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 9625, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 9626, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 9627, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 9628, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 9629, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 9630, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9631, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9632, "properties": { "face": "ceiling", "facing": "west", @@ -9979,7 +9985,7 @@ } }, { - "id": 9623, + "id": 9633, "properties": { "face": "ceiling", "facing": "west", @@ -9987,7 +9993,7 @@ } }, { - "id": 9624, + "id": 9634, "properties": { "face": "ceiling", "facing": "east", @@ -9995,7 +10001,7 @@ } }, { - "id": 9625, + "id": 9635, "properties": { "face": "ceiling", "facing": "east", @@ -10035,108 +10041,108 @@ ] }, "states": [ - { - "id": 13283, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13284, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13285, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13286, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13287, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13288, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13289, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13290, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13291, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13292, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 13293, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13294, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13295, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13296, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13297, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13298, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13299, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13300, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13301, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13302, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13303, "properties": { "facing": "north", "half": "lower", @@ -10147,152 +10153,52 @@ }, { "default": true, - "id": 13294, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13295, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13296, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13297, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13298, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13299, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13300, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13301, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13302, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13303, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { "id": 13304, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 13305, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 13306, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 13307, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "true" } }, { "id": 13308, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "false" } }, @@ -10300,9 +10206,9 @@ "id": 13309, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -10310,9 +10216,9 @@ "id": 13310, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -10320,9 +10226,9 @@ "id": 13311, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -10330,14 +10236,114 @@ "id": 13312, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 13313, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13314, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13315, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13316, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13317, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13318, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13319, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13320, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13321, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13322, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13323, "properties": { "facing": "south", "half": "lower", @@ -10347,7 +10353,7 @@ } }, { - "id": 13314, + "id": 13324, "properties": { "facing": "south", "half": "lower", @@ -10356,113 +10362,13 @@ "powered": "false" } }, - { - "id": 13315, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13316, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13317, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13318, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13319, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13320, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13321, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13322, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13323, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13324, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 13325, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -10470,9 +10376,9 @@ "id": 13326, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -10480,9 +10386,9 @@ "id": 13327, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -10490,14 +10396,114 @@ "id": 13328, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 13329, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13330, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13331, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13332, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13333, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13334, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13335, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13336, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13337, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13338, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13339, "properties": { "facing": "west", "half": "lower", @@ -10507,7 +10513,7 @@ } }, { - "id": 13330, + "id": 13340, "properties": { "facing": "west", "half": "lower", @@ -10516,113 +10522,13 @@ "powered": "false" } }, - { - "id": 13331, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13332, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13333, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13334, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13335, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13336, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13337, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13338, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13339, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13340, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 13341, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -10630,14 +10536,114 @@ "id": 13342, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 13343, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13344, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13345, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13346, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13347, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13348, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13349, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13350, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13351, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13352, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13353, "properties": { "facing": "east", "half": "lower", @@ -10647,7 +10653,7 @@ } }, { - "id": 13344, + "id": 13354, "properties": { "facing": "east", "half": "lower", @@ -10657,7 +10663,7 @@ } }, { - "id": 13345, + "id": 13355, "properties": { "facing": "east", "half": "lower", @@ -10667,7 +10673,7 @@ } }, { - "id": 13346, + "id": 13356, "properties": { "facing": "east", "half": "lower", @@ -10706,113 +10712,13 @@ ] }, "states": [ - { - "id": 12739, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12740, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12741, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12742, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12743, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12744, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12745, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12746, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12747, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12748, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 12749, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -10820,9 +10726,9 @@ "id": 12750, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -10830,9 +10736,9 @@ "id": 12751, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -10840,14 +10746,114 @@ "id": 12752, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 12753, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12754, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12755, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12756, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12757, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12758, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12759, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12760, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12761, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12762, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12763, "properties": { "east": "true", "north": "false", @@ -10857,7 +10863,7 @@ } }, { - "id": 12754, + "id": 12764, "properties": { "east": "true", "north": "false", @@ -10866,118 +10872,118 @@ "west": "false" } }, - { - "id": 12755, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12756, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12757, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12758, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12759, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12760, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12761, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12762, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12763, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12764, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 12765, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 12766, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12767, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12768, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12769, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12770, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12771, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12772, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12773, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12774, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12775, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12776, "properties": { "east": "false", "north": "false", @@ -10987,7 +10993,7 @@ } }, { - "id": 12767, + "id": 12777, "properties": { "east": "false", "north": "false", @@ -10997,7 +11003,7 @@ } }, { - "id": 12768, + "id": 12778, "properties": { "east": "false", "north": "false", @@ -11007,7 +11013,7 @@ } }, { - "id": 12769, + "id": 12779, "properties": { "east": "false", "north": "false", @@ -11018,7 +11024,7 @@ }, { "default": true, - "id": 12770, + "id": 12780, "properties": { "east": "false", "north": "false", @@ -11057,7 +11063,7 @@ }, "states": [ { - "id": 12451, + "id": 12461, "properties": { "facing": "north", "in_wall": "true", @@ -11066,7 +11072,7 @@ } }, { - "id": 12452, + "id": 12462, "properties": { "facing": "north", "in_wall": "true", @@ -11075,7 +11081,7 @@ } }, { - "id": 12453, + "id": 12463, "properties": { "facing": "north", "in_wall": "true", @@ -11084,7 +11090,7 @@ } }, { - "id": 12454, + "id": 12464, "properties": { "facing": "north", "in_wall": "true", @@ -11093,7 +11099,7 @@ } }, { - "id": 12455, + "id": 12465, "properties": { "facing": "north", "in_wall": "false", @@ -11102,7 +11108,7 @@ } }, { - "id": 12456, + "id": 12466, "properties": { "facing": "north", "in_wall": "false", @@ -11111,7 +11117,7 @@ } }, { - "id": 12457, + "id": 12467, "properties": { "facing": "north", "in_wall": "false", @@ -11121,7 +11127,7 @@ }, { "default": true, - "id": 12458, + "id": 12468, "properties": { "facing": "north", "in_wall": "false", @@ -11129,143 +11135,143 @@ "powered": "false" } }, - { - "id": 12459, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 12460, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 12461, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 12462, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 12463, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 12464, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 12465, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 12466, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 12467, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 12468, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, { "id": 12469, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12470, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 12471, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "true" } }, { "id": 12472, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "false" } }, { "id": 12473, "properties": { - "facing": "west", + "facing": "south", "in_wall": "false", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12474, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 12475, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 12476, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 12477, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 12478, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 12479, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 12480, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 12481, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 12482, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 12483, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 12484, "properties": { "facing": "west", "in_wall": "false", @@ -11274,7 +11280,7 @@ } }, { - "id": 12475, + "id": 12485, "properties": { "facing": "east", "in_wall": "true", @@ -11283,7 +11289,7 @@ } }, { - "id": 12476, + "id": 12486, "properties": { "facing": "east", "in_wall": "true", @@ -11292,7 +11298,7 @@ } }, { - "id": 12477, + "id": 12487, "properties": { "facing": "east", "in_wall": "true", @@ -11301,7 +11307,7 @@ } }, { - "id": 12478, + "id": 12488, "properties": { "facing": "east", "in_wall": "true", @@ -11310,7 +11316,7 @@ } }, { - "id": 12479, + "id": 12489, "properties": { "facing": "east", "in_wall": "false", @@ -11319,7 +11325,7 @@ } }, { - "id": 12480, + "id": 12490, "properties": { "facing": "east", "in_wall": "false", @@ -11328,7 +11334,7 @@ } }, { - "id": 12481, + "id": 12491, "properties": { "facing": "east", "in_wall": "false", @@ -11337,7 +11343,7 @@ } }, { - "id": 12482, + "id": 12492, "properties": { "facing": "east", "in_wall": "false", @@ -11382,240 +11388,240 @@ ] }, "states": [ - { - "id": 5633, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5634, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5635, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5636, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5637, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5638, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5639, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5640, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5641, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, { "id": 5642, "properties": { "attached": "true", - "rotation": "4", - "waterlogged": "false" + "rotation": "0", + "waterlogged": "true" } }, { "id": 5643, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "true" + "rotation": "0", + "waterlogged": "false" } }, { "id": 5644, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5645, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5646, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5647, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5648, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5649, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5650, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5651, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5652, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5653, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5654, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5655, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5656, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5657, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5658, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5659, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5660, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "false" + "rotation": "9", + "waterlogged": "true" } }, { "id": 5661, "properties": { "attached": "true", - "rotation": "14", - "waterlogged": "true" + "rotation": "9", + "waterlogged": "false" } }, { "id": 5662, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5663, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5664, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5665, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5666, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5667, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5668, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5669, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5670, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5671, "properties": { "attached": "true", "rotation": "14", @@ -11623,7 +11629,7 @@ } }, { - "id": 5663, + "id": 5672, "properties": { "attached": "true", "rotation": "15", @@ -11631,7 +11637,7 @@ } }, { - "id": 5664, + "id": 5673, "properties": { "attached": "true", "rotation": "15", @@ -11639,7 +11645,7 @@ } }, { - "id": 5665, + "id": 5674, "properties": { "attached": "false", "rotation": "0", @@ -11648,215 +11654,215 @@ }, { "default": true, - "id": 5666, + "id": 5675, "properties": { "attached": "false", "rotation": "0", "waterlogged": "false" } }, - { - "id": 5667, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5668, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5669, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5670, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5671, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5672, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5673, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5674, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5675, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 5676, "properties": { "attached": "false", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5677, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5678, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5679, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5680, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5681, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5682, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5683, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5684, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5685, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5686, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5687, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5688, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5689, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5690, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5691, "properties": { "attached": "false", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5692, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5693, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5694, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5695, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5696, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5697, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5698, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5699, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5700, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5701, "properties": { "attached": "false", "rotation": "13", @@ -11864,7 +11870,7 @@ } }, { - "id": 5693, + "id": 5702, "properties": { "attached": "false", "rotation": "14", @@ -11872,7 +11878,7 @@ } }, { - "id": 5694, + "id": 5703, "properties": { "attached": "false", "rotation": "14", @@ -11880,7 +11886,7 @@ } }, { - "id": 5695, + "id": 5704, "properties": { "attached": "false", "rotation": "15", @@ -11888,7 +11894,7 @@ } }, { - "id": 5696, + "id": 5705, "properties": { "attached": "false", "rotation": "15", @@ -11927,21 +11933,21 @@ }, "states": [ { - "id": 12101, + "id": 12111, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12102, + "id": 12112, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12103, + "id": 12113, "properties": { "type": "bottom", "waterlogged": "true" @@ -11949,21 +11955,21 @@ }, { "default": true, - "id": 12104, + "id": 12114, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12105, + "id": 12115, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12106, + "id": 12116, "properties": { "type": "double", "waterlogged": "false" @@ -12003,98 +12009,98 @@ ] }, "states": [ - { - "id": 11163, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 11164, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 11165, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 11166, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 11167, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 11168, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 11169, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 11170, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 11171, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11172, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 11173, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11174, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11175, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11176, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11177, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11178, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11179, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11180, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11181, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11182, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11183, "properties": { "facing": "north", "half": "bottom", @@ -12104,100 +12110,10 @@ }, { "default": true, - "id": 11174, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 11175, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 11176, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 11177, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 11178, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 11179, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 11180, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 11181, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11182, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 11183, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 11184, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -12205,8 +12121,8 @@ { "id": 11185, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -12214,8 +12130,8 @@ { "id": 11186, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -12223,8 +12139,8 @@ { "id": 11187, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -12232,8 +12148,8 @@ { "id": 11188, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -12241,8 +12157,8 @@ { "id": 11189, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -12250,8 +12166,8 @@ { "id": 11190, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -12259,8 +12175,8 @@ { "id": 11191, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -12268,8 +12184,8 @@ { "id": 11192, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -12278,7 +12194,7 @@ "id": 11193, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -12287,7 +12203,7 @@ "id": 11194, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -12296,7 +12212,7 @@ "id": 11195, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -12305,7 +12221,7 @@ "id": 11196, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -12314,7 +12230,7 @@ "id": 11197, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -12323,7 +12239,7 @@ "id": 11198, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -12332,7 +12248,7 @@ "id": 11199, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -12341,7 +12257,7 @@ "id": 11200, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -12350,7 +12266,7 @@ "id": 11201, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -12359,7 +12275,7 @@ "id": 11202, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -12367,8 +12283,8 @@ { "id": 11203, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -12376,8 +12292,8 @@ { "id": 11204, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -12385,8 +12301,8 @@ { "id": 11205, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -12394,8 +12310,8 @@ { "id": 11206, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -12403,8 +12319,8 @@ { "id": 11207, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -12412,8 +12328,8 @@ { "id": 11208, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -12421,8 +12337,8 @@ { "id": 11209, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -12430,8 +12346,8 @@ { "id": 11210, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -12439,8 +12355,8 @@ { "id": 11211, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -12448,8 +12364,8 @@ { "id": 11212, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -12458,7 +12374,7 @@ "id": 11213, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -12467,7 +12383,7 @@ "id": 11214, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -12476,7 +12392,7 @@ "id": 11215, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -12485,7 +12401,7 @@ "id": 11216, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -12494,7 +12410,7 @@ "id": 11217, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -12503,7 +12419,7 @@ "id": 11218, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -12512,7 +12428,7 @@ "id": 11219, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -12521,7 +12437,7 @@ "id": 11220, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -12530,7 +12446,7 @@ "id": 11221, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -12539,7 +12455,7 @@ "id": 11222, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -12547,8 +12463,8 @@ { "id": 11223, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -12556,8 +12472,8 @@ { "id": 11224, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -12565,8 +12481,8 @@ { "id": 11225, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -12574,8 +12490,8 @@ { "id": 11226, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -12583,8 +12499,8 @@ { "id": 11227, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -12592,8 +12508,8 @@ { "id": 11228, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -12601,8 +12517,8 @@ { "id": 11229, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -12610,8 +12526,8 @@ { "id": 11230, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -12619,8 +12535,8 @@ { "id": 11231, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -12628,8 +12544,8 @@ { "id": 11232, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -12638,7 +12554,7 @@ "id": 11233, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -12647,7 +12563,7 @@ "id": 11234, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -12656,7 +12572,7 @@ "id": 11235, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -12665,7 +12581,7 @@ "id": 11236, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -12674,7 +12590,7 @@ "id": 11237, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -12683,7 +12599,7 @@ "id": 11238, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -12692,7 +12608,7 @@ "id": 11239, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -12701,7 +12617,7 @@ "id": 11240, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -12710,13 +12626,103 @@ "id": 11241, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 11242, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11243, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11244, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11245, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11246, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11247, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11248, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11249, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11250, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11251, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11252, "properties": { "facing": "east", "half": "bottom", @@ -12752,14 +12758,14 @@ }, "states": [ { - "id": 5901, + "id": 5910, "properties": { "powered": "true" } }, { "default": true, - "id": 5902, + "id": 5911, "properties": { "powered": "false" } @@ -12774,7 +12780,7 @@ "states": [ { "default": true, - "id": 13957 + "id": 13967 } ] }, @@ -12810,7 +12816,7 @@ }, "states": [ { - "id": 4645, + "id": 4654, "properties": { "rotation": "0", "waterlogged": "true" @@ -12818,217 +12824,217 @@ }, { "default": true, - "id": 4646, + "id": 4655, "properties": { "rotation": "0", "waterlogged": "false" } }, - { - "id": 4647, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4648, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4649, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4650, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4651, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4652, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4653, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4654, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4655, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 4656, "properties": { - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 4657, "properties": { - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 4658, "properties": { - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 4659, "properties": { - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 4660, "properties": { - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 4661, "properties": { - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 4662, "properties": { - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 4663, "properties": { - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 4664, "properties": { - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 4665, "properties": { - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 4666, "properties": { - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 4667, "properties": { - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 4668, "properties": { - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 4669, "properties": { - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 4670, "properties": { - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 4671, "properties": { - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 4672, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4673, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4674, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4675, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4676, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4677, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4678, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4679, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4680, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4681, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 4673, + "id": 4682, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 4674, + "id": 4683, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 4675, + "id": 4684, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 4676, + "id": 4685, "properties": { "rotation": "15", "waterlogged": "false" @@ -13054,21 +13060,21 @@ }, "states": [ { - "id": 12095, + "id": 12105, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12096, + "id": 12106, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12097, + "id": 12107, "properties": { "type": "bottom", "waterlogged": "true" @@ -13076,21 +13082,21 @@ }, { "default": true, - "id": 12098, + "id": 12108, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12099, + "id": 12109, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12100, + "id": 12110, "properties": { "type": "double", "waterlogged": "false" @@ -13130,98 +13136,98 @@ ] }, "states": [ - { - "id": 11083, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 11084, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 11085, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 11086, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 11087, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 11088, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 11089, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 11090, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 11091, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11092, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 11093, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11094, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11095, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11096, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11097, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11098, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11099, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11100, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11101, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11102, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11103, "properties": { "facing": "north", "half": "bottom", @@ -13231,100 +13237,10 @@ }, { "default": true, - "id": 11094, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 11095, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 11096, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 11097, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 11098, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 11099, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 11100, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 11101, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11102, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 11103, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 11104, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -13332,8 +13248,8 @@ { "id": 11105, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -13341,8 +13257,8 @@ { "id": 11106, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -13350,8 +13266,8 @@ { "id": 11107, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -13359,8 +13275,8 @@ { "id": 11108, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -13368,8 +13284,8 @@ { "id": 11109, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -13377,8 +13293,8 @@ { "id": 11110, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -13386,8 +13302,8 @@ { "id": 11111, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -13395,8 +13311,8 @@ { "id": 11112, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -13405,7 +13321,7 @@ "id": 11113, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -13414,7 +13330,7 @@ "id": 11114, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -13423,7 +13339,7 @@ "id": 11115, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -13432,7 +13348,7 @@ "id": 11116, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -13441,7 +13357,7 @@ "id": 11117, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -13450,7 +13366,7 @@ "id": 11118, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -13459,7 +13375,7 @@ "id": 11119, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -13468,7 +13384,7 @@ "id": 11120, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -13477,7 +13393,7 @@ "id": 11121, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -13486,7 +13402,7 @@ "id": 11122, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -13494,8 +13410,8 @@ { "id": 11123, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -13503,8 +13419,8 @@ { "id": 11124, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -13512,8 +13428,8 @@ { "id": 11125, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -13521,8 +13437,8 @@ { "id": 11126, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -13530,8 +13446,8 @@ { "id": 11127, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -13539,8 +13455,8 @@ { "id": 11128, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -13548,8 +13464,8 @@ { "id": 11129, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -13557,8 +13473,8 @@ { "id": 11130, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -13566,8 +13482,8 @@ { "id": 11131, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -13575,8 +13491,8 @@ { "id": 11132, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -13585,7 +13501,7 @@ "id": 11133, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -13594,7 +13510,7 @@ "id": 11134, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -13603,7 +13519,7 @@ "id": 11135, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -13612,7 +13528,7 @@ "id": 11136, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -13621,7 +13537,7 @@ "id": 11137, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -13630,7 +13546,7 @@ "id": 11138, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -13639,7 +13555,7 @@ "id": 11139, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -13648,7 +13564,7 @@ "id": 11140, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -13657,7 +13573,7 @@ "id": 11141, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -13666,7 +13582,7 @@ "id": 11142, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -13674,8 +13590,8 @@ { "id": 11143, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -13683,8 +13599,8 @@ { "id": 11144, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -13692,8 +13608,8 @@ { "id": 11145, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -13701,8 +13617,8 @@ { "id": 11146, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -13710,8 +13626,8 @@ { "id": 11147, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -13719,8 +13635,8 @@ { "id": 11148, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -13728,8 +13644,8 @@ { "id": 11149, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -13737,8 +13653,8 @@ { "id": 11150, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -13746,8 +13662,8 @@ { "id": 11151, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -13755,8 +13671,8 @@ { "id": 11152, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -13765,7 +13681,7 @@ "id": 11153, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -13774,7 +13690,7 @@ "id": 11154, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -13783,7 +13699,7 @@ "id": 11155, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -13792,7 +13708,7 @@ "id": 11156, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -13801,7 +13717,7 @@ "id": 11157, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -13810,7 +13726,7 @@ "id": 11158, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -13819,7 +13735,7 @@ "id": 11159, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -13828,7 +13744,7 @@ "id": 11160, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -13837,13 +13753,103 @@ "id": 11161, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 11162, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11163, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11164, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11165, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11166, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11167, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11168, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11169, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11170, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11171, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11172, "properties": { "facing": "east", "half": "bottom", @@ -13884,118 +13890,118 @@ ] }, "states": [ - { - "id": 6706, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6707, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6708, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6709, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6710, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6711, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6712, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6713, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6714, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6715, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6716, "properties": { "facing": "north", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, { "id": 6717, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6718, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6719, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6720, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6721, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6722, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6723, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6724, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6725, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6726, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6727, "properties": { "facing": "north", "half": "bottom", @@ -14005,7 +14011,7 @@ } }, { - "id": 6718, + "id": 6728, "properties": { "facing": "north", "half": "bottom", @@ -14015,7 +14021,7 @@ } }, { - "id": 6719, + "id": 6729, "properties": { "facing": "north", "half": "bottom", @@ -14025,7 +14031,7 @@ } }, { - "id": 6720, + "id": 6730, "properties": { "facing": "north", "half": "bottom", @@ -14036,7 +14042,7 @@ }, { "default": true, - "id": 6721, + "id": 6731, "properties": { "facing": "north", "half": "bottom", @@ -14045,113 +14051,13 @@ "waterlogged": "false" } }, - { - "id": 6722, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6723, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6724, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6725, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6726, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6727, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6728, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6729, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6730, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6731, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6732, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -14159,9 +14065,9 @@ "id": 6733, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -14169,9 +14075,9 @@ "id": 6734, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -14179,14 +14085,114 @@ "id": 6735, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6736, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6737, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6738, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6739, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6740, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6741, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6742, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6743, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6744, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6745, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6746, "properties": { "facing": "south", "half": "bottom", @@ -14196,7 +14202,7 @@ } }, { - "id": 6737, + "id": 6747, "properties": { "facing": "south", "half": "bottom", @@ -14205,113 +14211,13 @@ "waterlogged": "false" } }, - { - "id": 6738, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6739, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6740, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6741, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6742, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6743, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6744, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6745, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6746, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6747, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6748, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -14319,9 +14225,9 @@ "id": 6749, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -14329,9 +14235,9 @@ "id": 6750, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -14339,14 +14245,114 @@ "id": 6751, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6752, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6753, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6754, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6755, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6756, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6757, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6758, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6759, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6760, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6761, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6762, "properties": { "facing": "west", "half": "bottom", @@ -14356,7 +14362,7 @@ } }, { - "id": 6753, + "id": 6763, "properties": { "facing": "west", "half": "bottom", @@ -14365,113 +14371,13 @@ "waterlogged": "false" } }, - { - "id": 6754, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6755, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6756, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6757, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6758, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6759, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6760, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6761, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6762, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6763, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6764, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -14479,14 +14385,114 @@ "id": 6765, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, { "id": 6766, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6767, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6768, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6769, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6770, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6771, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6772, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6773, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6774, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6775, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6776, "properties": { "facing": "east", "half": "bottom", @@ -14496,7 +14502,7 @@ } }, { - "id": 6767, + "id": 6777, "properties": { "facing": "east", "half": "bottom", @@ -14506,7 +14512,7 @@ } }, { - "id": 6768, + "id": 6778, "properties": { "facing": "east", "half": "bottom", @@ -14516,7 +14522,7 @@ } }, { - "id": 6769, + "id": 6779, "properties": { "facing": "east", "half": "bottom", @@ -14547,7 +14553,7 @@ }, "states": [ { - "id": 5785, + "id": 5794, "properties": { "facing": "north", "waterlogged": "true" @@ -14555,49 +14561,49 @@ }, { "default": true, - "id": 5786, + "id": 5795, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5787, + "id": 5796, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5788, + "id": 5797, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5789, + "id": 5798, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5790, + "id": 5799, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5791, + "id": 5800, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5792, + "id": 5801, "properties": { "facing": "east", "waterlogged": "false" @@ -14625,7 +14631,7 @@ }, "states": [ { - "id": 4921, + "id": 4930, "properties": { "facing": "north", "waterlogged": "true" @@ -14633,49 +14639,49 @@ }, { "default": true, - "id": 4922, + "id": 4931, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 4923, + "id": 4932, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 4924, + "id": 4933, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 4925, + "id": 4934, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 4926, + "id": 4935, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 4927, + "id": 4936, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4928, + "id": 4937, "properties": { "facing": "east", "waterlogged": "false" @@ -14704,7 +14710,7 @@ }, "states": [ { - "id": 19421, + "id": 19431, "properties": { "facing": "north", "open": "true" @@ -14712,77 +14718,77 @@ }, { "default": true, - "id": 19422, + "id": 19432, "properties": { "facing": "north", "open": "false" } }, { - "id": 19423, + "id": 19433, "properties": { "facing": "east", "open": "true" } }, { - "id": 19424, + "id": 19434, "properties": { "facing": "east", "open": "false" } }, { - "id": 19425, + "id": 19435, "properties": { "facing": "south", "open": "true" } }, { - "id": 19426, + "id": 19436, "properties": { "facing": "south", "open": "false" } }, { - "id": 19427, + "id": 19437, "properties": { "facing": "west", "open": "true" } }, { - "id": 19428, + "id": 19438, "properties": { "facing": "west", "open": "false" } }, { - "id": 19429, + "id": 19439, "properties": { "facing": "up", "open": "true" } }, { - "id": 19430, + "id": 19440, "properties": { "facing": "up", "open": "false" } }, { - "id": 19431, + "id": 19441, "properties": { "facing": "down", "open": "true" } }, { - "id": 19432, + "id": 19442, "properties": { "facing": "down", "open": "false" @@ -14803,14 +14809,14 @@ }, "states": [ { - "id": 11244, + "id": 11254, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 11245, + "id": 11255, "properties": { "waterlogged": "false" } @@ -14831,20 +14837,20 @@ }, "states": [ { - "id": 6021, + "id": 6031, "properties": { "axis": "x" } }, { "default": true, - "id": 6022, + "id": 6032, "properties": { "axis": "y" } }, { - "id": 6023, + "id": 6033, "properties": { "axis": "z" } @@ -14859,7 +14865,7 @@ "states": [ { "default": true, - "id": 8692 + "id": 8702 } ] }, @@ -14899,168 +14905,168 @@ "states": [ { "default": true, - "id": 20410, - "properties": { - "facing": "north", - "honey_level": "0" - } - }, - { - "id": 20411, - "properties": { - "facing": "north", - "honey_level": "1" - } - }, - { - "id": 20412, - "properties": { - "facing": "north", - "honey_level": "2" - } - }, - { - "id": 20413, - "properties": { - "facing": "north", - "honey_level": "3" - } - }, - { - "id": 20414, - "properties": { - "facing": "north", - "honey_level": "4" - } - }, - { - "id": 20415, - "properties": { - "facing": "north", - "honey_level": "5" - } - }, - { - "id": 20416, - "properties": { - "facing": "south", - "honey_level": "0" - } - }, - { - "id": 20417, - "properties": { - "facing": "south", - "honey_level": "1" - } - }, - { - "id": 20418, - "properties": { - "facing": "south", - "honey_level": "2" - } - }, - { - "id": 20419, - "properties": { - "facing": "south", - "honey_level": "3" - } - }, - { - "id": 20420, - "properties": { - "facing": "south", - "honey_level": "4" - } - }, - { - "id": 20421, - "properties": { - "facing": "south", - "honey_level": "5" - } - }, - { - "id": 20422, - "properties": { - "facing": "west", - "honey_level": "0" - } - }, - { - "id": 20423, - "properties": { - "facing": "west", - "honey_level": "1" - } - }, - { - "id": 20424, - "properties": { - "facing": "west", - "honey_level": "2" - } - }, - { "id": 20425, "properties": { - "facing": "west", - "honey_level": "3" + "facing": "north", + "honey_level": "0" } }, { "id": 20426, + "properties": { + "facing": "north", + "honey_level": "1" + } + }, + { + "id": 20427, + "properties": { + "facing": "north", + "honey_level": "2" + } + }, + { + "id": 20428, + "properties": { + "facing": "north", + "honey_level": "3" + } + }, + { + "id": 20429, + "properties": { + "facing": "north", + "honey_level": "4" + } + }, + { + "id": 20430, + "properties": { + "facing": "north", + "honey_level": "5" + } + }, + { + "id": 20431, + "properties": { + "facing": "south", + "honey_level": "0" + } + }, + { + "id": 20432, + "properties": { + "facing": "south", + "honey_level": "1" + } + }, + { + "id": 20433, + "properties": { + "facing": "south", + "honey_level": "2" + } + }, + { + "id": 20434, + "properties": { + "facing": "south", + "honey_level": "3" + } + }, + { + "id": 20435, + "properties": { + "facing": "south", + "honey_level": "4" + } + }, + { + "id": 20436, + "properties": { + "facing": "south", + "honey_level": "5" + } + }, + { + "id": 20437, + "properties": { + "facing": "west", + "honey_level": "0" + } + }, + { + "id": 20438, + "properties": { + "facing": "west", + "honey_level": "1" + } + }, + { + "id": 20439, + "properties": { + "facing": "west", + "honey_level": "2" + } + }, + { + "id": 20440, + "properties": { + "facing": "west", + "honey_level": "3" + } + }, + { + "id": 20441, "properties": { "facing": "west", "honey_level": "4" } }, { - "id": 20427, + "id": 20442, "properties": { "facing": "west", "honey_level": "5" } }, { - "id": 20428, + "id": 20443, "properties": { "facing": "east", "honey_level": "0" } }, { - "id": 20429, + "id": 20444, "properties": { "facing": "east", "honey_level": "1" } }, { - "id": 20430, + "id": 20445, "properties": { "facing": "east", "honey_level": "2" } }, { - "id": 20431, + "id": 20446, "properties": { "facing": "east", "honey_level": "3" } }, { - "id": 20432, + "id": 20447, "properties": { "facing": "east", "honey_level": "4" } }, { - "id": 20433, + "id": 20448, "properties": { "facing": "east", "honey_level": "5" @@ -15092,168 +15098,168 @@ "states": [ { "default": true, - "id": 20434, - "properties": { - "facing": "north", - "honey_level": "0" - } - }, - { - "id": 20435, - "properties": { - "facing": "north", - "honey_level": "1" - } - }, - { - "id": 20436, - "properties": { - "facing": "north", - "honey_level": "2" - } - }, - { - "id": 20437, - "properties": { - "facing": "north", - "honey_level": "3" - } - }, - { - "id": 20438, - "properties": { - "facing": "north", - "honey_level": "4" - } - }, - { - "id": 20439, - "properties": { - "facing": "north", - "honey_level": "5" - } - }, - { - "id": 20440, - "properties": { - "facing": "south", - "honey_level": "0" - } - }, - { - "id": 20441, - "properties": { - "facing": "south", - "honey_level": "1" - } - }, - { - "id": 20442, - "properties": { - "facing": "south", - "honey_level": "2" - } - }, - { - "id": 20443, - "properties": { - "facing": "south", - "honey_level": "3" - } - }, - { - "id": 20444, - "properties": { - "facing": "south", - "honey_level": "4" - } - }, - { - "id": 20445, - "properties": { - "facing": "south", - "honey_level": "5" - } - }, - { - "id": 20446, - "properties": { - "facing": "west", - "honey_level": "0" - } - }, - { - "id": 20447, - "properties": { - "facing": "west", - "honey_level": "1" - } - }, - { - "id": 20448, - "properties": { - "facing": "west", - "honey_level": "2" - } - }, - { "id": 20449, "properties": { - "facing": "west", - "honey_level": "3" + "facing": "north", + "honey_level": "0" } }, { "id": 20450, + "properties": { + "facing": "north", + "honey_level": "1" + } + }, + { + "id": 20451, + "properties": { + "facing": "north", + "honey_level": "2" + } + }, + { + "id": 20452, + "properties": { + "facing": "north", + "honey_level": "3" + } + }, + { + "id": 20453, + "properties": { + "facing": "north", + "honey_level": "4" + } + }, + { + "id": 20454, + "properties": { + "facing": "north", + "honey_level": "5" + } + }, + { + "id": 20455, + "properties": { + "facing": "south", + "honey_level": "0" + } + }, + { + "id": 20456, + "properties": { + "facing": "south", + "honey_level": "1" + } + }, + { + "id": 20457, + "properties": { + "facing": "south", + "honey_level": "2" + } + }, + { + "id": 20458, + "properties": { + "facing": "south", + "honey_level": "3" + } + }, + { + "id": 20459, + "properties": { + "facing": "south", + "honey_level": "4" + } + }, + { + "id": 20460, + "properties": { + "facing": "south", + "honey_level": "5" + } + }, + { + "id": 20461, + "properties": { + "facing": "west", + "honey_level": "0" + } + }, + { + "id": 20462, + "properties": { + "facing": "west", + "honey_level": "1" + } + }, + { + "id": 20463, + "properties": { + "facing": "west", + "honey_level": "2" + } + }, + { + "id": 20464, + "properties": { + "facing": "west", + "honey_level": "3" + } + }, + { + "id": 20465, "properties": { "facing": "west", "honey_level": "4" } }, { - "id": 20451, + "id": 20466, "properties": { "facing": "west", "honey_level": "5" } }, { - "id": 20452, + "id": 20467, "properties": { "facing": "east", "honey_level": "0" } }, { - "id": 20453, + "id": 20468, "properties": { "facing": "east", "honey_level": "1" } }, { - "id": 20454, + "id": 20469, "properties": { "facing": "east", "honey_level": "2" } }, { - "id": 20455, + "id": 20470, "properties": { "facing": "east", "honey_level": "3" } }, { - "id": 20456, + "id": 20471, "properties": { "facing": "east", "honey_level": "4" } }, { - "id": 20457, + "id": 20472, "properties": { "facing": "east", "honey_level": "5" @@ -15277,25 +15283,25 @@ "states": [ { "default": true, - "id": 13522, + "id": 13532, "properties": { "age": "0" } }, { - "id": 13523, + "id": 13533, "properties": { "age": "1" } }, { - "id": 13524, + "id": 13534, "properties": { "age": "2" } }, { - "id": 13525, + "id": 13535, "properties": { "age": "3" } @@ -15327,7 +15333,7 @@ }, "states": [ { - "id": 19484, + "id": 19494, "properties": { "attachment": "floor", "facing": "north", @@ -15336,215 +15342,215 @@ }, { "default": true, - "id": 19485, - "properties": { - "attachment": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 19486, - "properties": { - "attachment": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 19487, - "properties": { - "attachment": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 19488, - "properties": { - "attachment": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 19489, - "properties": { - "attachment": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 19490, - "properties": { - "attachment": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 19491, - "properties": { - "attachment": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 19492, - "properties": { - "attachment": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 19493, - "properties": { - "attachment": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 19494, - "properties": { - "attachment": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { "id": 19495, "properties": { - "attachment": "ceiling", - "facing": "south", + "attachment": "floor", + "facing": "north", "powered": "false" } }, { "id": 19496, "properties": { - "attachment": "ceiling", - "facing": "west", + "attachment": "floor", + "facing": "south", "powered": "true" } }, { "id": 19497, "properties": { - "attachment": "ceiling", - "facing": "west", + "attachment": "floor", + "facing": "south", "powered": "false" } }, { "id": 19498, "properties": { - "attachment": "ceiling", - "facing": "east", + "attachment": "floor", + "facing": "west", "powered": "true" } }, { "id": 19499, "properties": { - "attachment": "ceiling", - "facing": "east", + "attachment": "floor", + "facing": "west", "powered": "false" } }, { "id": 19500, "properties": { - "attachment": "single_wall", - "facing": "north", + "attachment": "floor", + "facing": "east", "powered": "true" } }, { "id": 19501, "properties": { - "attachment": "single_wall", - "facing": "north", + "attachment": "floor", + "facing": "east", "powered": "false" } }, { "id": 19502, "properties": { - "attachment": "single_wall", - "facing": "south", + "attachment": "ceiling", + "facing": "north", "powered": "true" } }, { "id": 19503, "properties": { - "attachment": "single_wall", - "facing": "south", + "attachment": "ceiling", + "facing": "north", "powered": "false" } }, { "id": 19504, "properties": { - "attachment": "single_wall", - "facing": "west", + "attachment": "ceiling", + "facing": "south", "powered": "true" } }, { "id": 19505, "properties": { - "attachment": "single_wall", - "facing": "west", + "attachment": "ceiling", + "facing": "south", "powered": "false" } }, { "id": 19506, "properties": { - "attachment": "single_wall", - "facing": "east", + "attachment": "ceiling", + "facing": "west", "powered": "true" } }, { "id": 19507, "properties": { - "attachment": "single_wall", - "facing": "east", + "attachment": "ceiling", + "facing": "west", "powered": "false" } }, { "id": 19508, "properties": { - "attachment": "double_wall", - "facing": "north", + "attachment": "ceiling", + "facing": "east", "powered": "true" } }, { "id": 19509, "properties": { - "attachment": "double_wall", - "facing": "north", + "attachment": "ceiling", + "facing": "east", "powered": "false" } }, { "id": 19510, "properties": { - "attachment": "double_wall", - "facing": "south", + "attachment": "single_wall", + "facing": "north", "powered": "true" } }, { "id": 19511, + "properties": { + "attachment": "single_wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 19512, + "properties": { + "attachment": "single_wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 19513, + "properties": { + "attachment": "single_wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 19514, + "properties": { + "attachment": "single_wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 19515, + "properties": { + "attachment": "single_wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 19516, + "properties": { + "attachment": "single_wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 19517, + "properties": { + "attachment": "single_wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 19518, + "properties": { + "attachment": "double_wall", + "facing": "north", + "powered": "true" + } + }, + { + "id": 19519, + "properties": { + "attachment": "double_wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 19520, + "properties": { + "attachment": "double_wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 19521, "properties": { "attachment": "double_wall", "facing": "south", @@ -15552,7 +15558,7 @@ } }, { - "id": 19512, + "id": 19522, "properties": { "attachment": "double_wall", "facing": "west", @@ -15560,7 +15566,7 @@ } }, { - "id": 19513, + "id": 19523, "properties": { "attachment": "double_wall", "facing": "west", @@ -15568,7 +15574,7 @@ } }, { - "id": 19514, + "id": 19524, "properties": { "attachment": "double_wall", "facing": "east", @@ -15576,7 +15582,7 @@ } }, { - "id": 19515, + "id": 19525, "properties": { "attachment": "double_wall", "facing": "east", @@ -15610,7 +15616,7 @@ }, "states": [ { - "id": 25857, + "id": 25904, "properties": { "facing": "north", "tilt": "none", @@ -15619,7 +15625,7 @@ }, { "default": true, - "id": 25858, + "id": 25905, "properties": { "facing": "north", "tilt": "none", @@ -15627,7 +15633,7 @@ } }, { - "id": 25859, + "id": 25906, "properties": { "facing": "north", "tilt": "unstable", @@ -15635,7 +15641,7 @@ } }, { - "id": 25860, + "id": 25907, "properties": { "facing": "north", "tilt": "unstable", @@ -15643,7 +15649,7 @@ } }, { - "id": 25861, + "id": 25908, "properties": { "facing": "north", "tilt": "partial", @@ -15651,7 +15657,7 @@ } }, { - "id": 25862, + "id": 25909, "properties": { "facing": "north", "tilt": "partial", @@ -15659,7 +15665,7 @@ } }, { - "id": 25863, + "id": 25910, "properties": { "facing": "north", "tilt": "full", @@ -15667,7 +15673,7 @@ } }, { - "id": 25864, + "id": 25911, "properties": { "facing": "north", "tilt": "full", @@ -15675,7 +15681,7 @@ } }, { - "id": 25865, + "id": 25912, "properties": { "facing": "south", "tilt": "none", @@ -15683,7 +15689,7 @@ } }, { - "id": 25866, + "id": 25913, "properties": { "facing": "south", "tilt": "none", @@ -15691,7 +15697,7 @@ } }, { - "id": 25867, + "id": 25914, "properties": { "facing": "south", "tilt": "unstable", @@ -15699,7 +15705,7 @@ } }, { - "id": 25868, + "id": 25915, "properties": { "facing": "south", "tilt": "unstable", @@ -15707,7 +15713,7 @@ } }, { - "id": 25869, + "id": 25916, "properties": { "facing": "south", "tilt": "partial", @@ -15715,7 +15721,7 @@ } }, { - "id": 25870, + "id": 25917, "properties": { "facing": "south", "tilt": "partial", @@ -15723,7 +15729,7 @@ } }, { - "id": 25871, + "id": 25918, "properties": { "facing": "south", "tilt": "full", @@ -15731,7 +15737,7 @@ } }, { - "id": 25872, + "id": 25919, "properties": { "facing": "south", "tilt": "full", @@ -15739,7 +15745,7 @@ } }, { - "id": 25873, + "id": 25920, "properties": { "facing": "west", "tilt": "none", @@ -15747,7 +15753,7 @@ } }, { - "id": 25874, + "id": 25921, "properties": { "facing": "west", "tilt": "none", @@ -15755,7 +15761,7 @@ } }, { - "id": 25875, + "id": 25922, "properties": { "facing": "west", "tilt": "unstable", @@ -15763,7 +15769,7 @@ } }, { - "id": 25876, + "id": 25923, "properties": { "facing": "west", "tilt": "unstable", @@ -15771,7 +15777,7 @@ } }, { - "id": 25877, + "id": 25924, "properties": { "facing": "west", "tilt": "partial", @@ -15779,7 +15785,7 @@ } }, { - "id": 25878, + "id": 25925, "properties": { "facing": "west", "tilt": "partial", @@ -15787,7 +15793,7 @@ } }, { - "id": 25879, + "id": 25926, "properties": { "facing": "west", "tilt": "full", @@ -15795,7 +15801,7 @@ } }, { - "id": 25880, + "id": 25927, "properties": { "facing": "west", "tilt": "full", @@ -15803,7 +15809,7 @@ } }, { - "id": 25881, + "id": 25928, "properties": { "facing": "east", "tilt": "none", @@ -15811,7 +15817,7 @@ } }, { - "id": 25882, + "id": 25929, "properties": { "facing": "east", "tilt": "none", @@ -15819,7 +15825,7 @@ } }, { - "id": 25883, + "id": 25930, "properties": { "facing": "east", "tilt": "unstable", @@ -15827,7 +15833,7 @@ } }, { - "id": 25884, + "id": 25931, "properties": { "facing": "east", "tilt": "unstable", @@ -15835,7 +15841,7 @@ } }, { - "id": 25885, + "id": 25932, "properties": { "facing": "east", "tilt": "partial", @@ -15843,7 +15849,7 @@ } }, { - "id": 25886, + "id": 25933, "properties": { "facing": "east", "tilt": "partial", @@ -15851,7 +15857,7 @@ } }, { - "id": 25887, + "id": 25934, "properties": { "facing": "east", "tilt": "full", @@ -15859,7 +15865,7 @@ } }, { - "id": 25888, + "id": 25935, "properties": { "facing": "east", "tilt": "full", @@ -15887,7 +15893,7 @@ }, "states": [ { - "id": 25889, + "id": 25936, "properties": { "facing": "north", "waterlogged": "true" @@ -15895,49 +15901,49 @@ }, { "default": true, - "id": 25890, + "id": 25937, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 25891, + "id": 25938, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 25892, + "id": 25939, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 25893, + "id": 25940, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 25894, + "id": 25941, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 25895, + "id": 25942, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 25896, + "id": 25943, "properties": { "facing": "east", "waterlogged": "false" @@ -15971,7 +15977,7 @@ }, "states": [ { - "id": 9434, + "id": 9444, "properties": { "face": "floor", "facing": "north", @@ -15979,7 +15985,7 @@ } }, { - "id": 9435, + "id": 9445, "properties": { "face": "floor", "facing": "north", @@ -15987,7 +15993,7 @@ } }, { - "id": 9436, + "id": 9446, "properties": { "face": "floor", "facing": "south", @@ -15995,7 +16001,7 @@ } }, { - "id": 9437, + "id": 9447, "properties": { "face": "floor", "facing": "south", @@ -16003,7 +16009,7 @@ } }, { - "id": 9438, + "id": 9448, "properties": { "face": "floor", "facing": "west", @@ -16011,7 +16017,7 @@ } }, { - "id": 9439, + "id": 9449, "properties": { "face": "floor", "facing": "west", @@ -16019,7 +16025,7 @@ } }, { - "id": 9440, + "id": 9450, "properties": { "face": "floor", "facing": "east", @@ -16027,7 +16033,7 @@ } }, { - "id": 9441, + "id": 9451, "properties": { "face": "floor", "facing": "east", @@ -16035,7 +16041,7 @@ } }, { - "id": 9442, + "id": 9452, "properties": { "face": "wall", "facing": "north", @@ -16044,95 +16050,95 @@ }, { "default": true, - "id": 9443, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9444, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 9445, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 9446, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 9447, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 9448, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 9449, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 9450, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 9451, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9452, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { "id": 9453, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "north", "powered": "false" } }, { "id": 9454, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9455, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9456, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 9457, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 9458, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 9459, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 9460, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 9461, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 9462, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9463, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9464, "properties": { "face": "ceiling", "facing": "west", @@ -16140,7 +16146,7 @@ } }, { - "id": 9455, + "id": 9465, "properties": { "face": "ceiling", "facing": "west", @@ -16148,7 +16154,7 @@ } }, { - "id": 9456, + "id": 9466, "properties": { "face": "ceiling", "facing": "east", @@ -16156,7 +16162,7 @@ } }, { - "id": 9457, + "id": 9467, "properties": { "face": "ceiling", "facing": "east", @@ -16196,108 +16202,108 @@ ] }, "states": [ - { - "id": 12835, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12836, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12837, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12838, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12839, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12840, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12841, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12842, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12843, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12844, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 12845, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12846, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12847, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12848, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12849, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12850, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12851, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12852, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12853, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12854, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12855, "properties": { "facing": "north", "half": "lower", @@ -16308,152 +16314,52 @@ }, { "default": true, - "id": 12846, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12847, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12848, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12849, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12850, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12851, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12852, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12853, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12854, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12855, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { "id": 12856, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 12857, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12858, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 12859, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "true" } }, { "id": 12860, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "false" } }, @@ -16461,9 +16367,9 @@ "id": 12861, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -16471,9 +16377,9 @@ "id": 12862, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -16481,9 +16387,9 @@ "id": 12863, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -16491,14 +16397,114 @@ "id": 12864, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 12865, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12866, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12867, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12868, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12869, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12870, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12871, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12872, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12873, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12874, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12875, "properties": { "facing": "south", "half": "lower", @@ -16508,7 +16514,7 @@ } }, { - "id": 12866, + "id": 12876, "properties": { "facing": "south", "half": "lower", @@ -16517,113 +16523,13 @@ "powered": "false" } }, - { - "id": 12867, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12868, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12869, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12870, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12871, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12872, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12873, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12874, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12875, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12876, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 12877, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -16631,9 +16537,9 @@ "id": 12878, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -16641,9 +16547,9 @@ "id": 12879, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -16651,14 +16557,114 @@ "id": 12880, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 12881, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12882, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12883, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12884, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12885, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12886, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12887, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12888, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12889, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12890, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12891, "properties": { "facing": "west", "half": "lower", @@ -16668,7 +16674,7 @@ } }, { - "id": 12882, + "id": 12892, "properties": { "facing": "west", "half": "lower", @@ -16677,113 +16683,13 @@ "powered": "false" } }, - { - "id": 12883, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12884, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12885, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12886, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12887, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12888, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12889, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12890, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12891, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12892, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 12893, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -16791,14 +16697,114 @@ "id": 12894, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 12895, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12896, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12897, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12898, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12899, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12900, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12901, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12902, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12903, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12904, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12905, "properties": { "facing": "east", "half": "lower", @@ -16808,7 +16814,7 @@ } }, { - "id": 12896, + "id": 12906, "properties": { "facing": "east", "half": "lower", @@ -16818,7 +16824,7 @@ } }, { - "id": 12897, + "id": 12907, "properties": { "facing": "east", "half": "lower", @@ -16828,7 +16834,7 @@ } }, { - "id": 12898, + "id": 12908, "properties": { "facing": "east", "half": "lower", @@ -16867,113 +16873,13 @@ ] }, "states": [ - { - "id": 12515, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12516, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12517, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12518, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12519, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12520, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12521, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12522, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12523, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12524, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 12525, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -16981,9 +16887,9 @@ "id": 12526, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -16991,9 +16897,9 @@ "id": 12527, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -17001,14 +16907,114 @@ "id": 12528, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 12529, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12530, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12531, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12532, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12533, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12534, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12535, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12536, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12537, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12538, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12539, "properties": { "east": "true", "north": "false", @@ -17018,7 +17024,7 @@ } }, { - "id": 12530, + "id": 12540, "properties": { "east": "true", "north": "false", @@ -17027,118 +17033,118 @@ "west": "false" } }, - { - "id": 12531, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12532, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12533, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12534, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12535, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12536, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12537, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12538, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12539, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12540, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 12541, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 12542, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12543, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12544, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12545, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12546, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12547, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12548, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12549, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12550, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12551, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12552, "properties": { "east": "false", "north": "false", @@ -17148,7 +17154,7 @@ } }, { - "id": 12543, + "id": 12553, "properties": { "east": "false", "north": "false", @@ -17158,7 +17164,7 @@ } }, { - "id": 12544, + "id": 12554, "properties": { "east": "false", "north": "false", @@ -17168,7 +17174,7 @@ } }, { - "id": 12545, + "id": 12555, "properties": { "east": "false", "north": "false", @@ -17179,7 +17185,7 @@ }, { "default": true, - "id": 12546, + "id": 12556, "properties": { "east": "false", "north": "false", @@ -17218,7 +17224,7 @@ }, "states": [ { - "id": 12227, + "id": 12237, "properties": { "facing": "north", "in_wall": "true", @@ -17227,7 +17233,7 @@ } }, { - "id": 12228, + "id": 12238, "properties": { "facing": "north", "in_wall": "true", @@ -17236,7 +17242,7 @@ } }, { - "id": 12229, + "id": 12239, "properties": { "facing": "north", "in_wall": "true", @@ -17245,7 +17251,7 @@ } }, { - "id": 12230, + "id": 12240, "properties": { "facing": "north", "in_wall": "true", @@ -17254,7 +17260,7 @@ } }, { - "id": 12231, + "id": 12241, "properties": { "facing": "north", "in_wall": "false", @@ -17263,7 +17269,7 @@ } }, { - "id": 12232, + "id": 12242, "properties": { "facing": "north", "in_wall": "false", @@ -17272,7 +17278,7 @@ } }, { - "id": 12233, + "id": 12243, "properties": { "facing": "north", "in_wall": "false", @@ -17282,7 +17288,7 @@ }, { "default": true, - "id": 12234, + "id": 12244, "properties": { "facing": "north", "in_wall": "false", @@ -17290,143 +17296,143 @@ "powered": "false" } }, - { - "id": 12235, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 12236, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 12237, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 12238, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 12239, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 12240, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 12241, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 12242, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 12243, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 12244, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, { "id": 12245, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12246, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 12247, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "true" } }, { "id": 12248, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "false" } }, { "id": 12249, "properties": { - "facing": "west", + "facing": "south", "in_wall": "false", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12250, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 12251, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 12252, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 12253, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 12254, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 12255, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 12256, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 12257, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 12258, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 12259, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 12260, "properties": { "facing": "west", "in_wall": "false", @@ -17435,7 +17441,7 @@ } }, { - "id": 12251, + "id": 12261, "properties": { "facing": "east", "in_wall": "true", @@ -17444,7 +17450,7 @@ } }, { - "id": 12252, + "id": 12262, "properties": { "facing": "east", "in_wall": "true", @@ -17453,7 +17459,7 @@ } }, { - "id": 12253, + "id": 12263, "properties": { "facing": "east", "in_wall": "true", @@ -17462,7 +17468,7 @@ } }, { - "id": 12254, + "id": 12264, "properties": { "facing": "east", "in_wall": "true", @@ -17471,7 +17477,7 @@ } }, { - "id": 12255, + "id": 12265, "properties": { "facing": "east", "in_wall": "false", @@ -17480,7 +17486,7 @@ } }, { - "id": 12256, + "id": 12266, "properties": { "facing": "east", "in_wall": "false", @@ -17489,7 +17495,7 @@ } }, { - "id": 12257, + "id": 12267, "properties": { "facing": "east", "in_wall": "false", @@ -17498,7 +17504,7 @@ } }, { - "id": 12258, + "id": 12268, "properties": { "facing": "east", "in_wall": "false", @@ -17543,240 +17549,240 @@ ] }, "states": [ - { - "id": 5057, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5058, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5059, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5060, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5061, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5062, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5063, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5064, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5065, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, { "id": 5066, "properties": { "attached": "true", - "rotation": "4", - "waterlogged": "false" + "rotation": "0", + "waterlogged": "true" } }, { "id": 5067, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "true" + "rotation": "0", + "waterlogged": "false" } }, { "id": 5068, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5069, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5070, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5071, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5072, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5073, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5074, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5075, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5076, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5077, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5078, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5079, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5080, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5081, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5082, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5083, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5084, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "false" + "rotation": "9", + "waterlogged": "true" } }, { "id": 5085, "properties": { "attached": "true", - "rotation": "14", - "waterlogged": "true" + "rotation": "9", + "waterlogged": "false" } }, { "id": 5086, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5087, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5088, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5089, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5090, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5091, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5092, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5093, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5094, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5095, "properties": { "attached": "true", "rotation": "14", @@ -17784,7 +17790,7 @@ } }, { - "id": 5087, + "id": 5096, "properties": { "attached": "true", "rotation": "15", @@ -17792,7 +17798,7 @@ } }, { - "id": 5088, + "id": 5097, "properties": { "attached": "true", "rotation": "15", @@ -17800,7 +17806,7 @@ } }, { - "id": 5089, + "id": 5098, "properties": { "attached": "false", "rotation": "0", @@ -17809,215 +17815,215 @@ }, { "default": true, - "id": 5090, + "id": 5099, "properties": { "attached": "false", "rotation": "0", "waterlogged": "false" } }, - { - "id": 5091, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5092, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5093, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5094, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5095, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5096, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5097, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5098, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5099, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 5100, "properties": { "attached": "false", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5101, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5102, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5103, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5104, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5105, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5106, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5107, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5108, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5109, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5110, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5111, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5112, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5113, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5114, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5115, "properties": { "attached": "false", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5116, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5117, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5118, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5119, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5120, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5121, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5122, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5123, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5124, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5125, "properties": { "attached": "false", "rotation": "13", @@ -18025,7 +18031,7 @@ } }, { - "id": 5117, + "id": 5126, "properties": { "attached": "false", "rotation": "14", @@ -18033,7 +18039,7 @@ } }, { - "id": 5118, + "id": 5127, "properties": { "attached": "false", "rotation": "14", @@ -18041,7 +18047,7 @@ } }, { - "id": 5119, + "id": 5128, "properties": { "attached": "false", "rotation": "15", @@ -18049,7 +18055,7 @@ } }, { - "id": 5120, + "id": 5129, "properties": { "attached": "false", "rotation": "15", @@ -18060,7 +18066,8 @@ }, "minecraft:birch_leaves": { "definition": { - "type": "minecraft:leaves", + "type": "minecraft:tinted_particle_leaves", + "leaf_particle_chance": 0.01, "properties": {} }, "properties": { @@ -18370,14 +18377,14 @@ }, "states": [ { - "id": 5887, + "id": 5896, "properties": { "powered": "true" } }, { "default": true, - "id": 5888, + "id": 5897, "properties": { "powered": "false" } @@ -18444,7 +18451,7 @@ }, "states": [ { - "id": 4421, + "id": 4430, "properties": { "rotation": "0", "waterlogged": "true" @@ -18452,217 +18459,217 @@ }, { "default": true, - "id": 4422, + "id": 4431, "properties": { "rotation": "0", "waterlogged": "false" } }, - { - "id": 4423, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4424, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4425, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4426, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4427, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4428, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4429, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4430, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4431, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 4432, "properties": { - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 4433, "properties": { - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 4434, "properties": { - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 4435, "properties": { - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 4436, "properties": { - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 4437, "properties": { - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 4438, "properties": { - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 4439, "properties": { - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 4440, "properties": { - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 4441, "properties": { - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 4442, "properties": { - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 4443, "properties": { - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 4444, "properties": { - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 4445, "properties": { - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 4446, "properties": { - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 4447, "properties": { - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 4448, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4449, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4450, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4451, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4452, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4453, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4454, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4455, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4456, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4457, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 4449, + "id": 4458, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 4450, + "id": 4459, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 4451, + "id": 4460, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 4452, + "id": 4461, "properties": { "rotation": "15", "waterlogged": "false" @@ -18688,21 +18695,21 @@ }, "states": [ { - "id": 12053, + "id": 12063, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12054, + "id": 12064, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12055, + "id": 12065, "properties": { "type": "bottom", "waterlogged": "true" @@ -18710,21 +18717,21 @@ }, { "default": true, - "id": 12056, + "id": 12066, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12057, + "id": 12067, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12058, + "id": 12068, "properties": { "type": "double", "waterlogged": "false" @@ -18764,98 +18771,98 @@ ] }, "states": [ - { - "id": 8520, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 8521, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 8522, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 8523, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 8524, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 8525, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 8526, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 8527, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 8528, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 8529, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 8530, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8531, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8532, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8533, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8534, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8535, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8536, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8537, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8538, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8539, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8540, "properties": { "facing": "north", "half": "bottom", @@ -18865,100 +18872,10 @@ }, { "default": true, - "id": 8531, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 8532, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 8533, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 8534, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 8535, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 8536, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 8537, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 8538, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 8539, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 8540, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 8541, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -18966,8 +18883,8 @@ { "id": 8542, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -18975,8 +18892,8 @@ { "id": 8543, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -18984,8 +18901,8 @@ { "id": 8544, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -18993,8 +18910,8 @@ { "id": 8545, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -19002,8 +18919,8 @@ { "id": 8546, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -19011,8 +18928,8 @@ { "id": 8547, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -19020,8 +18937,8 @@ { "id": 8548, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -19029,8 +18946,8 @@ { "id": 8549, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -19039,7 +18956,7 @@ "id": 8550, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -19048,7 +18965,7 @@ "id": 8551, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -19057,7 +18974,7 @@ "id": 8552, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -19066,7 +18983,7 @@ "id": 8553, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -19075,7 +18992,7 @@ "id": 8554, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -19084,7 +19001,7 @@ "id": 8555, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -19093,7 +19010,7 @@ "id": 8556, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -19102,7 +19019,7 @@ "id": 8557, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -19111,7 +19028,7 @@ "id": 8558, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -19120,7 +19037,7 @@ "id": 8559, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -19128,8 +19045,8 @@ { "id": 8560, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -19137,8 +19054,8 @@ { "id": 8561, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -19146,8 +19063,8 @@ { "id": 8562, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -19155,8 +19072,8 @@ { "id": 8563, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -19164,8 +19081,8 @@ { "id": 8564, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -19173,8 +19090,8 @@ { "id": 8565, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -19182,8 +19099,8 @@ { "id": 8566, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -19191,8 +19108,8 @@ { "id": 8567, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -19200,8 +19117,8 @@ { "id": 8568, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -19209,8 +19126,8 @@ { "id": 8569, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -19219,7 +19136,7 @@ "id": 8570, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -19228,7 +19145,7 @@ "id": 8571, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -19237,7 +19154,7 @@ "id": 8572, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -19246,7 +19163,7 @@ "id": 8573, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -19255,7 +19172,7 @@ "id": 8574, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -19264,7 +19181,7 @@ "id": 8575, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -19273,7 +19190,7 @@ "id": 8576, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -19282,7 +19199,7 @@ "id": 8577, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -19291,7 +19208,7 @@ "id": 8578, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -19300,7 +19217,7 @@ "id": 8579, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -19308,8 +19225,8 @@ { "id": 8580, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -19317,8 +19234,8 @@ { "id": 8581, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -19326,8 +19243,8 @@ { "id": 8582, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -19335,8 +19252,8 @@ { "id": 8583, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -19344,8 +19261,8 @@ { "id": 8584, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -19353,8 +19270,8 @@ { "id": 8585, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -19362,8 +19279,8 @@ { "id": 8586, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -19371,8 +19288,8 @@ { "id": 8587, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -19380,8 +19297,8 @@ { "id": 8588, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -19389,8 +19306,8 @@ { "id": 8589, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -19399,7 +19316,7 @@ "id": 8590, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -19408,7 +19325,7 @@ "id": 8591, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -19417,7 +19334,7 @@ "id": 8592, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -19426,7 +19343,7 @@ "id": 8593, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -19435,7 +19352,7 @@ "id": 8594, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -19444,7 +19361,7 @@ "id": 8595, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -19453,7 +19370,7 @@ "id": 8596, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -19462,7 +19379,7 @@ "id": 8597, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -19471,13 +19388,103 @@ "id": 8598, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 8599, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8600, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8601, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8602, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8603, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8604, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8605, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8606, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8607, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8608, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8609, "properties": { "facing": "east", "half": "bottom", @@ -19518,118 +19525,118 @@ ] }, "states": [ - { - "id": 6258, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6259, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6260, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6261, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6262, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6263, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6264, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6265, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6266, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6267, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6268, "properties": { "facing": "north", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, { "id": 6269, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6270, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6271, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6272, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6273, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6274, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6275, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6276, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6277, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6278, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6279, "properties": { "facing": "north", "half": "bottom", @@ -19639,7 +19646,7 @@ } }, { - "id": 6270, + "id": 6280, "properties": { "facing": "north", "half": "bottom", @@ -19649,7 +19656,7 @@ } }, { - "id": 6271, + "id": 6281, "properties": { "facing": "north", "half": "bottom", @@ -19659,7 +19666,7 @@ } }, { - "id": 6272, + "id": 6282, "properties": { "facing": "north", "half": "bottom", @@ -19670,7 +19677,7 @@ }, { "default": true, - "id": 6273, + "id": 6283, "properties": { "facing": "north", "half": "bottom", @@ -19679,113 +19686,13 @@ "waterlogged": "false" } }, - { - "id": 6274, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6275, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6276, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6277, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6278, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6279, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6280, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6281, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6282, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6283, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6284, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -19793,9 +19700,9 @@ "id": 6285, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -19803,9 +19710,9 @@ "id": 6286, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -19813,14 +19720,114 @@ "id": 6287, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6288, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6289, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6290, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6291, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6292, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6293, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6294, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6295, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6296, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6297, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6298, "properties": { "facing": "south", "half": "bottom", @@ -19830,7 +19837,7 @@ } }, { - "id": 6289, + "id": 6299, "properties": { "facing": "south", "half": "bottom", @@ -19839,113 +19846,13 @@ "waterlogged": "false" } }, - { - "id": 6290, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6291, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6292, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6293, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6294, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6295, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6296, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6297, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6298, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6299, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6300, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -19953,9 +19860,9 @@ "id": 6301, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -19963,9 +19870,9 @@ "id": 6302, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -19973,14 +19880,114 @@ "id": 6303, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6304, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6305, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6306, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6307, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6308, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6309, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6310, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6311, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6312, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6313, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6314, "properties": { "facing": "west", "half": "bottom", @@ -19990,7 +19997,7 @@ } }, { - "id": 6305, + "id": 6315, "properties": { "facing": "west", "half": "bottom", @@ -19999,113 +20006,13 @@ "waterlogged": "false" } }, - { - "id": 6306, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6307, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6308, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6309, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6310, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6311, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6312, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6313, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6314, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6315, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6316, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -20113,14 +20020,114 @@ "id": 6317, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, { "id": 6318, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6319, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6320, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6321, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6322, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6323, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6324, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6325, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6326, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6327, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6328, "properties": { "facing": "east", "half": "bottom", @@ -20130,7 +20137,7 @@ } }, { - "id": 6319, + "id": 6329, "properties": { "facing": "east", "half": "bottom", @@ -20140,7 +20147,7 @@ } }, { - "id": 6320, + "id": 6330, "properties": { "facing": "east", "half": "bottom", @@ -20150,7 +20157,7 @@ } }, { - "id": 6321, + "id": 6331, "properties": { "facing": "east", "half": "bottom", @@ -20181,7 +20188,7 @@ }, "states": [ { - "id": 5713, + "id": 5722, "properties": { "facing": "north", "waterlogged": "true" @@ -20189,49 +20196,49 @@ }, { "default": true, - "id": 5714, + "id": 5723, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5715, + "id": 5724, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5716, + "id": 5725, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5717, + "id": 5726, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5718, + "id": 5727, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5719, + "id": 5728, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5720, + "id": 5729, "properties": { "facing": "east", "waterlogged": "false" @@ -20259,7 +20266,7 @@ }, "states": [ { - "id": 4865, + "id": 4874, "properties": { "facing": "north", "waterlogged": "true" @@ -20267,49 +20274,49 @@ }, { "default": true, - "id": 4866, + "id": 4875, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 4867, + "id": 4876, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 4868, + "id": 4877, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 4869, + "id": 4878, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 4870, + "id": 4879, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 4871, + "id": 4880, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4872, + "id": 4881, "properties": { "facing": "east", "waterlogged": "false" @@ -20380,97 +20387,97 @@ "states": [ { "default": true, - "id": 11878, + "id": 11888, "properties": { "rotation": "0" } }, { - "id": 11879, + "id": 11889, "properties": { "rotation": "1" } }, { - "id": 11880, + "id": 11890, "properties": { "rotation": "2" } }, { - "id": 11881, + "id": 11891, "properties": { "rotation": "3" } }, { - "id": 11882, + "id": 11892, "properties": { "rotation": "4" } }, { - "id": 11883, + "id": 11893, "properties": { "rotation": "5" } }, { - "id": 11884, + "id": 11894, "properties": { "rotation": "6" } }, { - "id": 11885, + "id": 11895, "properties": { "rotation": "7" } }, { - "id": 11886, + "id": 11896, "properties": { "rotation": "8" } }, { - "id": 11887, + "id": 11897, "properties": { "rotation": "9" } }, { - "id": 11888, + "id": 11898, "properties": { "rotation": "10" } }, { - "id": 11889, + "id": 11899, "properties": { "rotation": "11" } }, { - "id": 11890, + "id": 11900, "properties": { "rotation": "12" } }, { - "id": 11891, + "id": 11901, "properties": { "rotation": "13" } }, { - "id": 11892, + "id": 11902, "properties": { "rotation": "14" } }, { - "id": 11893, + "id": 11903, "properties": { "rotation": "15" } @@ -20654,7 +20661,7 @@ }, "states": [ { - "id": 21994, + "id": 22009, "properties": { "candles": "1", "lit": "true", @@ -20662,7 +20669,7 @@ } }, { - "id": 21995, + "id": 22010, "properties": { "candles": "1", "lit": "true", @@ -20670,7 +20677,7 @@ } }, { - "id": 21996, + "id": 22011, "properties": { "candles": "1", "lit": "false", @@ -20679,7 +20686,7 @@ }, { "default": true, - "id": 21997, + "id": 22012, "properties": { "candles": "1", "lit": "false", @@ -20687,7 +20694,7 @@ } }, { - "id": 21998, + "id": 22013, "properties": { "candles": "2", "lit": "true", @@ -20695,7 +20702,7 @@ } }, { - "id": 21999, + "id": 22014, "properties": { "candles": "2", "lit": "true", @@ -20703,7 +20710,7 @@ } }, { - "id": 22000, + "id": 22015, "properties": { "candles": "2", "lit": "false", @@ -20711,7 +20718,7 @@ } }, { - "id": 22001, + "id": 22016, "properties": { "candles": "2", "lit": "false", @@ -20719,7 +20726,7 @@ } }, { - "id": 22002, + "id": 22017, "properties": { "candles": "3", "lit": "true", @@ -20727,7 +20734,7 @@ } }, { - "id": 22003, + "id": 22018, "properties": { "candles": "3", "lit": "true", @@ -20735,7 +20742,7 @@ } }, { - "id": 22004, + "id": 22019, "properties": { "candles": "3", "lit": "false", @@ -20743,7 +20750,7 @@ } }, { - "id": 22005, + "id": 22020, "properties": { "candles": "3", "lit": "false", @@ -20751,7 +20758,7 @@ } }, { - "id": 22006, + "id": 22021, "properties": { "candles": "4", "lit": "true", @@ -20759,7 +20766,7 @@ } }, { - "id": 22007, + "id": 22022, "properties": { "candles": "4", "lit": "true", @@ -20767,7 +20774,7 @@ } }, { - "id": 22008, + "id": 22023, "properties": { "candles": "4", "lit": "false", @@ -20775,7 +20782,7 @@ } }, { - "id": 22009, + "id": 22024, "properties": { "candles": "4", "lit": "false", @@ -20798,14 +20805,14 @@ }, "states": [ { - "id": 22042, + "id": 22057, "properties": { "lit": "true" } }, { "default": true, - "id": 22043, + "id": 22058, "properties": { "lit": "false" } @@ -20821,7 +20828,7 @@ "states": [ { "default": true, - "id": 11622 + "id": 11632 } ] }, @@ -20833,7 +20840,7 @@ "states": [ { "default": true, - "id": 13756 + "id": 13766 } ] }, @@ -20846,7 +20853,7 @@ "states": [ { "default": true, - "id": 13772 + "id": 13782 } ] }, @@ -20866,25 +20873,25 @@ "states": [ { "default": true, - "id": 13737, + "id": 13747, "properties": { "facing": "north" } }, { - "id": 13738, + "id": 13748, "properties": { "facing": "south" } }, { - "id": 13739, + "id": 13749, "properties": { "facing": "west" } }, { - "id": 13740, + "id": 13750, "properties": { "facing": "east" } @@ -20909,38 +20916,38 @@ }, "states": [ { - "id": 13671, + "id": 13681, "properties": { "facing": "north" } }, { - "id": 13672, + "id": 13682, "properties": { "facing": "east" } }, { - "id": 13673, + "id": 13683, "properties": { "facing": "south" } }, { - "id": 13674, + "id": 13684, "properties": { "facing": "west" } }, { "default": true, - "id": 13675, + "id": 13685, "properties": { "facing": "up" } }, { - "id": 13676, + "id": 13686, "properties": { "facing": "down" } @@ -20956,7 +20963,7 @@ "states": [ { "default": true, - "id": 6129 + "id": 6139 } ] }, @@ -20989,113 +20996,13 @@ ] }, "states": [ - { - "id": 10651, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10652, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10653, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10654, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10655, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10656, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10657, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10658, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10659, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10660, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10661, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -21103,9 +21010,9 @@ "id": 10662, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -21113,9 +21020,9 @@ "id": 10663, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -21123,14 +21030,114 @@ "id": 10664, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 10665, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10666, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10667, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10668, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10669, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10670, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10671, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10672, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10673, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10674, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10675, "properties": { "east": "true", "north": "false", @@ -21140,7 +21147,7 @@ } }, { - "id": 10666, + "id": 10676, "properties": { "east": "true", "north": "false", @@ -21149,118 +21156,118 @@ "west": "false" } }, - { - "id": 10667, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10668, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10669, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10670, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10671, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10672, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10673, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10674, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10675, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10676, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10677, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 10678, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10679, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10680, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10681, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10682, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10683, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10684, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10685, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10686, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10687, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10688, "properties": { "east": "false", "north": "false", @@ -21270,7 +21277,7 @@ } }, { - "id": 10679, + "id": 10689, "properties": { "east": "false", "north": "false", @@ -21280,7 +21287,7 @@ } }, { - "id": 10680, + "id": 10690, "properties": { "east": "false", "north": "false", @@ -21290,7 +21297,7 @@ } }, { - "id": 10681, + "id": 10691, "properties": { "east": "false", "north": "false", @@ -21301,7 +21308,7 @@ }, { "default": true, - "id": 10682, + "id": 10692, "properties": { "east": "false", "north": "false", @@ -21314,13 +21321,13 @@ }, "minecraft:black_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 10170 + "id": 10180 } ] }, @@ -21341,25 +21348,25 @@ "states": [ { "default": true, - "id": 11954, + "id": 11964, "properties": { "facing": "north" } }, { - "id": 11955, + "id": 11965, "properties": { "facing": "south" } }, { - "id": 11956, + "id": 11966, "properties": { "facing": "west" } }, { - "id": 11957, + "id": 11967, "properties": { "facing": "east" } @@ -21374,7 +21381,7 @@ "states": [ { "default": true, - "id": 2105 + "id": 2108 } ] }, @@ -21386,7 +21393,7 @@ "states": [ { "default": true, - "id": 20473 + "id": 20488 } ] }, @@ -21408,21 +21415,21 @@ }, "states": [ { - "id": 20878, + "id": 20893, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 20879, + "id": 20894, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 20880, + "id": 20895, "properties": { "type": "bottom", "waterlogged": "true" @@ -21430,21 +21437,21 @@ }, { "default": true, - "id": 20881, + "id": 20896, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 20882, + "id": 20897, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 20883, + "id": 20898, "properties": { "type": "double", "waterlogged": "false" @@ -21485,7 +21492,7 @@ }, "states": [ { - "id": 20474, + "id": 20489, "properties": { "facing": "north", "half": "top", @@ -21494,7 +21501,7 @@ } }, { - "id": 20475, + "id": 20490, "properties": { "facing": "north", "half": "top", @@ -21503,7 +21510,7 @@ } }, { - "id": 20476, + "id": 20491, "properties": { "facing": "north", "half": "top", @@ -21512,7 +21519,7 @@ } }, { - "id": 20477, + "id": 20492, "properties": { "facing": "north", "half": "top", @@ -21521,7 +21528,7 @@ } }, { - "id": 20478, + "id": 20493, "properties": { "facing": "north", "half": "top", @@ -21530,7 +21537,7 @@ } }, { - "id": 20479, + "id": 20494, "properties": { "facing": "north", "half": "top", @@ -21539,7 +21546,7 @@ } }, { - "id": 20480, + "id": 20495, "properties": { "facing": "north", "half": "top", @@ -21548,7 +21555,7 @@ } }, { - "id": 20481, + "id": 20496, "properties": { "facing": "north", "half": "top", @@ -21557,7 +21564,7 @@ } }, { - "id": 20482, + "id": 20497, "properties": { "facing": "north", "half": "top", @@ -21566,7 +21573,7 @@ } }, { - "id": 20483, + "id": 20498, "properties": { "facing": "north", "half": "top", @@ -21575,7 +21582,7 @@ } }, { - "id": 20484, + "id": 20499, "properties": { "facing": "north", "half": "bottom", @@ -21585,250 +21592,250 @@ }, { "default": true, - "id": 20485, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20486, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20487, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20488, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20489, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20490, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20491, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20492, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 20493, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 20494, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20495, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20496, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20497, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20498, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20499, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { "id": 20500, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { "id": 20501, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 20502, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { "id": 20503, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 20504, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "shape": "inner_right", + "waterlogged": "false" } }, { "id": 20505, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 20506, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "shape": "outer_left", + "waterlogged": "false" } }, { "id": 20507, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "shape": "outer_right", + "waterlogged": "true" } }, { "id": 20508, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "shape": "outer_right", + "waterlogged": "false" } }, { "id": 20509, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 20510, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 20511, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 20512, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20513, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20514, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20515, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20516, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20517, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20518, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20519, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20520, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20521, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20522, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20523, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20524, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20525, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20526, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20527, "properties": { "facing": "south", "half": "bottom", @@ -21837,7 +21844,7 @@ } }, { - "id": 20513, + "id": 20528, "properties": { "facing": "south", "half": "bottom", @@ -21845,170 +21852,170 @@ "waterlogged": "false" } }, - { - "id": 20514, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20515, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20516, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20517, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20518, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20519, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20520, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20521, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20522, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 20523, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 20524, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20525, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20526, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20527, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20528, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 20529, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 20530, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 20531, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 20532, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20533, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20534, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20535, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20536, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20537, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20538, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20539, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20540, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20541, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20542, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20543, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20544, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20545, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20546, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20547, "properties": { "facing": "west", "half": "bottom", @@ -22017,7 +22024,7 @@ } }, { - "id": 20533, + "id": 20548, "properties": { "facing": "west", "half": "bottom", @@ -22025,152 +22032,152 @@ "waterlogged": "false" } }, - { - "id": 20534, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20535, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20536, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20537, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20538, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20539, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20540, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20541, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20542, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 20543, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 20544, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20545, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20546, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20547, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20548, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 20549, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 20550, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20551, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20552, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20553, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20554, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20555, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20556, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20557, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20558, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20559, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20560, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20561, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20562, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20563, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20564, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20565, "properties": { "facing": "east", "half": "bottom", @@ -22179,7 +22186,7 @@ } }, { - "id": 20551, + "id": 20566, "properties": { "facing": "east", "half": "bottom", @@ -22188,7 +22195,7 @@ } }, { - "id": 20552, + "id": 20567, "properties": { "facing": "east", "half": "bottom", @@ -22197,7 +22204,7 @@ } }, { - "id": 20553, + "id": 20568, "properties": { "facing": "east", "half": "bottom", @@ -22244,7 +22251,7 @@ }, "states": [ { - "id": 20554, + "id": 20569, "properties": { "east": "none", "north": "none", @@ -22255,7 +22262,7 @@ } }, { - "id": 20555, + "id": 20570, "properties": { "east": "none", "north": "none", @@ -22266,7 +22273,7 @@ } }, { - "id": 20556, + "id": 20571, "properties": { "east": "none", "north": "none", @@ -22278,178 +22285,13 @@ }, { "default": true, - "id": 20557, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20558, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20559, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20560, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20561, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20562, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20563, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20564, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20565, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20566, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20567, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20568, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20569, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20570, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20571, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { "id": 20572, "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -22458,9 +22300,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -22469,9 +22311,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -22480,9 +22322,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -22491,9 +22333,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -22502,9 +22344,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -22513,9 +22355,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -22524,9 +22366,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -22535,9 +22377,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -22546,9 +22388,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -22557,9 +22399,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -22568,9 +22410,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -22579,9 +22421,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -22590,9 +22432,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -22601,9 +22443,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -22612,9 +22454,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -22623,9 +22465,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -22634,9 +22476,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -22644,10 +22486,10 @@ "id": 20590, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -22655,10 +22497,10 @@ "id": 20591, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -22666,10 +22508,10 @@ "id": 20592, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -22677,10 +22519,10 @@ "id": 20593, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -22688,10 +22530,10 @@ "id": 20594, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -22699,10 +22541,10 @@ "id": 20595, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -22710,10 +22552,10 @@ "id": 20596, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -22721,10 +22563,10 @@ "id": 20597, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -22732,10 +22574,10 @@ "id": 20598, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -22743,10 +22585,10 @@ "id": 20599, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -22754,10 +22596,10 @@ "id": 20600, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -22765,10 +22607,10 @@ "id": 20601, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -22776,10 +22618,10 @@ "id": 20602, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -22787,10 +22629,10 @@ "id": 20603, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -22798,10 +22640,10 @@ "id": 20604, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -22810,9 +22652,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -22821,9 +22663,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -22832,9 +22674,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -22843,9 +22685,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -22854,9 +22696,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -22865,9 +22707,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -22876,9 +22718,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -22887,9 +22729,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -22898,9 +22740,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -22909,9 +22751,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -22920,9 +22762,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -22931,9 +22773,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -22942,9 +22784,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -22953,9 +22795,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -22964,9 +22806,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -22975,9 +22817,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -22986,9 +22828,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -22997,9 +22839,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -23008,9 +22850,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -23019,9 +22861,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -23030,9 +22872,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -23040,10 +22882,10 @@ "id": 20626, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -23051,10 +22893,10 @@ "id": 20627, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -23062,10 +22904,10 @@ "id": 20628, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -23073,10 +22915,10 @@ "id": 20629, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -23084,10 +22926,10 @@ "id": 20630, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -23095,10 +22937,10 @@ "id": 20631, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -23106,10 +22948,10 @@ "id": 20632, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -23117,10 +22959,10 @@ "id": 20633, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -23128,10 +22970,10 @@ "id": 20634, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -23139,10 +22981,10 @@ "id": 20635, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -23150,10 +22992,10 @@ "id": 20636, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -23161,10 +23003,10 @@ "id": 20637, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -23172,10 +23014,10 @@ "id": 20638, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -23183,10 +23025,10 @@ "id": 20639, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -23194,10 +23036,10 @@ "id": 20640, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -23206,9 +23048,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -23217,9 +23059,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -23228,9 +23070,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -23239,9 +23081,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -23250,9 +23092,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -23261,9 +23103,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -23272,9 +23114,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -23283,9 +23125,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -23294,9 +23136,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -23305,9 +23147,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -23316,9 +23158,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -23327,9 +23169,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -23338,9 +23180,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -23349,9 +23191,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -23360,9 +23202,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -23371,9 +23213,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -23382,9 +23224,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -23393,9 +23235,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -23404,14 +23246,179 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 20660, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20661, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20662, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20663, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20664, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20665, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20666, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20667, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20668, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20669, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20670, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20671, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20672, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20673, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20674, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20675, "properties": { "east": "none", "north": "tall", @@ -23422,7 +23429,7 @@ } }, { - "id": 20661, + "id": 20676, "properties": { "east": "none", "north": "tall", @@ -23432,179 +23439,14 @@ "west": "tall" } }, - { - "id": 20662, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20663, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20664, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20665, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20666, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20667, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20668, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20669, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20670, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20671, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20672, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20673, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20674, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20675, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20676, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 20677, "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -23613,9 +23455,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -23624,9 +23466,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -23635,9 +23477,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -23646,9 +23488,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -23657,9 +23499,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -23668,9 +23510,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -23679,9 +23521,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -23690,9 +23532,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -23701,9 +23543,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -23712,9 +23554,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -23723,9 +23565,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -23734,9 +23576,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -23745,9 +23587,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -23756,9 +23598,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -23767,9 +23609,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -23778,9 +23620,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -23789,9 +23631,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -23800,9 +23642,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -23811,9 +23653,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -23822,9 +23664,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -23832,10 +23674,10 @@ "id": 20698, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -23843,10 +23685,10 @@ "id": 20699, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -23854,10 +23696,10 @@ "id": 20700, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -23865,10 +23707,10 @@ "id": 20701, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -23876,10 +23718,10 @@ "id": 20702, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -23887,10 +23729,10 @@ "id": 20703, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -23898,10 +23740,10 @@ "id": 20704, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -23909,10 +23751,10 @@ "id": 20705, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -23920,10 +23762,10 @@ "id": 20706, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -23931,10 +23773,10 @@ "id": 20707, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -23942,10 +23784,10 @@ "id": 20708, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -23953,10 +23795,10 @@ "id": 20709, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -23964,10 +23806,10 @@ "id": 20710, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -23975,10 +23817,10 @@ "id": 20711, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -23986,10 +23828,10 @@ "id": 20712, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -23998,9 +23840,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -24009,9 +23851,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -24020,9 +23862,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -24031,9 +23873,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -24042,9 +23884,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -24053,9 +23895,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -24064,9 +23906,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -24075,9 +23917,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -24086,9 +23928,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -24097,9 +23939,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -24108,9 +23950,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -24119,9 +23961,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -24130,9 +23972,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -24141,9 +23983,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -24152,9 +23994,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -24163,9 +24005,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -24174,9 +24016,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -24185,9 +24027,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -24196,9 +24038,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -24207,9 +24049,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -24218,9 +24060,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -24228,10 +24070,10 @@ "id": 20734, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -24239,10 +24081,10 @@ "id": 20735, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -24250,10 +24092,10 @@ "id": 20736, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -24261,10 +24103,10 @@ "id": 20737, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -24272,10 +24114,10 @@ "id": 20738, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -24283,10 +24125,10 @@ "id": 20739, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -24294,10 +24136,10 @@ "id": 20740, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -24305,10 +24147,10 @@ "id": 20741, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -24316,10 +24158,10 @@ "id": 20742, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -24327,10 +24169,10 @@ "id": 20743, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -24338,10 +24180,10 @@ "id": 20744, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -24349,10 +24191,10 @@ "id": 20745, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -24360,10 +24202,10 @@ "id": 20746, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -24371,10 +24213,10 @@ "id": 20747, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -24382,10 +24224,10 @@ "id": 20748, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -24394,9 +24236,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -24405,9 +24247,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -24416,9 +24258,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -24427,9 +24269,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -24438,9 +24280,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -24449,9 +24291,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -24460,9 +24302,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -24471,9 +24313,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -24482,9 +24324,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -24493,9 +24335,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -24504,9 +24346,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -24515,9 +24357,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -24526,9 +24368,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -24537,9 +24379,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -24548,9 +24390,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -24559,9 +24401,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -24570,9 +24412,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -24581,9 +24423,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -24592,14 +24434,179 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 20768, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20769, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20770, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20771, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20772, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20773, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20774, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20775, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20776, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20777, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20778, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20779, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20780, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20781, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20782, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20783, "properties": { "east": "low", "north": "tall", @@ -24610,7 +24617,7 @@ } }, { - "id": 20769, + "id": 20784, "properties": { "east": "low", "north": "tall", @@ -24620,179 +24627,14 @@ "west": "tall" } }, - { - "id": 20770, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20771, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20772, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20773, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20774, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20775, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20776, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20777, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20778, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20779, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20780, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20781, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20782, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20783, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20784, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 20785, "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -24801,9 +24643,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -24812,9 +24654,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -24823,9 +24665,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -24834,9 +24676,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -24845,9 +24687,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -24856,9 +24698,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -24867,9 +24709,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -24878,9 +24720,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -24889,9 +24731,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -24900,9 +24742,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -24911,9 +24753,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -24922,9 +24764,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -24933,9 +24775,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -24944,9 +24786,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -24955,9 +24797,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -24966,9 +24808,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -24977,9 +24819,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -24988,14 +24830,179 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 20804, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20805, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20806, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20807, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20808, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20809, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20810, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20811, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20812, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20813, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20814, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20815, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20816, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20817, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20818, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20819, "properties": { "east": "tall", "north": "none", @@ -25006,7 +25013,7 @@ } }, { - "id": 20805, + "id": 20820, "properties": { "east": "tall", "north": "none", @@ -25016,179 +25023,14 @@ "west": "tall" } }, - { - "id": 20806, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20807, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20808, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20809, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20810, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20811, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20812, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20813, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20814, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20815, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20816, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20817, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20818, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20819, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20820, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 20821, "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -25197,9 +25039,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -25208,9 +25050,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -25219,9 +25061,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -25230,9 +25072,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -25241,9 +25083,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -25252,9 +25094,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -25263,9 +25105,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -25274,9 +25116,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -25285,9 +25127,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -25296,9 +25138,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -25307,9 +25149,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -25318,9 +25160,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -25329,9 +25171,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -25340,9 +25182,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -25351,9 +25193,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -25362,9 +25204,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -25373,9 +25215,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -25384,14 +25226,179 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 20840, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20841, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20842, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20843, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20844, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20845, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20846, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20847, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20848, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20849, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20850, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20851, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20852, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20853, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20854, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20855, "properties": { "east": "tall", "north": "low", @@ -25402,7 +25409,7 @@ } }, { - "id": 20841, + "id": 20856, "properties": { "east": "tall", "north": "low", @@ -25412,179 +25419,14 @@ "west": "tall" } }, - { - "id": 20842, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20843, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20844, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20845, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20846, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20847, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20848, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20849, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20850, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20851, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20852, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20853, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20854, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20855, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20856, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 20857, "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -25593,9 +25435,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -25604,9 +25446,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -25615,9 +25457,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -25626,9 +25468,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -25637,9 +25479,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -25648,9 +25490,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -25659,9 +25501,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -25670,9 +25512,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -25681,9 +25523,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -25692,9 +25534,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -25703,9 +25545,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -25714,9 +25556,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -25725,9 +25567,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -25736,14 +25578,179 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, { "id": 20872, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20873, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20874, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20875, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20876, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20877, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20878, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20879, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20880, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20881, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20882, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20883, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20884, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20885, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20886, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20887, "properties": { "east": "tall", "north": "tall", @@ -25754,7 +25761,7 @@ } }, { - "id": 20873, + "id": 20888, "properties": { "east": "tall", "north": "tall", @@ -25765,7 +25772,7 @@ } }, { - "id": 20874, + "id": 20889, "properties": { "east": "tall", "north": "tall", @@ -25776,7 +25783,7 @@ } }, { - "id": 20875, + "id": 20890, "properties": { "east": "tall", "north": "tall", @@ -25787,7 +25794,7 @@ } }, { - "id": 20876, + "id": 20891, "properties": { "east": "tall", "north": "tall", @@ -25798,7 +25805,7 @@ } }, { - "id": 20877, + "id": 20892, "properties": { "east": "tall", "north": "tall", @@ -25829,7 +25836,7 @@ }, "states": [ { - "id": 19441, + "id": 19451, "properties": { "facing": "north", "lit": "true" @@ -25837,49 +25844,49 @@ }, { "default": true, - "id": 19442, + "id": 19452, "properties": { "facing": "north", "lit": "false" } }, { - "id": 19443, + "id": 19453, "properties": { "facing": "south", "lit": "true" } }, { - "id": 19444, + "id": 19454, "properties": { "facing": "south", "lit": "false" } }, { - "id": 19445, + "id": 19455, "properties": { "facing": "west", "lit": "true" } }, { - "id": 19446, + "id": 19456, "properties": { "facing": "west", "lit": "false" } }, { - "id": 19447, + "id": 19457, "properties": { "facing": "east", "lit": "true" } }, { - "id": 19448, + "id": 19458, "properties": { "facing": "east", "lit": "false" @@ -25916,97 +25923,97 @@ "states": [ { "default": true, - "id": 11814, + "id": 11824, "properties": { "rotation": "0" } }, { - "id": 11815, + "id": 11825, "properties": { "rotation": "1" } }, { - "id": 11816, + "id": 11826, "properties": { "rotation": "2" } }, { - "id": 11817, + "id": 11827, "properties": { "rotation": "3" } }, { - "id": 11818, + "id": 11828, "properties": { "rotation": "4" } }, { - "id": 11819, + "id": 11829, "properties": { "rotation": "5" } }, { - "id": 11820, + "id": 11830, "properties": { "rotation": "6" } }, { - "id": 11821, + "id": 11831, "properties": { "rotation": "7" } }, { - "id": 11822, + "id": 11832, "properties": { "rotation": "8" } }, { - "id": 11823, + "id": 11833, "properties": { "rotation": "9" } }, { - "id": 11824, + "id": 11834, "properties": { "rotation": "10" } }, { - "id": 11825, + "id": 11835, "properties": { "rotation": "11" } }, { - "id": 11826, + "id": 11836, "properties": { "rotation": "12" } }, { - "id": 11827, + "id": 11837, "properties": { "rotation": "13" } }, { - "id": 11828, + "id": 11838, "properties": { "rotation": "14" } }, { - "id": 11829, + "id": 11839, "properties": { "rotation": "15" } @@ -26190,7 +26197,7 @@ }, "states": [ { - "id": 21930, + "id": 21945, "properties": { "candles": "1", "lit": "true", @@ -26198,7 +26205,7 @@ } }, { - "id": 21931, + "id": 21946, "properties": { "candles": "1", "lit": "true", @@ -26206,7 +26213,7 @@ } }, { - "id": 21932, + "id": 21947, "properties": { "candles": "1", "lit": "false", @@ -26215,7 +26222,7 @@ }, { "default": true, - "id": 21933, + "id": 21948, "properties": { "candles": "1", "lit": "false", @@ -26223,7 +26230,7 @@ } }, { - "id": 21934, + "id": 21949, "properties": { "candles": "2", "lit": "true", @@ -26231,7 +26238,7 @@ } }, { - "id": 21935, + "id": 21950, "properties": { "candles": "2", "lit": "true", @@ -26239,7 +26246,7 @@ } }, { - "id": 21936, + "id": 21951, "properties": { "candles": "2", "lit": "false", @@ -26247,7 +26254,7 @@ } }, { - "id": 21937, + "id": 21952, "properties": { "candles": "2", "lit": "false", @@ -26255,7 +26262,7 @@ } }, { - "id": 21938, + "id": 21953, "properties": { "candles": "3", "lit": "true", @@ -26263,7 +26270,7 @@ } }, { - "id": 21939, + "id": 21954, "properties": { "candles": "3", "lit": "true", @@ -26271,7 +26278,7 @@ } }, { - "id": 21940, + "id": 21955, "properties": { "candles": "3", "lit": "false", @@ -26279,7 +26286,7 @@ } }, { - "id": 21941, + "id": 21956, "properties": { "candles": "3", "lit": "false", @@ -26287,7 +26294,7 @@ } }, { - "id": 21942, + "id": 21957, "properties": { "candles": "4", "lit": "true", @@ -26295,7 +26302,7 @@ } }, { - "id": 21943, + "id": 21958, "properties": { "candles": "4", "lit": "true", @@ -26303,7 +26310,7 @@ } }, { - "id": 21944, + "id": 21959, "properties": { "candles": "4", "lit": "false", @@ -26311,7 +26318,7 @@ } }, { - "id": 21945, + "id": 21960, "properties": { "candles": "4", "lit": "false", @@ -26334,14 +26341,14 @@ }, "states": [ { - "id": 22034, + "id": 22049, "properties": { "lit": "true" } }, { "default": true, - "id": 22035, + "id": 22050, "properties": { "lit": "false" } @@ -26357,7 +26364,7 @@ "states": [ { "default": true, - "id": 11618 + "id": 11628 } ] }, @@ -26369,7 +26376,7 @@ "states": [ { "default": true, - "id": 13752 + "id": 13762 } ] }, @@ -26382,7 +26389,7 @@ "states": [ { "default": true, - "id": 13768 + "id": 13778 } ] }, @@ -26402,25 +26409,25 @@ "states": [ { "default": true, - "id": 13721, + "id": 13731, "properties": { "facing": "north" } }, { - "id": 13722, + "id": 13732, "properties": { "facing": "south" } }, { - "id": 13723, + "id": 13733, "properties": { "facing": "west" } }, { - "id": 13724, + "id": 13734, "properties": { "facing": "east" } @@ -26435,7 +26442,7 @@ "states": [ { "default": true, - "id": 13954 + "id": 13964 } ] }, @@ -26453,7 +26460,7 @@ "states": [ { "default": true, - "id": 2121 + "id": 2124 } ] }, @@ -26475,38 +26482,38 @@ }, "states": [ { - "id": 13647, + "id": 13657, "properties": { "facing": "north" } }, { - "id": 13648, + "id": 13658, "properties": { "facing": "east" } }, { - "id": 13649, + "id": 13659, "properties": { "facing": "south" } }, { - "id": 13650, + "id": 13660, "properties": { "facing": "west" } }, { "default": true, - "id": 13651, + "id": 13661, "properties": { "facing": "up" } }, { - "id": 13652, + "id": 13662, "properties": { "facing": "down" } @@ -26522,7 +26529,7 @@ "states": [ { "default": true, - "id": 6125 + "id": 6135 } ] }, @@ -26555,113 +26562,13 @@ ] }, "states": [ - { - "id": 10523, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10524, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10525, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10526, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10527, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10528, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10529, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10530, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10531, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10532, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10533, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -26669,9 +26576,9 @@ "id": 10534, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -26679,9 +26586,9 @@ "id": 10535, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -26689,14 +26596,114 @@ "id": 10536, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 10537, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10538, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10539, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10540, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10541, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10542, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10543, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10544, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10545, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10546, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10547, "properties": { "east": "true", "north": "false", @@ -26706,7 +26713,7 @@ } }, { - "id": 10538, + "id": 10548, "properties": { "east": "true", "north": "false", @@ -26715,118 +26722,118 @@ "west": "false" } }, - { - "id": 10539, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10540, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10541, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10542, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10543, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10544, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10545, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10546, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10547, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10548, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10549, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 10550, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10551, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10552, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10553, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10554, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10555, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10556, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10557, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10558, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10559, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10560, "properties": { "east": "false", "north": "false", @@ -26836,7 +26843,7 @@ } }, { - "id": 10551, + "id": 10561, "properties": { "east": "false", "north": "false", @@ -26846,7 +26853,7 @@ } }, { - "id": 10552, + "id": 10562, "properties": { "east": "false", "north": "false", @@ -26856,7 +26863,7 @@ } }, { - "id": 10553, + "id": 10563, "properties": { "east": "false", "north": "false", @@ -26867,7 +26874,7 @@ }, { "default": true, - "id": 10554, + "id": 10564, "properties": { "east": "false", "north": "false", @@ -26880,13 +26887,13 @@ }, "minecraft:blue_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 10166 + "id": 10176 } ] }, @@ -26907,25 +26914,25 @@ "states": [ { "default": true, - "id": 11938, + "id": 11948, "properties": { "facing": "north" } }, { - "id": 11939, + "id": 11949, "properties": { "facing": "south" } }, { - "id": 11940, + "id": 11950, "properties": { "facing": "west" } }, { - "id": 11941, + "id": 11951, "properties": { "facing": "east" } @@ -26940,7 +26947,7 @@ "states": [ { "default": true, - "id": 2101 + "id": 2104 } ] }, @@ -26958,20 +26965,20 @@ }, "states": [ { - "id": 13559, + "id": 13569, "properties": { "axis": "x" } }, { "default": true, - "id": 13560, + "id": 13570, "properties": { "axis": "y" } }, { - "id": 13561, + "id": 13571, "properties": { "axis": "z" } @@ -26986,7 +26993,7 @@ "states": [ { "default": true, - "id": 2139 + "id": 2142 } ] }, @@ -27005,13 +27012,13 @@ "states": [ { "default": true, - "id": 13838, + "id": 13848, "properties": { "waterlogged": "true" } }, { - "id": 13839, + "id": 13849, "properties": { "waterlogged": "false" } @@ -27027,7 +27034,7 @@ "states": [ { "default": true, - "id": 13822 + "id": 13832 } ] }, @@ -27046,13 +27053,13 @@ "states": [ { "default": true, - "id": 13858, + "id": 13868, "properties": { "waterlogged": "true" } }, { - "id": 13859, + "id": 13869, "properties": { "waterlogged": "false" } @@ -27080,56 +27087,56 @@ "states": [ { "default": true, - "id": 13914, + "id": 13924, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 13915, + "id": 13925, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 13916, + "id": 13926, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 13917, + "id": 13927, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 13918, + "id": 13928, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 13919, + "id": 13929, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 13920, + "id": 13930, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 13921, + "id": 13931, "properties": { "facing": "east", "waterlogged": "false" @@ -27158,7 +27165,7 @@ }, "states": [ { - "id": 8164, + "id": 8174, "properties": { "has_bottle_0": "true", "has_bottle_1": "true", @@ -27166,7 +27173,7 @@ } }, { - "id": 8165, + "id": 8175, "properties": { "has_bottle_0": "true", "has_bottle_1": "true", @@ -27174,7 +27181,7 @@ } }, { - "id": 8166, + "id": 8176, "properties": { "has_bottle_0": "true", "has_bottle_1": "false", @@ -27182,7 +27189,7 @@ } }, { - "id": 8167, + "id": 8177, "properties": { "has_bottle_0": "true", "has_bottle_1": "false", @@ -27190,7 +27197,7 @@ } }, { - "id": 8168, + "id": 8178, "properties": { "has_bottle_0": "false", "has_bottle_1": "true", @@ -27198,7 +27205,7 @@ } }, { - "id": 8169, + "id": 8179, "properties": { "has_bottle_0": "false", "has_bottle_1": "true", @@ -27206,7 +27213,7 @@ } }, { - "id": 8170, + "id": 8180, "properties": { "has_bottle_0": "false", "has_bottle_1": "false", @@ -27215,7 +27222,7 @@ }, { "default": true, - "id": 8171, + "id": 8181, "properties": { "has_bottle_0": "false", "has_bottle_1": "false", @@ -27242,21 +27249,21 @@ }, "states": [ { - "id": 12143, + "id": 12153, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12144, + "id": 12154, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12145, + "id": 12155, "properties": { "type": "bottom", "waterlogged": "true" @@ -27264,21 +27271,21 @@ }, { "default": true, - "id": 12146, + "id": 12156, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12147, + "id": 12157, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12148, + "id": 12158, "properties": { "type": "double", "waterlogged": "false" @@ -27318,98 +27325,98 @@ ] }, "states": [ - { - "id": 7390, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7391, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7392, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7393, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7394, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7395, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7396, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7397, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7398, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7399, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 7400, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7401, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7402, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7403, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7404, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7405, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7406, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7407, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7408, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7409, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7410, "properties": { "facing": "north", "half": "bottom", @@ -27419,100 +27426,10 @@ }, { "default": true, - "id": 7401, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7402, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7403, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7404, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7405, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7406, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7407, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7408, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7409, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7410, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 7411, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -27520,8 +27437,8 @@ { "id": 7412, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -27529,8 +27446,8 @@ { "id": 7413, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -27538,8 +27455,8 @@ { "id": 7414, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -27547,8 +27464,8 @@ { "id": 7415, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -27556,8 +27473,8 @@ { "id": 7416, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -27565,8 +27482,8 @@ { "id": 7417, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -27574,8 +27491,8 @@ { "id": 7418, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -27583,8 +27500,8 @@ { "id": 7419, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -27593,7 +27510,7 @@ "id": 7420, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -27602,7 +27519,7 @@ "id": 7421, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -27611,7 +27528,7 @@ "id": 7422, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -27620,7 +27537,7 @@ "id": 7423, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -27629,7 +27546,7 @@ "id": 7424, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -27638,7 +27555,7 @@ "id": 7425, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -27647,7 +27564,7 @@ "id": 7426, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -27656,7 +27573,7 @@ "id": 7427, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -27665,7 +27582,7 @@ "id": 7428, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -27674,7 +27591,7 @@ "id": 7429, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -27682,8 +27599,8 @@ { "id": 7430, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -27691,8 +27608,8 @@ { "id": 7431, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -27700,8 +27617,8 @@ { "id": 7432, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -27709,8 +27626,8 @@ { "id": 7433, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -27718,8 +27635,8 @@ { "id": 7434, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -27727,8 +27644,8 @@ { "id": 7435, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -27736,8 +27653,8 @@ { "id": 7436, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -27745,8 +27662,8 @@ { "id": 7437, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -27754,8 +27671,8 @@ { "id": 7438, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -27763,8 +27680,8 @@ { "id": 7439, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -27773,7 +27690,7 @@ "id": 7440, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -27782,7 +27699,7 @@ "id": 7441, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -27791,7 +27708,7 @@ "id": 7442, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -27800,7 +27717,7 @@ "id": 7443, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -27809,7 +27726,7 @@ "id": 7444, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -27818,7 +27735,7 @@ "id": 7445, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -27827,7 +27744,7 @@ "id": 7446, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -27836,7 +27753,7 @@ "id": 7447, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -27845,7 +27762,7 @@ "id": 7448, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -27854,7 +27771,7 @@ "id": 7449, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -27862,8 +27779,8 @@ { "id": 7450, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -27871,8 +27788,8 @@ { "id": 7451, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -27880,8 +27797,8 @@ { "id": 7452, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -27889,8 +27806,8 @@ { "id": 7453, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -27898,8 +27815,8 @@ { "id": 7454, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -27907,8 +27824,8 @@ { "id": 7455, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -27916,8 +27833,8 @@ { "id": 7456, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -27925,8 +27842,8 @@ { "id": 7457, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -27934,8 +27851,8 @@ { "id": 7458, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -27943,8 +27860,8 @@ { "id": 7459, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -27953,7 +27870,7 @@ "id": 7460, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -27962,7 +27879,7 @@ "id": 7461, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -27971,7 +27888,7 @@ "id": 7462, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -27980,7 +27897,7 @@ "id": 7463, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -27989,7 +27906,7 @@ "id": 7464, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -27998,7 +27915,7 @@ "id": 7465, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -28007,7 +27924,7 @@ "id": 7466, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -28016,7 +27933,7 @@ "id": 7467, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -28025,13 +27942,103 @@ "id": 7468, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 7469, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7470, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7471, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7472, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7473, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7474, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7475, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7476, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7477, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7478, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7479, "properties": { "facing": "east", "half": "bottom", @@ -28078,7 +28085,7 @@ }, "states": [ { - "id": 15173, + "id": 15183, "properties": { "east": "none", "north": "none", @@ -28089,7 +28096,7 @@ } }, { - "id": 15174, + "id": 15184, "properties": { "east": "none", "north": "none", @@ -28100,7 +28107,7 @@ } }, { - "id": 15175, + "id": 15185, "properties": { "east": "none", "north": "none", @@ -28112,124 +28119,14 @@ }, { "default": true, - "id": 15176, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15177, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15178, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15179, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15180, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15181, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15182, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15183, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15184, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15185, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { "id": 15186, "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -28237,10 +28134,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -28248,10 +28145,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -28259,10 +28156,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -28270,10 +28167,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -28281,10 +28178,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -28292,10 +28189,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -28303,10 +28200,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -28314,10 +28211,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -28326,9 +28223,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -28337,9 +28234,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -28347,10 +28244,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -28358,10 +28255,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -28369,10 +28266,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -28380,10 +28277,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -28391,10 +28288,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -28402,10 +28299,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -28413,10 +28310,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -28424,10 +28321,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -28435,10 +28332,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -28446,10 +28343,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -28458,9 +28355,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -28469,130 +28366,130 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 15209, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 15210, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 15211, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 15212, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15213, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 15214, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15215, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15216, - "properties": { - "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 15217, + "id": 15215, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 15218, + "id": 15216, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 15217, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15218, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 15219, "properties": { "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -28601,9 +28498,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -28611,10 +28508,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -28622,10 +28519,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -28633,10 +28530,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -28644,10 +28541,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -28655,10 +28552,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -28666,10 +28563,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -28677,10 +28574,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -28688,10 +28585,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -28699,10 +28596,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -28710,10 +28607,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -28722,9 +28619,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -28733,9 +28630,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -28743,10 +28640,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -28754,10 +28651,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -28765,10 +28662,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -28776,10 +28673,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -28787,10 +28684,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -28798,10 +28695,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -28809,10 +28706,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -28820,10 +28717,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -28831,10 +28728,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -28842,10 +28739,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -28854,9 +28751,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -28865,130 +28762,130 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 15245, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 15246, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 15247, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 15248, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15249, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 15250, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15251, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15252, - "properties": { - "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 15253, + "id": 15251, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 15254, + "id": 15252, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 15253, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15254, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 15255, "properties": { "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -28997,9 +28894,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -29007,10 +28904,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -29018,10 +28915,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -29029,10 +28926,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -29040,10 +28937,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -29051,10 +28948,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -29062,10 +28959,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -29073,10 +28970,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -29084,10 +28981,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -29095,10 +28992,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -29106,10 +29003,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -29118,9 +29015,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -29129,9 +29026,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -29139,10 +29036,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -29150,10 +29047,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -29161,10 +29058,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -29172,10 +29069,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -29183,10 +29080,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -29194,10 +29091,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -29205,10 +29102,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -29216,10 +29113,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -29227,10 +29124,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -29238,14 +29135,124 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15279, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15280, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15281, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15282, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15283, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15284, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15285, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15286, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15287, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15288, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15289, "properties": { "east": "none", "north": "tall", @@ -29256,7 +29263,7 @@ } }, { - "id": 15280, + "id": 15290, "properties": { "east": "none", "north": "tall", @@ -29266,125 +29273,15 @@ "west": "tall" } }, - { - "id": 15281, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15282, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15283, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15284, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15285, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15286, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15287, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15288, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15289, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15290, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 15291, "properties": { "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -29393,9 +29290,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -29403,10 +29300,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -29414,10 +29311,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -29425,10 +29322,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -29436,10 +29333,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -29447,10 +29344,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -29458,10 +29355,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -29469,10 +29366,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -29480,10 +29377,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -29491,10 +29388,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -29502,10 +29399,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -29514,9 +29411,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -29525,9 +29422,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -29535,10 +29432,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -29546,10 +29443,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -29557,10 +29454,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -29568,10 +29465,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -29579,10 +29476,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -29590,10 +29487,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -29601,10 +29498,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -29612,10 +29509,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -29623,10 +29520,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -29634,10 +29531,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -29646,9 +29543,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -29657,130 +29554,130 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 15317, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 15318, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 15319, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 15320, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15321, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 15322, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15323, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15324, - "properties": { - "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 15325, + "id": 15323, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 15326, + "id": 15324, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 15325, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15326, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 15327, "properties": { "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -29789,9 +29686,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -29799,10 +29696,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -29810,10 +29707,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -29821,10 +29718,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -29832,10 +29729,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -29843,10 +29740,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -29854,10 +29751,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -29865,10 +29762,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -29876,10 +29773,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -29887,10 +29784,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -29898,10 +29795,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -29910,9 +29807,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -29921,9 +29818,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -29931,10 +29828,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -29942,10 +29839,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -29953,10 +29850,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -29964,10 +29861,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -29975,10 +29872,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -29986,10 +29883,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -29997,10 +29894,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -30008,10 +29905,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -30019,10 +29916,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -30030,10 +29927,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -30042,9 +29939,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -30053,130 +29950,130 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 15353, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 15354, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 15355, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 15356, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15357, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 15358, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15359, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15360, - "properties": { - "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 15361, + "id": 15359, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 15362, + "id": 15360, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 15361, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15362, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 15363, "properties": { "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -30185,9 +30082,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -30195,10 +30092,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -30206,10 +30103,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -30217,10 +30114,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -30228,10 +30125,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -30239,10 +30136,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -30250,10 +30147,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -30261,10 +30158,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -30272,10 +30169,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -30283,10 +30180,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -30294,10 +30191,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -30306,9 +30203,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -30317,9 +30214,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -30327,10 +30224,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -30338,10 +30235,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -30349,10 +30246,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -30360,10 +30257,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -30371,10 +30268,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -30382,10 +30279,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -30393,10 +30290,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -30404,10 +30301,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -30415,10 +30312,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -30426,14 +30323,124 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15387, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15388, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15389, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15390, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15391, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15392, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15393, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15394, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15395, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15396, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15397, "properties": { "east": "low", "north": "tall", @@ -30444,7 +30451,7 @@ } }, { - "id": 15388, + "id": 15398, "properties": { "east": "low", "north": "tall", @@ -30454,125 +30461,15 @@ "west": "tall" } }, - { - "id": 15389, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15390, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15391, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15392, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15393, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15394, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15395, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15396, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15397, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15398, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 15399, "properties": { "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -30581,9 +30478,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -30591,10 +30488,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -30602,10 +30499,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -30613,10 +30510,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -30624,10 +30521,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -30635,10 +30532,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -30646,10 +30543,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -30657,10 +30554,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -30668,10 +30565,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -30679,10 +30576,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -30690,10 +30587,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -30702,9 +30599,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -30713,9 +30610,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -30723,10 +30620,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -30734,10 +30631,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -30745,10 +30642,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -30756,10 +30653,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -30767,10 +30664,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -30778,10 +30675,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -30789,10 +30686,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -30800,10 +30697,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -30811,10 +30708,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -30822,14 +30719,124 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15423, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15424, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15425, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15426, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15427, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15428, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15429, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15430, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15431, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15432, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15433, "properties": { "east": "tall", "north": "none", @@ -30840,7 +30847,7 @@ } }, { - "id": 15424, + "id": 15434, "properties": { "east": "tall", "north": "none", @@ -30850,125 +30857,15 @@ "west": "tall" } }, - { - "id": 15425, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15426, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15427, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15428, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15429, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15430, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15431, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15432, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15433, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15434, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 15435, "properties": { "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -30977,9 +30874,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -30987,10 +30884,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -30998,10 +30895,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -31009,10 +30906,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -31020,10 +30917,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -31031,10 +30928,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -31042,10 +30939,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -31053,10 +30950,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -31064,10 +30961,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -31075,10 +30972,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -31086,10 +30983,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -31098,9 +30995,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -31109,9 +31006,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -31119,10 +31016,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -31130,10 +31027,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -31141,10 +31038,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -31152,10 +31049,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -31163,10 +31060,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -31174,10 +31071,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -31185,10 +31082,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -31196,10 +31093,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -31207,10 +31104,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -31218,14 +31115,124 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15459, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15460, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15461, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15462, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15463, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15464, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15465, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15466, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15467, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15468, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15469, "properties": { "east": "tall", "north": "low", @@ -31236,7 +31243,7 @@ } }, { - "id": 15460, + "id": 15470, "properties": { "east": "tall", "north": "low", @@ -31246,125 +31253,15 @@ "west": "tall" } }, - { - "id": 15461, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15462, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15463, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15464, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15465, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15466, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15467, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15468, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15469, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15470, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 15471, "properties": { "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -31373,9 +31270,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -31383,10 +31280,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -31394,10 +31291,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -31405,10 +31302,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -31416,10 +31313,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -31427,10 +31324,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -31438,10 +31335,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -31449,10 +31346,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -31460,10 +31357,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -31471,10 +31368,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -31482,14 +31379,124 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15483, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15484, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15485, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15486, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15487, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15488, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15489, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15490, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15491, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15492, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15493, "properties": { "east": "tall", "north": "tall", @@ -31500,7 +31507,7 @@ } }, { - "id": 15484, + "id": 15494, "properties": { "east": "tall", "north": "tall", @@ -31510,118 +31517,118 @@ "west": "tall" } }, - { - "id": 15485, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15486, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15487, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15488, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15489, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15490, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15491, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15492, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15493, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15494, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 15495, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15496, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15497, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15498, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15499, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15500, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15501, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15502, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15503, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15504, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15505, "properties": { "east": "tall", "north": "tall", @@ -31632,7 +31639,7 @@ } }, { - "id": 15496, + "id": 15506, "properties": { "east": "tall", "north": "tall", @@ -31652,7 +31659,7 @@ "states": [ { "default": true, - "id": 2136 + "id": 2139 } ] }, @@ -31685,97 +31692,97 @@ "states": [ { "default": true, - "id": 11830, + "id": 11840, "properties": { "rotation": "0" } }, { - "id": 11831, + "id": 11841, "properties": { "rotation": "1" } }, { - "id": 11832, + "id": 11842, "properties": { "rotation": "2" } }, { - "id": 11833, + "id": 11843, "properties": { "rotation": "3" } }, { - "id": 11834, + "id": 11844, "properties": { "rotation": "4" } }, { - "id": 11835, + "id": 11845, "properties": { "rotation": "5" } }, { - "id": 11836, + "id": 11846, "properties": { "rotation": "6" } }, { - "id": 11837, + "id": 11847, "properties": { "rotation": "7" } }, { - "id": 11838, + "id": 11848, "properties": { "rotation": "8" } }, { - "id": 11839, + "id": 11849, "properties": { "rotation": "9" } }, { - "id": 11840, + "id": 11850, "properties": { "rotation": "10" } }, { - "id": 11841, + "id": 11851, "properties": { "rotation": "11" } }, { - "id": 11842, + "id": 11852, "properties": { "rotation": "12" } }, { - "id": 11843, + "id": 11853, "properties": { "rotation": "13" } }, { - "id": 11844, + "id": 11854, "properties": { "rotation": "14" } }, { - "id": 11845, + "id": 11855, "properties": { "rotation": "15" } @@ -31959,7 +31966,7 @@ }, "states": [ { - "id": 21946, + "id": 21961, "properties": { "candles": "1", "lit": "true", @@ -31967,7 +31974,7 @@ } }, { - "id": 21947, + "id": 21962, "properties": { "candles": "1", "lit": "true", @@ -31975,7 +31982,7 @@ } }, { - "id": 21948, + "id": 21963, "properties": { "candles": "1", "lit": "false", @@ -31984,7 +31991,7 @@ }, { "default": true, - "id": 21949, + "id": 21964, "properties": { "candles": "1", "lit": "false", @@ -31992,7 +31999,7 @@ } }, { - "id": 21950, + "id": 21965, "properties": { "candles": "2", "lit": "true", @@ -32000,7 +32007,7 @@ } }, { - "id": 21951, + "id": 21966, "properties": { "candles": "2", "lit": "true", @@ -32008,7 +32015,7 @@ } }, { - "id": 21952, + "id": 21967, "properties": { "candles": "2", "lit": "false", @@ -32016,7 +32023,7 @@ } }, { - "id": 21953, + "id": 21968, "properties": { "candles": "2", "lit": "false", @@ -32024,7 +32031,7 @@ } }, { - "id": 21954, + "id": 21969, "properties": { "candles": "3", "lit": "true", @@ -32032,7 +32039,7 @@ } }, { - "id": 21955, + "id": 21970, "properties": { "candles": "3", "lit": "true", @@ -32040,7 +32047,7 @@ } }, { - "id": 21956, + "id": 21971, "properties": { "candles": "3", "lit": "false", @@ -32048,7 +32055,7 @@ } }, { - "id": 21957, + "id": 21972, "properties": { "candles": "3", "lit": "false", @@ -32056,7 +32063,7 @@ } }, { - "id": 21958, + "id": 21973, "properties": { "candles": "4", "lit": "true", @@ -32064,7 +32071,7 @@ } }, { - "id": 21959, + "id": 21974, "properties": { "candles": "4", "lit": "true", @@ -32072,7 +32079,7 @@ } }, { - "id": 21960, + "id": 21975, "properties": { "candles": "4", "lit": "false", @@ -32080,7 +32087,7 @@ } }, { - "id": 21961, + "id": 21976, "properties": { "candles": "4", "lit": "false", @@ -32103,14 +32110,14 @@ }, "states": [ { - "id": 22036, + "id": 22051, "properties": { "lit": "true" } }, { "default": true, - "id": 22037, + "id": 22052, "properties": { "lit": "false" } @@ -32126,7 +32133,7 @@ "states": [ { "default": true, - "id": 11619 + "id": 11629 } ] }, @@ -32138,7 +32145,7 @@ "states": [ { "default": true, - "id": 13753 + "id": 13763 } ] }, @@ -32151,7 +32158,7 @@ "states": [ { "default": true, - "id": 13769 + "id": 13779 } ] }, @@ -32171,25 +32178,25 @@ "states": [ { "default": true, - "id": 13725, + "id": 13735, "properties": { "facing": "north" } }, { - "id": 13726, + "id": 13736, "properties": { "facing": "south" } }, { - "id": 13727, + "id": 13737, "properties": { "facing": "west" } }, { - "id": 13728, + "id": 13738, "properties": { "facing": "east" } @@ -32205,7 +32212,7 @@ "states": [ { "default": true, - "id": 2132 + "id": 2135 } ] }, @@ -32243,123 +32250,13 @@ "states": [ { "default": true, - "id": 6782, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6783, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6784, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6785, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6786, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6787, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6788, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6789, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6790, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6791, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { "id": 6792, "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -32368,9 +32265,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, @@ -32379,9 +32276,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "true" } }, @@ -32390,9 +32287,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "false" } }, @@ -32401,9 +32298,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", - "up": "false", + "up": "true", "west": "true" } }, @@ -32412,9 +32309,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", - "up": "false", + "up": "true", "west": "false" } }, @@ -32422,10 +32319,10 @@ "id": 6798, "properties": { "down": "true", - "east": "false", + "east": "true", "north": "true", - "south": "true", - "up": "true", + "south": "false", + "up": "false", "west": "true" } }, @@ -32433,10 +32330,10 @@ "id": 6799, "properties": { "down": "true", - "east": "false", + "east": "true", "north": "true", - "south": "true", - "up": "true", + "south": "false", + "up": "false", "west": "false" } }, @@ -32444,10 +32341,10 @@ "id": 6800, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -32455,10 +32352,10 @@ "id": 6801, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, @@ -32466,10 +32363,10 @@ "id": 6802, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "west": "true" } }, @@ -32477,10 +32374,10 @@ "id": 6803, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "west": "false" } }, @@ -32488,10 +32385,10 @@ "id": 6804, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", - "up": "false", + "up": "true", "west": "true" } }, @@ -32499,10 +32396,10 @@ "id": 6805, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", - "up": "false", + "up": "true", "west": "false" } }, @@ -32510,10 +32407,10 @@ "id": 6806, "properties": { "down": "true", - "east": "false", + "east": "true", "north": "false", - "south": "true", - "up": "true", + "south": "false", + "up": "false", "west": "true" } }, @@ -32521,10 +32418,10 @@ "id": 6807, "properties": { "down": "true", - "east": "false", + "east": "true", "north": "false", - "south": "true", - "up": "true", + "south": "false", + "up": "false", "west": "false" } }, @@ -32533,9 +32430,9 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -32544,9 +32441,9 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, @@ -32555,9 +32452,9 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "true" } }, @@ -32566,14 +32463,124 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "false" } }, { "id": 6812, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6813, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6814, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6815, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6816, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6817, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6818, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6819, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6820, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6821, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6822, "properties": { "down": "true", "east": "false", @@ -32584,7 +32591,7 @@ } }, { - "id": 6813, + "id": 6823, "properties": { "down": "true", "east": "false", @@ -32594,124 +32601,14 @@ "west": "false" } }, - { - "id": 6814, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6815, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6816, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6817, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6818, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6819, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6820, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6821, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6822, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6823, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, { "id": 6824, "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -32720,9 +32617,9 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, @@ -32731,9 +32628,9 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "true" } }, @@ -32742,14 +32639,124 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "false" } }, { "id": 6828, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6829, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6830, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6831, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6832, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6833, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6834, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6835, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6836, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6837, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6838, "properties": { "down": "false", "east": "true", @@ -32760,7 +32767,7 @@ } }, { - "id": 6829, + "id": 6839, "properties": { "down": "false", "east": "true", @@ -32770,124 +32777,14 @@ "west": "false" } }, - { - "id": 6830, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6831, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6832, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6833, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6834, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6835, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6836, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6837, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6838, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6839, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, { "id": 6840, "properties": { "down": "false", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -32896,14 +32793,124 @@ "properties": { "down": "false", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, { "id": 6842, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6843, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6844, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6845, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6846, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6847, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6848, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6849, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6850, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6851, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6852, "properties": { "down": "false", "east": "false", @@ -32914,7 +32921,7 @@ } }, { - "id": 6843, + "id": 6853, "properties": { "down": "false", "east": "false", @@ -32925,7 +32932,7 @@ } }, { - "id": 6844, + "id": 6854, "properties": { "down": "false", "east": "false", @@ -32936,7 +32943,7 @@ } }, { - "id": 6845, + "id": 6855, "properties": { "down": "false", "east": "false", @@ -32966,38 +32973,38 @@ }, "states": [ { - "id": 13653, + "id": 13663, "properties": { "facing": "north" } }, { - "id": 13654, + "id": 13664, "properties": { "facing": "east" } }, { - "id": 13655, + "id": 13665, "properties": { "facing": "south" } }, { - "id": 13656, + "id": 13666, "properties": { "facing": "west" } }, { "default": true, - "id": 13657, + "id": 13667, "properties": { "facing": "up" } }, { - "id": 13658, + "id": 13668, "properties": { "facing": "down" } @@ -33013,7 +33020,7 @@ "states": [ { "default": true, - "id": 6126 + "id": 6136 } ] }, @@ -33046,113 +33053,13 @@ ] }, "states": [ - { - "id": 10555, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10556, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10557, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10558, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10559, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10560, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10561, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10562, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10563, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10564, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10565, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -33160,9 +33067,9 @@ "id": 10566, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -33170,9 +33077,9 @@ "id": 10567, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -33180,14 +33087,114 @@ "id": 10568, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 10569, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10570, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10571, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10572, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10573, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10574, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10575, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10576, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10577, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10578, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10579, "properties": { "east": "true", "north": "false", @@ -33197,7 +33204,7 @@ } }, { - "id": 10570, + "id": 10580, "properties": { "east": "true", "north": "false", @@ -33206,118 +33213,118 @@ "west": "false" } }, - { - "id": 10571, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10572, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10573, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10574, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10575, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10576, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10577, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10578, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10579, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10580, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10581, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 10582, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10583, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10584, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10585, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10586, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10587, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10588, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10589, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10590, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10591, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10592, "properties": { "east": "false", "north": "false", @@ -33327,7 +33334,7 @@ } }, { - "id": 10583, + "id": 10593, "properties": { "east": "false", "north": "false", @@ -33337,7 +33344,7 @@ } }, { - "id": 10584, + "id": 10594, "properties": { "east": "false", "north": "false", @@ -33347,7 +33354,7 @@ } }, { - "id": 10585, + "id": 10595, "properties": { "east": "false", "north": "false", @@ -33358,7 +33365,7 @@ }, { "default": true, - "id": 10586, + "id": 10596, "properties": { "east": "false", "north": "false", @@ -33371,13 +33378,13 @@ }, "minecraft:brown_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 10167 + "id": 10177 } ] }, @@ -33398,25 +33405,25 @@ "states": [ { "default": true, - "id": 11942, + "id": 11952, "properties": { "facing": "north" } }, { - "id": 11943, + "id": 11953, "properties": { "facing": "south" } }, { - "id": 11944, + "id": 11954, "properties": { "facing": "west" } }, { - "id": 11945, + "id": 11955, "properties": { "facing": "east" } @@ -33431,7 +33438,7 @@ "states": [ { "default": true, - "id": 2102 + "id": 2105 } ] }, @@ -33449,13 +33456,13 @@ "states": [ { "default": true, - "id": 13973, + "id": 13983, "properties": { "drag": "true" } }, { - "id": 13974, + "id": 13984, "properties": { "drag": "false" } @@ -33477,13 +33484,13 @@ "states": [ { "default": true, - "id": 13840, + "id": 13850, "properties": { "waterlogged": "true" } }, { - "id": 13841, + "id": 13851, "properties": { "waterlogged": "false" } @@ -33499,7 +33506,7 @@ "states": [ { "default": true, - "id": 13823 + "id": 13833 } ] }, @@ -33518,13 +33525,13 @@ "states": [ { "default": true, - "id": 13860, + "id": 13870, "properties": { "waterlogged": "true" } }, { - "id": 13861, + "id": 13871, "properties": { "waterlogged": "false" } @@ -33552,56 +33559,56 @@ "states": [ { "default": true, - "id": 13922, + "id": 13932, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 13923, + "id": 13933, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 13924, + "id": 13934, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 13925, + "id": 13935, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 13926, + "id": 13936, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 13927, + "id": 13937, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 13928, + "id": 13938, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 13929, + "id": 13939, "properties": { "facing": "east", "waterlogged": "false" @@ -33617,7 +33624,19 @@ "states": [ { "default": true, - "id": 22045 + "id": 22060 + } + ] + }, + "minecraft:bush": { + "definition": { + "type": "minecraft:bush", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2051 } ] }, @@ -33649,103 +33668,115 @@ "states": [ { "default": true, - "id": 5951, + "id": 5960, "properties": { "age": "0" } }, { - "id": 5952, + "id": 5961, "properties": { "age": "1" } }, { - "id": 5953, + "id": 5962, "properties": { "age": "2" } }, { - "id": 5954, + "id": 5963, "properties": { "age": "3" } }, { - "id": 5955, + "id": 5964, "properties": { "age": "4" } }, { - "id": 5956, + "id": 5965, "properties": { "age": "5" } }, { - "id": 5957, + "id": 5966, "properties": { "age": "6" } }, { - "id": 5958, + "id": 5967, "properties": { "age": "7" } }, { - "id": 5959, + "id": 5968, "properties": { "age": "8" } }, { - "id": 5960, + "id": 5969, "properties": { "age": "9" } }, { - "id": 5961, + "id": 5970, "properties": { "age": "10" } }, { - "id": 5962, + "id": 5971, "properties": { "age": "11" } }, { - "id": 5963, + "id": 5972, "properties": { "age": "12" } }, { - "id": 5964, + "id": 5973, "properties": { "age": "13" } }, { - "id": 5965, + "id": 5974, "properties": { "age": "14" } }, { - "id": 5966, + "id": 5975, "properties": { "age": "15" } } ] }, + "minecraft:cactus_flower": { + "definition": { + "type": "minecraft:cactus_flower", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5976 + } + ] + }, "minecraft:cake": { "definition": { "type": "minecraft:cake", @@ -33765,43 +33796,43 @@ "states": [ { "default": true, - "id": 6043, + "id": 6053, "properties": { "bites": "0" } }, { - "id": 6044, + "id": 6054, "properties": { "bites": "1" } }, { - "id": 6045, + "id": 6055, "properties": { "bites": "2" } }, { - "id": 6046, + "id": 6056, "properties": { "bites": "3" } }, { - "id": 6047, + "id": 6057, "properties": { "bites": "4" } }, { - "id": 6048, + "id": 6058, "properties": { "bites": "5" } }, { - "id": 6049, + "id": 6059, "properties": { "bites": "6" } @@ -33816,7 +33847,7 @@ "states": [ { "default": true, - "id": 23329 + "id": 23344 } ] }, @@ -33862,7 +33893,7 @@ }, "states": [ { - "id": 23428, + "id": 23443, "properties": { "facing": "north", "power": "0", @@ -33872,844 +33903,844 @@ }, { "default": true, - "id": 23429, - "properties": { - "facing": "north", - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23430, - "properties": { - "facing": "north", - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23431, - "properties": { - "facing": "north", - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 23432, - "properties": { - "facing": "north", - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 23433, - "properties": { - "facing": "north", - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 23434, - "properties": { - "facing": "north", - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23435, - "properties": { - "facing": "north", - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23436, - "properties": { - "facing": "north", - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23437, - "properties": { - "facing": "north", - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 23438, - "properties": { - "facing": "north", - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 23439, - "properties": { - "facing": "north", - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 23440, - "properties": { - "facing": "north", - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23441, - "properties": { - "facing": "north", - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23442, - "properties": { - "facing": "north", - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23443, - "properties": { - "facing": "north", - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { "id": 23444, "properties": { "facing": "north", - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23445, "properties": { "facing": "north", - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23446, "properties": { "facing": "north", - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23447, "properties": { "facing": "north", - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23448, "properties": { "facing": "north", - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23449, "properties": { "facing": "north", - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23450, "properties": { "facing": "north", - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23451, "properties": { "facing": "north", - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23452, "properties": { "facing": "north", - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23453, "properties": { "facing": "north", - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23454, "properties": { "facing": "north", - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23455, "properties": { "facing": "north", - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23456, "properties": { "facing": "north", - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23457, "properties": { "facing": "north", - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23458, "properties": { "facing": "north", - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23459, "properties": { "facing": "north", - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23460, "properties": { "facing": "north", - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23461, "properties": { "facing": "north", - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23462, "properties": { "facing": "north", - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23463, "properties": { "facing": "north", - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23464, "properties": { "facing": "north", - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23465, "properties": { "facing": "north", - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23466, "properties": { "facing": "north", - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23467, "properties": { "facing": "north", - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23468, "properties": { "facing": "north", - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23469, "properties": { "facing": "north", - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23470, "properties": { "facing": "north", - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23471, "properties": { "facing": "north", - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23472, "properties": { "facing": "north", - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23473, "properties": { "facing": "north", - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23474, "properties": { "facing": "north", - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23475, "properties": { "facing": "north", - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23476, "properties": { "facing": "north", - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23477, "properties": { "facing": "north", - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23478, "properties": { "facing": "north", - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23479, "properties": { "facing": "north", - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23480, "properties": { "facing": "north", - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23481, "properties": { "facing": "north", - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23482, "properties": { "facing": "north", - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23483, "properties": { "facing": "north", - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23484, "properties": { "facing": "north", - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23485, "properties": { "facing": "north", - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23486, "properties": { "facing": "north", - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23487, "properties": { "facing": "north", - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23488, "properties": { "facing": "north", - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23489, "properties": { "facing": "north", - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23490, "properties": { "facing": "north", - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23491, "properties": { "facing": "north", - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23492, "properties": { "facing": "north", - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23493, "properties": { "facing": "north", - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23494, "properties": { "facing": "north", - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23495, "properties": { "facing": "north", - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23496, "properties": { "facing": "north", - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23497, "properties": { "facing": "north", - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23498, "properties": { "facing": "north", - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23499, "properties": { "facing": "north", - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23500, "properties": { "facing": "north", - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23501, "properties": { "facing": "north", - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23502, "properties": { "facing": "north", - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23503, "properties": { "facing": "north", - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23504, "properties": { "facing": "north", - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23505, "properties": { "facing": "north", - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23506, "properties": { "facing": "north", - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23507, "properties": { "facing": "north", - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23508, "properties": { "facing": "north", - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23509, "properties": { "facing": "north", - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23510, "properties": { "facing": "north", - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23511, "properties": { "facing": "north", - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23512, "properties": { "facing": "north", - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23513, "properties": { "facing": "north", - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23514, "properties": { "facing": "north", - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23515, "properties": { "facing": "north", - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23516, "properties": { "facing": "north", - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23517, "properties": { "facing": "north", - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23518, "properties": { "facing": "north", - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23519, "properties": { "facing": "north", - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23520, "properties": { "facing": "north", - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23521, "properties": { "facing": "north", - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23522, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23523, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23524, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23525, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23526, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23527, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23528, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23529, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23530, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23531, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23532, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23533, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23534, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23535, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23536, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23537, "properties": { "facing": "north", "power": "15", @@ -34718,7 +34749,7 @@ } }, { - "id": 23523, + "id": 23538, "properties": { "facing": "north", "power": "15", @@ -34726,854 +34757,854 @@ "waterlogged": "false" } }, - { - "id": 23524, - "properties": { - "facing": "south", - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23525, - "properties": { - "facing": "south", - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23526, - "properties": { - "facing": "south", - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23527, - "properties": { - "facing": "south", - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 23528, - "properties": { - "facing": "south", - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 23529, - "properties": { - "facing": "south", - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 23530, - "properties": { - "facing": "south", - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23531, - "properties": { - "facing": "south", - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23532, - "properties": { - "facing": "south", - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23533, - "properties": { - "facing": "south", - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 23534, - "properties": { - "facing": "south", - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 23535, - "properties": { - "facing": "south", - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 23536, - "properties": { - "facing": "south", - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23537, - "properties": { - "facing": "south", - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23538, - "properties": { - "facing": "south", - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, { "id": 23539, "properties": { "facing": "south", - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23540, "properties": { "facing": "south", - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23541, "properties": { "facing": "south", - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23542, "properties": { "facing": "south", - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23543, "properties": { "facing": "south", - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23544, "properties": { "facing": "south", - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23545, "properties": { "facing": "south", - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23546, "properties": { "facing": "south", - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23547, "properties": { "facing": "south", - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23548, "properties": { "facing": "south", - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23549, "properties": { "facing": "south", - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23550, "properties": { "facing": "south", - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23551, "properties": { "facing": "south", - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23552, "properties": { "facing": "south", - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23553, "properties": { "facing": "south", - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23554, "properties": { "facing": "south", - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23555, "properties": { "facing": "south", - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23556, "properties": { "facing": "south", - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23557, "properties": { "facing": "south", - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23558, "properties": { "facing": "south", - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23559, "properties": { "facing": "south", - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23560, "properties": { "facing": "south", - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23561, "properties": { "facing": "south", - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23562, "properties": { "facing": "south", - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23563, "properties": { "facing": "south", - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23564, "properties": { "facing": "south", - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23565, "properties": { "facing": "south", - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23566, "properties": { "facing": "south", - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23567, "properties": { "facing": "south", - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23568, "properties": { "facing": "south", - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23569, "properties": { "facing": "south", - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23570, "properties": { "facing": "south", - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23571, "properties": { "facing": "south", - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23572, "properties": { "facing": "south", - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23573, "properties": { "facing": "south", - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23574, "properties": { "facing": "south", - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23575, "properties": { "facing": "south", - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23576, "properties": { "facing": "south", - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23577, "properties": { "facing": "south", - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23578, "properties": { "facing": "south", - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23579, "properties": { "facing": "south", - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23580, "properties": { "facing": "south", - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23581, "properties": { "facing": "south", - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23582, "properties": { "facing": "south", - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23583, "properties": { "facing": "south", - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23584, "properties": { "facing": "south", - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23585, "properties": { "facing": "south", - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23586, "properties": { "facing": "south", - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23587, "properties": { "facing": "south", - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23588, "properties": { "facing": "south", - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23589, "properties": { "facing": "south", - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23590, "properties": { "facing": "south", - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23591, "properties": { "facing": "south", - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23592, "properties": { "facing": "south", - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23593, "properties": { "facing": "south", - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23594, "properties": { "facing": "south", - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23595, "properties": { "facing": "south", - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23596, "properties": { "facing": "south", - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23597, "properties": { "facing": "south", - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23598, "properties": { "facing": "south", - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23599, "properties": { "facing": "south", - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23600, "properties": { "facing": "south", - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23601, "properties": { "facing": "south", - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23602, "properties": { "facing": "south", - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23603, "properties": { "facing": "south", - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23604, "properties": { "facing": "south", - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23605, "properties": { "facing": "south", - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23606, "properties": { "facing": "south", - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23607, "properties": { "facing": "south", - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23608, "properties": { "facing": "south", - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23609, "properties": { "facing": "south", - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23610, "properties": { "facing": "south", - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23611, "properties": { "facing": "south", - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23612, "properties": { "facing": "south", - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23613, "properties": { "facing": "south", - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23614, "properties": { "facing": "south", - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23615, "properties": { "facing": "south", - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23616, "properties": { "facing": "south", - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23617, "properties": { "facing": "south", - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23618, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23619, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23620, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23621, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23622, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23623, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23624, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23625, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23626, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23627, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23628, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23629, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23630, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23631, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23632, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23633, "properties": { "facing": "south", "power": "15", @@ -35582,7 +35613,7 @@ } }, { - "id": 23619, + "id": 23634, "properties": { "facing": "south", "power": "15", @@ -35590,854 +35621,854 @@ "waterlogged": "false" } }, - { - "id": 23620, - "properties": { - "facing": "west", - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23621, - "properties": { - "facing": "west", - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23622, - "properties": { - "facing": "west", - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23623, - "properties": { - "facing": "west", - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 23624, - "properties": { - "facing": "west", - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 23625, - "properties": { - "facing": "west", - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 23626, - "properties": { - "facing": "west", - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23627, - "properties": { - "facing": "west", - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23628, - "properties": { - "facing": "west", - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23629, - "properties": { - "facing": "west", - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 23630, - "properties": { - "facing": "west", - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 23631, - "properties": { - "facing": "west", - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 23632, - "properties": { - "facing": "west", - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23633, - "properties": { - "facing": "west", - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23634, - "properties": { - "facing": "west", - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, { "id": 23635, "properties": { "facing": "west", - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23636, "properties": { "facing": "west", - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23637, "properties": { "facing": "west", - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23638, "properties": { "facing": "west", - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23639, "properties": { "facing": "west", - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23640, "properties": { "facing": "west", - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23641, "properties": { "facing": "west", - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23642, "properties": { "facing": "west", - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23643, "properties": { "facing": "west", - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23644, "properties": { "facing": "west", - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23645, "properties": { "facing": "west", - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23646, "properties": { "facing": "west", - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23647, "properties": { "facing": "west", - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23648, "properties": { "facing": "west", - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23649, "properties": { "facing": "west", - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23650, "properties": { "facing": "west", - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23651, "properties": { "facing": "west", - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23652, "properties": { "facing": "west", - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23653, "properties": { "facing": "west", - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23654, "properties": { "facing": "west", - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23655, "properties": { "facing": "west", - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23656, "properties": { "facing": "west", - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23657, "properties": { "facing": "west", - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23658, "properties": { "facing": "west", - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23659, "properties": { "facing": "west", - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23660, "properties": { "facing": "west", - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23661, "properties": { "facing": "west", - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23662, "properties": { "facing": "west", - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23663, "properties": { "facing": "west", - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23664, "properties": { "facing": "west", - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23665, "properties": { "facing": "west", - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23666, "properties": { "facing": "west", - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23667, "properties": { "facing": "west", - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23668, "properties": { "facing": "west", - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23669, "properties": { "facing": "west", - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23670, "properties": { "facing": "west", - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23671, "properties": { "facing": "west", - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23672, "properties": { "facing": "west", - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23673, "properties": { "facing": "west", - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23674, "properties": { "facing": "west", - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23675, "properties": { "facing": "west", - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23676, "properties": { "facing": "west", - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23677, "properties": { "facing": "west", - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23678, "properties": { "facing": "west", - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23679, "properties": { "facing": "west", - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23680, "properties": { "facing": "west", - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23681, "properties": { "facing": "west", - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23682, "properties": { "facing": "west", - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23683, "properties": { "facing": "west", - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23684, "properties": { "facing": "west", - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23685, "properties": { "facing": "west", - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23686, "properties": { "facing": "west", - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23687, "properties": { "facing": "west", - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23688, "properties": { "facing": "west", - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23689, "properties": { "facing": "west", - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23690, "properties": { "facing": "west", - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23691, "properties": { "facing": "west", - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23692, "properties": { "facing": "west", - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23693, "properties": { "facing": "west", - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23694, "properties": { "facing": "west", - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23695, "properties": { "facing": "west", - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23696, "properties": { "facing": "west", - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23697, "properties": { "facing": "west", - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23698, "properties": { "facing": "west", - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23699, "properties": { "facing": "west", - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23700, "properties": { "facing": "west", - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23701, "properties": { "facing": "west", - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23702, "properties": { "facing": "west", - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23703, "properties": { "facing": "west", - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23704, "properties": { "facing": "west", - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23705, "properties": { "facing": "west", - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23706, "properties": { "facing": "west", - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23707, "properties": { "facing": "west", - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23708, "properties": { "facing": "west", - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23709, "properties": { "facing": "west", - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23710, "properties": { "facing": "west", - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23711, "properties": { "facing": "west", - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23712, "properties": { "facing": "west", - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23713, "properties": { "facing": "west", - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23714, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23715, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23716, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23717, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23718, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23719, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23720, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23721, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23722, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23723, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23724, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23725, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23726, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23727, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23728, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23729, "properties": { "facing": "west", "power": "15", @@ -36446,7 +36477,7 @@ } }, { - "id": 23715, + "id": 23730, "properties": { "facing": "west", "power": "15", @@ -36454,827 +36485,827 @@ "waterlogged": "false" } }, - { - "id": 23716, - "properties": { - "facing": "east", - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23717, - "properties": { - "facing": "east", - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23718, - "properties": { - "facing": "east", - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23719, - "properties": { - "facing": "east", - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 23720, - "properties": { - "facing": "east", - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 23721, - "properties": { - "facing": "east", - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 23722, - "properties": { - "facing": "east", - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23723, - "properties": { - "facing": "east", - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23724, - "properties": { - "facing": "east", - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23725, - "properties": { - "facing": "east", - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 23726, - "properties": { - "facing": "east", - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 23727, - "properties": { - "facing": "east", - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 23728, - "properties": { - "facing": "east", - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23729, - "properties": { - "facing": "east", - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23730, - "properties": { - "facing": "east", - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, { "id": 23731, "properties": { "facing": "east", - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23732, "properties": { "facing": "east", - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23733, "properties": { "facing": "east", - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23734, "properties": { "facing": "east", - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23735, "properties": { "facing": "east", - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23736, "properties": { "facing": "east", - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23737, "properties": { "facing": "east", - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23738, "properties": { "facing": "east", - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23739, "properties": { "facing": "east", - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23740, "properties": { "facing": "east", - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23741, "properties": { "facing": "east", - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23742, "properties": { "facing": "east", - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23743, "properties": { "facing": "east", - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23744, "properties": { "facing": "east", - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23745, "properties": { "facing": "east", - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23746, "properties": { "facing": "east", - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23747, "properties": { "facing": "east", - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23748, "properties": { "facing": "east", - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23749, "properties": { "facing": "east", - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23750, "properties": { "facing": "east", - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23751, "properties": { "facing": "east", - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23752, "properties": { "facing": "east", - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23753, "properties": { "facing": "east", - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23754, "properties": { "facing": "east", - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23755, "properties": { "facing": "east", - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23756, "properties": { "facing": "east", - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23757, "properties": { "facing": "east", - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23758, "properties": { "facing": "east", - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23759, "properties": { "facing": "east", - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23760, "properties": { "facing": "east", - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23761, "properties": { "facing": "east", - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23762, "properties": { "facing": "east", - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23763, "properties": { "facing": "east", - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23764, "properties": { "facing": "east", - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23765, "properties": { "facing": "east", - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23766, "properties": { "facing": "east", - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23767, "properties": { "facing": "east", - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23768, "properties": { "facing": "east", - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23769, "properties": { "facing": "east", - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23770, "properties": { "facing": "east", - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23771, "properties": { "facing": "east", - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23772, "properties": { "facing": "east", - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23773, "properties": { "facing": "east", - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23774, "properties": { "facing": "east", - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23775, "properties": { "facing": "east", - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23776, "properties": { "facing": "east", - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23777, "properties": { "facing": "east", - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23778, "properties": { "facing": "east", - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23779, "properties": { "facing": "east", - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23780, "properties": { "facing": "east", - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23781, "properties": { "facing": "east", - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23782, "properties": { "facing": "east", - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23783, "properties": { "facing": "east", - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23784, "properties": { "facing": "east", - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23785, "properties": { "facing": "east", - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23786, "properties": { "facing": "east", - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23787, "properties": { "facing": "east", - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23788, "properties": { "facing": "east", - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23789, "properties": { "facing": "east", - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23790, "properties": { "facing": "east", - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23791, "properties": { "facing": "east", - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23792, "properties": { "facing": "east", - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23793, "properties": { "facing": "east", - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23794, "properties": { "facing": "east", - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23795, "properties": { "facing": "east", - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23796, "properties": { "facing": "east", - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23797, "properties": { "facing": "east", - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23798, "properties": { "facing": "east", - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23799, "properties": { "facing": "east", - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23800, "properties": { "facing": "east", - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23801, "properties": { "facing": "east", - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" } }, { "id": 23802, "properties": { "facing": "east", - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" } }, { "id": 23803, "properties": { "facing": "east", - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23804, "properties": { "facing": "east", - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23805, "properties": { "facing": "east", - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" } }, { "id": 23806, "properties": { "facing": "east", - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" } }, { "id": 23807, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23808, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23809, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23810, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23811, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23812, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23813, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23814, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23815, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23816, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23817, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23818, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23819, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23820, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23821, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23822, "properties": { "facing": "east", "power": "15", @@ -37283,7 +37314,7 @@ } }, { - "id": 23808, + "id": 23823, "properties": { "facing": "east", "power": "15", @@ -37292,7 +37323,7 @@ } }, { - "id": 23809, + "id": 23824, "properties": { "facing": "east", "power": "15", @@ -37301,7 +37332,7 @@ } }, { - "id": 23810, + "id": 23825, "properties": { "facing": "east", "power": "15", @@ -37310,7 +37341,7 @@ } }, { - "id": 23811, + "id": 23826, "properties": { "facing": "east", "power": "15", @@ -37349,7 +37380,7 @@ }, "states": [ { - "id": 19524, + "id": 19534, "properties": { "facing": "north", "lit": "true", @@ -37358,7 +37389,7 @@ } }, { - "id": 19525, + "id": 19535, "properties": { "facing": "north", "lit": "true", @@ -37367,7 +37398,7 @@ } }, { - "id": 19526, + "id": 19536, "properties": { "facing": "north", "lit": "true", @@ -37377,115 +37408,115 @@ }, { "default": true, - "id": 19527, - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 19528, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 19529, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 19530, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 19531, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 19532, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 19533, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 19534, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 19535, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 19536, - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { "id": 19537, "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", + "facing": "north", + "lit": "true", + "signal_fire": "false", "waterlogged": "false" } }, { "id": 19538, "properties": { - "facing": "south", + "facing": "north", "lit": "false", - "signal_fire": "false", + "signal_fire": "true", "waterlogged": "true" } }, { "id": 19539, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 19540, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 19541, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 19542, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 19543, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 19544, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 19545, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 19546, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 19547, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 19548, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 19549, "properties": { "facing": "south", "lit": "false", @@ -37493,107 +37524,107 @@ "waterlogged": "false" } }, - { - "id": 19540, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 19541, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 19542, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 19543, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 19544, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 19545, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 19546, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 19547, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 19548, - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 19549, - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, { "id": 19550, "properties": { - "facing": "east", + "facing": "west", "lit": "true", - "signal_fire": "false", + "signal_fire": "true", "waterlogged": "true" } }, { "id": 19551, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 19552, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 19553, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 19554, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 19555, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 19556, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 19557, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 19558, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 19559, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 19560, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 19561, "properties": { "facing": "east", "lit": "true", @@ -37602,7 +37633,7 @@ } }, { - "id": 19552, + "id": 19562, "properties": { "facing": "east", "lit": "false", @@ -37611,7 +37642,7 @@ } }, { - "id": 19553, + "id": 19563, "properties": { "facing": "east", "lit": "false", @@ -37620,7 +37651,7 @@ } }, { - "id": 19554, + "id": 19564, "properties": { "facing": "east", "lit": "false", @@ -37629,7 +37660,7 @@ } }, { - "id": 19555, + "id": 19565, "properties": { "facing": "east", "lit": "false", @@ -37662,7 +37693,7 @@ }, "states": [ { - "id": 21738, + "id": 21753, "properties": { "candles": "1", "lit": "true", @@ -37670,7 +37701,7 @@ } }, { - "id": 21739, + "id": 21754, "properties": { "candles": "1", "lit": "true", @@ -37678,7 +37709,7 @@ } }, { - "id": 21740, + "id": 21755, "properties": { "candles": "1", "lit": "false", @@ -37687,7 +37718,7 @@ }, { "default": true, - "id": 21741, + "id": 21756, "properties": { "candles": "1", "lit": "false", @@ -37695,7 +37726,7 @@ } }, { - "id": 21742, + "id": 21757, "properties": { "candles": "2", "lit": "true", @@ -37703,7 +37734,7 @@ } }, { - "id": 21743, + "id": 21758, "properties": { "candles": "2", "lit": "true", @@ -37711,7 +37742,7 @@ } }, { - "id": 21744, + "id": 21759, "properties": { "candles": "2", "lit": "false", @@ -37719,7 +37750,7 @@ } }, { - "id": 21745, + "id": 21760, "properties": { "candles": "2", "lit": "false", @@ -37727,7 +37758,7 @@ } }, { - "id": 21746, + "id": 21761, "properties": { "candles": "3", "lit": "true", @@ -37735,7 +37766,7 @@ } }, { - "id": 21747, + "id": 21762, "properties": { "candles": "3", "lit": "true", @@ -37743,7 +37774,7 @@ } }, { - "id": 21748, + "id": 21763, "properties": { "candles": "3", "lit": "false", @@ -37751,7 +37782,7 @@ } }, { - "id": 21749, + "id": 21764, "properties": { "candles": "3", "lit": "false", @@ -37759,7 +37790,7 @@ } }, { - "id": 21750, + "id": 21765, "properties": { "candles": "4", "lit": "true", @@ -37767,7 +37798,7 @@ } }, { - "id": 21751, + "id": 21766, "properties": { "candles": "4", "lit": "true", @@ -37775,7 +37806,7 @@ } }, { - "id": 21752, + "id": 21767, "properties": { "candles": "4", "lit": "false", @@ -37783,7 +37814,7 @@ } }, { - "id": 21753, + "id": 21768, "properties": { "candles": "4", "lit": "false", @@ -37806,14 +37837,14 @@ }, "states": [ { - "id": 22010, + "id": 22025, "properties": { "lit": "true" } }, { "default": true, - "id": 22011, + "id": 22026, "properties": { "lit": "false" } @@ -37840,49 +37871,49 @@ "states": [ { "default": true, - "id": 9370, + "id": 9380, "properties": { "age": "0" } }, { - "id": 9371, + "id": 9381, "properties": { "age": "1" } }, { - "id": 9372, + "id": 9382, "properties": { "age": "2" } }, { - "id": 9373, + "id": 9383, "properties": { "age": "3" } }, { - "id": 9374, + "id": 9384, "properties": { "age": "4" } }, { - "id": 9375, + "id": 9385, "properties": { "age": "5" } }, { - "id": 9376, + "id": 9386, "properties": { "age": "6" } }, { - "id": 9377, + "id": 9387, "properties": { "age": "7" } @@ -37897,7 +37928,7 @@ "states": [ { "default": true, - "id": 19449 + "id": 19459 } ] }, @@ -37917,25 +37948,25 @@ "states": [ { "default": true, - "id": 6035, + "id": 6045, "properties": { "facing": "north" } }, { - "id": 6036, + "id": 6046, "properties": { "facing": "south" } }, { - "id": 6037, + "id": 6047, "properties": { "facing": "west" } }, { - "id": 6038, + "id": 6048, "properties": { "facing": "east" } @@ -37950,7 +37981,7 @@ "states": [ { "default": true, - "id": 8172 + "id": 8182 } ] }, @@ -37962,7 +37993,7 @@ "states": [ { "default": true, - "id": 13972 + "id": 13982 } ] }, @@ -38007,7 +38038,7 @@ }, "states": [ { - "id": 25782, + "id": 25797, "properties": { "age": "0", "berries": "true" @@ -38015,357 +38046,357 @@ }, { "default": true, - "id": 25783, + "id": 25798, "properties": { "age": "0", "berries": "false" } }, - { - "id": 25784, - "properties": { - "age": "1", - "berries": "true" - } - }, - { - "id": 25785, - "properties": { - "age": "1", - "berries": "false" - } - }, - { - "id": 25786, - "properties": { - "age": "2", - "berries": "true" - } - }, - { - "id": 25787, - "properties": { - "age": "2", - "berries": "false" - } - }, - { - "id": 25788, - "properties": { - "age": "3", - "berries": "true" - } - }, - { - "id": 25789, - "properties": { - "age": "3", - "berries": "false" - } - }, - { - "id": 25790, - "properties": { - "age": "4", - "berries": "true" - } - }, - { - "id": 25791, - "properties": { - "age": "4", - "berries": "false" - } - }, - { - "id": 25792, - "properties": { - "age": "5", - "berries": "true" - } - }, - { - "id": 25793, - "properties": { - "age": "5", - "berries": "false" - } - }, - { - "id": 25794, - "properties": { - "age": "6", - "berries": "true" - } - }, - { - "id": 25795, - "properties": { - "age": "6", - "berries": "false" - } - }, - { - "id": 25796, - "properties": { - "age": "7", - "berries": "true" - } - }, - { - "id": 25797, - "properties": { - "age": "7", - "berries": "false" - } - }, - { - "id": 25798, - "properties": { - "age": "8", - "berries": "true" - } - }, { "id": 25799, "properties": { - "age": "8", - "berries": "false" + "age": "1", + "berries": "true" } }, { "id": 25800, "properties": { - "age": "9", - "berries": "true" + "age": "1", + "berries": "false" } }, { "id": 25801, "properties": { - "age": "9", - "berries": "false" + "age": "2", + "berries": "true" } }, { "id": 25802, "properties": { - "age": "10", - "berries": "true" + "age": "2", + "berries": "false" } }, { "id": 25803, "properties": { - "age": "10", - "berries": "false" + "age": "3", + "berries": "true" } }, { "id": 25804, "properties": { - "age": "11", - "berries": "true" + "age": "3", + "berries": "false" } }, { "id": 25805, "properties": { - "age": "11", - "berries": "false" + "age": "4", + "berries": "true" } }, { "id": 25806, "properties": { - "age": "12", - "berries": "true" + "age": "4", + "berries": "false" } }, { "id": 25807, "properties": { - "age": "12", - "berries": "false" + "age": "5", + "berries": "true" } }, { "id": 25808, "properties": { - "age": "13", - "berries": "true" + "age": "5", + "berries": "false" } }, { "id": 25809, "properties": { - "age": "13", - "berries": "false" + "age": "6", + "berries": "true" } }, { "id": 25810, "properties": { - "age": "14", - "berries": "true" + "age": "6", + "berries": "false" } }, { "id": 25811, "properties": { - "age": "14", - "berries": "false" + "age": "7", + "berries": "true" } }, { "id": 25812, "properties": { - "age": "15", - "berries": "true" + "age": "7", + "berries": "false" } }, { "id": 25813, "properties": { - "age": "15", - "berries": "false" + "age": "8", + "berries": "true" } }, { "id": 25814, "properties": { - "age": "16", - "berries": "true" + "age": "8", + "berries": "false" } }, { "id": 25815, "properties": { - "age": "16", - "berries": "false" + "age": "9", + "berries": "true" } }, { "id": 25816, "properties": { - "age": "17", - "berries": "true" + "age": "9", + "berries": "false" } }, { "id": 25817, "properties": { - "age": "17", - "berries": "false" + "age": "10", + "berries": "true" } }, { "id": 25818, "properties": { - "age": "18", - "berries": "true" + "age": "10", + "berries": "false" } }, { "id": 25819, "properties": { - "age": "18", - "berries": "false" + "age": "11", + "berries": "true" } }, { "id": 25820, "properties": { - "age": "19", - "berries": "true" + "age": "11", + "berries": "false" } }, { "id": 25821, "properties": { - "age": "19", - "berries": "false" + "age": "12", + "berries": "true" } }, { "id": 25822, "properties": { - "age": "20", - "berries": "true" + "age": "12", + "berries": "false" } }, { "id": 25823, "properties": { - "age": "20", - "berries": "false" + "age": "13", + "berries": "true" } }, { "id": 25824, "properties": { - "age": "21", - "berries": "true" + "age": "13", + "berries": "false" } }, { "id": 25825, "properties": { - "age": "21", - "berries": "false" + "age": "14", + "berries": "true" } }, { "id": 25826, "properties": { - "age": "22", - "berries": "true" + "age": "14", + "berries": "false" } }, { "id": 25827, "properties": { - "age": "22", - "berries": "false" + "age": "15", + "berries": "true" } }, { "id": 25828, "properties": { - "age": "23", - "berries": "true" + "age": "15", + "berries": "false" } }, { "id": 25829, + "properties": { + "age": "16", + "berries": "true" + } + }, + { + "id": 25830, + "properties": { + "age": "16", + "berries": "false" + } + }, + { + "id": 25831, + "properties": { + "age": "17", + "berries": "true" + } + }, + { + "id": 25832, + "properties": { + "age": "17", + "berries": "false" + } + }, + { + "id": 25833, + "properties": { + "age": "18", + "berries": "true" + } + }, + { + "id": 25834, + "properties": { + "age": "18", + "berries": "false" + } + }, + { + "id": 25835, + "properties": { + "age": "19", + "berries": "true" + } + }, + { + "id": 25836, + "properties": { + "age": "19", + "berries": "false" + } + }, + { + "id": 25837, + "properties": { + "age": "20", + "berries": "true" + } + }, + { + "id": 25838, + "properties": { + "age": "20", + "berries": "false" + } + }, + { + "id": 25839, + "properties": { + "age": "21", + "berries": "true" + } + }, + { + "id": 25840, + "properties": { + "age": "21", + "berries": "false" + } + }, + { + "id": 25841, + "properties": { + "age": "22", + "berries": "true" + } + }, + { + "id": 25842, + "properties": { + "age": "22", + "berries": "false" + } + }, + { + "id": 25843, + "properties": { + "age": "23", + "berries": "true" + } + }, + { + "id": 25844, "properties": { "age": "23", "berries": "false" } }, { - "id": 25830, + "id": 25845, "properties": { "age": "24", "berries": "true" } }, { - "id": 25831, + "id": 25846, "properties": { "age": "24", "berries": "false" } }, { - "id": 25832, + "id": 25847, "properties": { "age": "25", "berries": "true" } }, { - "id": 25833, + "id": 25848, "properties": { "age": "25", "berries": "false" @@ -38386,14 +38417,14 @@ }, "states": [ { - "id": 25834, + "id": 25849, "properties": { "berries": "true" } }, { "default": true, - "id": 25835, + "id": 25850, "properties": { "berries": "false" } @@ -38418,21 +38449,21 @@ }, "states": [ { - "id": 7006, + "id": 7016, "properties": { "axis": "x", "waterlogged": "true" } }, { - "id": 7007, + "id": 7017, "properties": { "axis": "x", "waterlogged": "false" } }, { - "id": 7008, + "id": 7018, "properties": { "axis": "y", "waterlogged": "true" @@ -38440,21 +38471,21 @@ }, { "default": true, - "id": 7009, + "id": 7019, "properties": { "axis": "y", "waterlogged": "false" } }, { - "id": 7010, + "id": 7020, "properties": { "axis": "z", "waterlogged": "true" } }, { - "id": 7011, + "id": 7021, "properties": { "axis": "z", "waterlogged": "false" @@ -38484,42 +38515,42 @@ }, "states": [ { - "id": 13540, + "id": 13550, "properties": { "conditional": "true", "facing": "north" } }, { - "id": 13541, + "id": 13551, "properties": { "conditional": "true", "facing": "east" } }, { - "id": 13542, + "id": 13552, "properties": { "conditional": "true", "facing": "south" } }, { - "id": 13543, + "id": 13553, "properties": { "conditional": "true", "facing": "west" } }, { - "id": 13544, + "id": 13554, "properties": { "conditional": "true", "facing": "up" } }, { - "id": 13545, + "id": 13555, "properties": { "conditional": "true", "facing": "down" @@ -38527,42 +38558,42 @@ }, { "default": true, - "id": 13546, + "id": 13556, "properties": { "conditional": "false", "facing": "north" } }, { - "id": 13547, + "id": 13557, "properties": { "conditional": "false", "facing": "east" } }, { - "id": 13548, + "id": 13558, "properties": { "conditional": "false", "facing": "south" } }, { - "id": 13549, + "id": 13559, "properties": { "conditional": "false", "facing": "west" } }, { - "id": 13550, + "id": 13560, "properties": { "conditional": "false", "facing": "up" } }, { - "id": 13551, + "id": 13561, "properties": { "conditional": "false", "facing": "down" @@ -38596,7 +38627,7 @@ }, "states": [ { - "id": 9506, + "id": 9516, "properties": { "face": "floor", "facing": "north", @@ -38604,7 +38635,7 @@ } }, { - "id": 9507, + "id": 9517, "properties": { "face": "floor", "facing": "north", @@ -38612,7 +38643,7 @@ } }, { - "id": 9508, + "id": 9518, "properties": { "face": "floor", "facing": "south", @@ -38620,7 +38651,7 @@ } }, { - "id": 9509, + "id": 9519, "properties": { "face": "floor", "facing": "south", @@ -38628,7 +38659,7 @@ } }, { - "id": 9510, + "id": 9520, "properties": { "face": "floor", "facing": "west", @@ -38636,7 +38667,7 @@ } }, { - "id": 9511, + "id": 9521, "properties": { "face": "floor", "facing": "west", @@ -38644,7 +38675,7 @@ } }, { - "id": 9512, + "id": 9522, "properties": { "face": "floor", "facing": "east", @@ -38652,7 +38683,7 @@ } }, { - "id": 9513, + "id": 9523, "properties": { "face": "floor", "facing": "east", @@ -38660,7 +38691,7 @@ } }, { - "id": 9514, + "id": 9524, "properties": { "face": "wall", "facing": "north", @@ -38669,95 +38700,95 @@ }, { "default": true, - "id": 9515, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9516, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 9517, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 9518, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 9519, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 9520, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 9521, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 9522, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 9523, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9524, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { "id": 9525, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "north", "powered": "false" } }, { "id": 9526, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9527, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9528, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 9529, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 9530, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 9531, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 9532, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 9533, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 9534, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9535, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9536, "properties": { "face": "ceiling", "facing": "west", @@ -38765,7 +38796,7 @@ } }, { - "id": 9527, + "id": 9537, "properties": { "face": "ceiling", "facing": "west", @@ -38773,7 +38804,7 @@ } }, { - "id": 9528, + "id": 9538, "properties": { "face": "ceiling", "facing": "east", @@ -38781,7 +38812,7 @@ } }, { - "id": 9529, + "id": 9539, "properties": { "face": "ceiling", "facing": "east", @@ -38821,108 +38852,108 @@ ] }, "states": [ - { - "id": 13027, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13028, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13029, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13030, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13031, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13032, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13033, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13034, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13035, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13036, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 13037, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13038, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13039, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13040, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13041, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13042, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13043, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13044, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13045, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13046, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13047, "properties": { "facing": "north", "half": "lower", @@ -38933,152 +38964,52 @@ }, { "default": true, - "id": 13038, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13039, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13040, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13041, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13042, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13043, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13044, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13045, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13046, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13047, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { "id": 13048, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 13049, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 13050, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 13051, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "true" } }, { "id": 13052, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "false" } }, @@ -39086,9 +39017,9 @@ "id": 13053, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -39096,9 +39027,9 @@ "id": 13054, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -39106,9 +39037,9 @@ "id": 13055, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -39116,14 +39047,114 @@ "id": 13056, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 13057, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13058, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13059, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13060, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13061, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13062, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13063, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13064, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13065, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13066, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13067, "properties": { "facing": "south", "half": "lower", @@ -39133,7 +39164,7 @@ } }, { - "id": 13058, + "id": 13068, "properties": { "facing": "south", "half": "lower", @@ -39142,113 +39173,13 @@ "powered": "false" } }, - { - "id": 13059, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13060, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13061, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13062, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13063, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13064, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13065, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13066, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13067, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13068, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 13069, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -39256,9 +39187,9 @@ "id": 13070, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -39266,9 +39197,9 @@ "id": 13071, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -39276,14 +39207,114 @@ "id": 13072, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 13073, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13074, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13075, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13076, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13077, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13078, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13079, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13080, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13081, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13082, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13083, "properties": { "facing": "west", "half": "lower", @@ -39293,7 +39324,7 @@ } }, { - "id": 13074, + "id": 13084, "properties": { "facing": "west", "half": "lower", @@ -39302,113 +39333,13 @@ "powered": "false" } }, - { - "id": 13075, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13076, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13077, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13078, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13079, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13080, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13081, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13082, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13083, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13084, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 13085, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -39416,14 +39347,114 @@ "id": 13086, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 13087, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13088, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13089, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13090, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13091, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13092, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13093, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13094, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13095, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13096, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13097, "properties": { "facing": "east", "half": "lower", @@ -39433,7 +39464,7 @@ } }, { - "id": 13088, + "id": 13098, "properties": { "facing": "east", "half": "lower", @@ -39443,7 +39474,7 @@ } }, { - "id": 13089, + "id": 13099, "properties": { "facing": "east", "half": "lower", @@ -39453,7 +39484,7 @@ } }, { - "id": 13090, + "id": 13100, "properties": { "facing": "east", "half": "lower", @@ -39492,113 +39523,13 @@ ] }, "states": [ - { - "id": 12611, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12612, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12613, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12614, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12615, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12616, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12617, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12618, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12619, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12620, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 12621, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -39606,9 +39537,9 @@ "id": 12622, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -39616,9 +39547,9 @@ "id": 12623, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -39626,14 +39557,114 @@ "id": 12624, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 12625, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12626, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12627, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12628, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12629, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12630, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12631, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12632, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12633, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12634, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12635, "properties": { "east": "true", "north": "false", @@ -39643,7 +39674,7 @@ } }, { - "id": 12626, + "id": 12636, "properties": { "east": "true", "north": "false", @@ -39652,118 +39683,118 @@ "west": "false" } }, - { - "id": 12627, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12628, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12629, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12630, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12631, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12632, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12633, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12634, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12635, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12636, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 12637, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 12638, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12639, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12640, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12641, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12642, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12643, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12644, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12645, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12646, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12647, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12648, "properties": { "east": "false", "north": "false", @@ -39773,7 +39804,7 @@ } }, { - "id": 12639, + "id": 12649, "properties": { "east": "false", "north": "false", @@ -39783,7 +39814,7 @@ } }, { - "id": 12640, + "id": 12650, "properties": { "east": "false", "north": "false", @@ -39793,7 +39824,7 @@ } }, { - "id": 12641, + "id": 12651, "properties": { "east": "false", "north": "false", @@ -39804,7 +39835,7 @@ }, { "default": true, - "id": 12642, + "id": 12652, "properties": { "east": "false", "north": "false", @@ -39843,7 +39874,7 @@ }, "states": [ { - "id": 12323, + "id": 12333, "properties": { "facing": "north", "in_wall": "true", @@ -39852,7 +39883,7 @@ } }, { - "id": 12324, + "id": 12334, "properties": { "facing": "north", "in_wall": "true", @@ -39861,7 +39892,7 @@ } }, { - "id": 12325, + "id": 12335, "properties": { "facing": "north", "in_wall": "true", @@ -39870,7 +39901,7 @@ } }, { - "id": 12326, + "id": 12336, "properties": { "facing": "north", "in_wall": "true", @@ -39879,7 +39910,7 @@ } }, { - "id": 12327, + "id": 12337, "properties": { "facing": "north", "in_wall": "false", @@ -39888,7 +39919,7 @@ } }, { - "id": 12328, + "id": 12338, "properties": { "facing": "north", "in_wall": "false", @@ -39897,7 +39928,7 @@ } }, { - "id": 12329, + "id": 12339, "properties": { "facing": "north", "in_wall": "false", @@ -39907,7 +39938,7 @@ }, { "default": true, - "id": 12330, + "id": 12340, "properties": { "facing": "north", "in_wall": "false", @@ -39915,143 +39946,143 @@ "powered": "false" } }, - { - "id": 12331, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 12332, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 12333, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 12334, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 12335, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 12336, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 12337, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 12338, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 12339, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 12340, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, { "id": 12341, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12342, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 12343, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "true" } }, { "id": 12344, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "false" } }, { "id": 12345, "properties": { - "facing": "west", + "facing": "south", "in_wall": "false", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12346, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 12347, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 12348, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 12349, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 12350, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 12351, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 12352, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 12353, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 12354, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 12355, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 12356, "properties": { "facing": "west", "in_wall": "false", @@ -40060,7 +40091,7 @@ } }, { - "id": 12347, + "id": 12357, "properties": { "facing": "east", "in_wall": "true", @@ -40069,7 +40100,7 @@ } }, { - "id": 12348, + "id": 12358, "properties": { "facing": "east", "in_wall": "true", @@ -40078,7 +40109,7 @@ } }, { - "id": 12349, + "id": 12359, "properties": { "facing": "east", "in_wall": "true", @@ -40087,7 +40118,7 @@ } }, { - "id": 12350, + "id": 12360, "properties": { "facing": "east", "in_wall": "true", @@ -40096,7 +40127,7 @@ } }, { - "id": 12351, + "id": 12361, "properties": { "facing": "east", "in_wall": "false", @@ -40105,7 +40136,7 @@ } }, { - "id": 12352, + "id": 12362, "properties": { "facing": "east", "in_wall": "false", @@ -40114,7 +40145,7 @@ } }, { - "id": 12353, + "id": 12363, "properties": { "facing": "east", "in_wall": "false", @@ -40123,7 +40154,7 @@ } }, { - "id": 12354, + "id": 12364, "properties": { "facing": "east", "in_wall": "false", @@ -40168,240 +40199,240 @@ ] }, "states": [ - { - "id": 5185, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5186, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5187, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5188, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5189, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5190, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5191, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5192, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5193, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, { "id": 5194, "properties": { "attached": "true", - "rotation": "4", - "waterlogged": "false" + "rotation": "0", + "waterlogged": "true" } }, { "id": 5195, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "true" + "rotation": "0", + "waterlogged": "false" } }, { "id": 5196, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5197, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5198, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5199, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5200, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5201, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5202, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5203, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5204, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5205, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5206, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5207, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5208, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5209, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5210, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5211, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5212, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "false" + "rotation": "9", + "waterlogged": "true" } }, { "id": 5213, "properties": { "attached": "true", - "rotation": "14", - "waterlogged": "true" + "rotation": "9", + "waterlogged": "false" } }, { "id": 5214, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5215, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5216, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5217, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5218, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5219, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5220, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5221, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5222, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5223, "properties": { "attached": "true", "rotation": "14", @@ -40409,7 +40440,7 @@ } }, { - "id": 5215, + "id": 5224, "properties": { "attached": "true", "rotation": "15", @@ -40417,7 +40448,7 @@ } }, { - "id": 5216, + "id": 5225, "properties": { "attached": "true", "rotation": "15", @@ -40425,7 +40456,7 @@ } }, { - "id": 5217, + "id": 5226, "properties": { "attached": "false", "rotation": "0", @@ -40434,215 +40465,215 @@ }, { "default": true, - "id": 5218, + "id": 5227, "properties": { "attached": "false", "rotation": "0", "waterlogged": "false" } }, - { - "id": 5219, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5220, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5221, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5222, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5223, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5224, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5225, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5226, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5227, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 5228, "properties": { "attached": "false", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5229, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5230, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5231, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5232, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5233, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5234, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5235, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5236, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5237, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5238, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5239, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5240, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5241, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5242, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5243, "properties": { "attached": "false", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5244, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5245, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5246, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5247, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5248, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5249, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5250, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5251, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5252, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5253, "properties": { "attached": "false", "rotation": "13", @@ -40650,7 +40681,7 @@ } }, { - "id": 5245, + "id": 5254, "properties": { "attached": "false", "rotation": "14", @@ -40658,7 +40689,7 @@ } }, { - "id": 5246, + "id": 5255, "properties": { "attached": "false", "rotation": "14", @@ -40666,7 +40697,7 @@ } }, { - "id": 5247, + "id": 5256, "properties": { "attached": "false", "rotation": "15", @@ -40674,7 +40705,7 @@ } }, { - "id": 5248, + "id": 5257, "properties": { "attached": "false", "rotation": "15", @@ -40685,11 +40716,11 @@ }, "minecraft:cherry_leaves": { "definition": { - "type": "minecraft:particle_leaves", - "chance": 10, - "particle": { + "type": "minecraft:untinted_particle_leaves", + "leaf_particle": { "type": "minecraft:cherry_leaves" }, + "leaf_particle_chance": 0.1, "properties": {} }, "properties": { @@ -40999,14 +41030,14 @@ }, "states": [ { - "id": 5893, + "id": 5902, "properties": { "powered": "true" } }, { "default": true, - "id": 5894, + "id": 5903, "properties": { "powered": "false" } @@ -41073,7 +41104,7 @@ }, "states": [ { - "id": 4485, + "id": 4494, "properties": { "rotation": "0", "waterlogged": "true" @@ -41081,217 +41112,217 @@ }, { "default": true, - "id": 4486, + "id": 4495, "properties": { "rotation": "0", "waterlogged": "false" } }, - { - "id": 4487, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4488, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4489, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4490, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4491, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4492, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4493, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4494, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4495, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 4496, "properties": { - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 4497, "properties": { - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 4498, "properties": { - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 4499, "properties": { - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 4500, "properties": { - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 4501, "properties": { - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 4502, "properties": { - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 4503, "properties": { - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 4504, "properties": { - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 4505, "properties": { - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 4506, "properties": { - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 4507, "properties": { - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 4508, "properties": { - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 4509, "properties": { - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 4510, "properties": { - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 4511, "properties": { - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 4512, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4513, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4514, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4515, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4516, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4517, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4518, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4519, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4520, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4521, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 4513, + "id": 4522, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 4514, + "id": 4523, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 4515, + "id": 4524, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 4516, + "id": 4525, "properties": { "rotation": "15", "waterlogged": "false" @@ -41317,21 +41348,21 @@ }, "states": [ { - "id": 12071, + "id": 12081, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12072, + "id": 12082, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12073, + "id": 12083, "properties": { "type": "bottom", "waterlogged": "true" @@ -41339,21 +41370,21 @@ }, { "default": true, - "id": 12074, + "id": 12084, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12075, + "id": 12085, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12076, + "id": 12086, "properties": { "type": "double", "waterlogged": "false" @@ -41393,98 +41424,98 @@ ] }, "states": [ - { - "id": 10763, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10764, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10765, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10766, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10767, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10768, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10769, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10770, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10771, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10772, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 10773, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10774, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10775, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10776, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10777, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10778, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10779, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10780, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10781, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10782, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10783, "properties": { "facing": "north", "half": "bottom", @@ -41494,100 +41525,10 @@ }, { "default": true, - "id": 10774, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10775, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10776, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10777, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10778, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10779, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10780, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10781, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10782, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10783, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 10784, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -41595,8 +41536,8 @@ { "id": 10785, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -41604,8 +41545,8 @@ { "id": 10786, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -41613,8 +41554,8 @@ { "id": 10787, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -41622,8 +41563,8 @@ { "id": 10788, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -41631,8 +41572,8 @@ { "id": 10789, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -41640,8 +41581,8 @@ { "id": 10790, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -41649,8 +41590,8 @@ { "id": 10791, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -41658,8 +41599,8 @@ { "id": 10792, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -41668,7 +41609,7 @@ "id": 10793, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -41677,7 +41618,7 @@ "id": 10794, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -41686,7 +41627,7 @@ "id": 10795, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -41695,7 +41636,7 @@ "id": 10796, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -41704,7 +41645,7 @@ "id": 10797, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -41713,7 +41654,7 @@ "id": 10798, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -41722,7 +41663,7 @@ "id": 10799, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -41731,7 +41672,7 @@ "id": 10800, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -41740,7 +41681,7 @@ "id": 10801, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -41749,7 +41690,7 @@ "id": 10802, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -41757,8 +41698,8 @@ { "id": 10803, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -41766,8 +41707,8 @@ { "id": 10804, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -41775,8 +41716,8 @@ { "id": 10805, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -41784,8 +41725,8 @@ { "id": 10806, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -41793,8 +41734,8 @@ { "id": 10807, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -41802,8 +41743,8 @@ { "id": 10808, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -41811,8 +41752,8 @@ { "id": 10809, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -41820,8 +41761,8 @@ { "id": 10810, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -41829,8 +41770,8 @@ { "id": 10811, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -41838,8 +41779,8 @@ { "id": 10812, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -41848,7 +41789,7 @@ "id": 10813, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -41857,7 +41798,7 @@ "id": 10814, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -41866,7 +41807,7 @@ "id": 10815, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -41875,7 +41816,7 @@ "id": 10816, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -41884,7 +41825,7 @@ "id": 10817, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -41893,7 +41834,7 @@ "id": 10818, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -41902,7 +41843,7 @@ "id": 10819, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -41911,7 +41852,7 @@ "id": 10820, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -41920,7 +41861,7 @@ "id": 10821, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -41929,7 +41870,7 @@ "id": 10822, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -41937,8 +41878,8 @@ { "id": 10823, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -41946,8 +41887,8 @@ { "id": 10824, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -41955,8 +41896,8 @@ { "id": 10825, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -41964,8 +41905,8 @@ { "id": 10826, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -41973,8 +41914,8 @@ { "id": 10827, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -41982,8 +41923,8 @@ { "id": 10828, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -41991,8 +41932,8 @@ { "id": 10829, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -42000,8 +41941,8 @@ { "id": 10830, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -42009,8 +41950,8 @@ { "id": 10831, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -42018,8 +41959,8 @@ { "id": 10832, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -42028,7 +41969,7 @@ "id": 10833, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -42037,7 +41978,7 @@ "id": 10834, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -42046,7 +41987,7 @@ "id": 10835, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -42055,7 +41996,7 @@ "id": 10836, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -42064,7 +42005,7 @@ "id": 10837, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -42073,7 +42014,7 @@ "id": 10838, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -42082,7 +42023,7 @@ "id": 10839, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -42091,7 +42032,7 @@ "id": 10840, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -42100,13 +42041,103 @@ "id": 10841, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 10842, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10843, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10844, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10845, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10846, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10847, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10848, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10849, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10850, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10851, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10852, "properties": { "facing": "east", "half": "bottom", @@ -42147,118 +42178,118 @@ ] }, "states": [ - { - "id": 6450, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6451, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6452, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6453, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6454, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6455, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6456, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6457, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6458, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6459, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6460, "properties": { "facing": "north", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, { "id": 6461, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6462, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6463, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6464, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6465, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6466, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6467, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6468, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6469, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6470, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6471, "properties": { "facing": "north", "half": "bottom", @@ -42268,7 +42299,7 @@ } }, { - "id": 6462, + "id": 6472, "properties": { "facing": "north", "half": "bottom", @@ -42278,7 +42309,7 @@ } }, { - "id": 6463, + "id": 6473, "properties": { "facing": "north", "half": "bottom", @@ -42288,7 +42319,7 @@ } }, { - "id": 6464, + "id": 6474, "properties": { "facing": "north", "half": "bottom", @@ -42299,7 +42330,7 @@ }, { "default": true, - "id": 6465, + "id": 6475, "properties": { "facing": "north", "half": "bottom", @@ -42308,113 +42339,13 @@ "waterlogged": "false" } }, - { - "id": 6466, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6467, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6468, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6469, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6470, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6471, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6472, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6473, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6474, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6475, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6476, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -42422,9 +42353,9 @@ "id": 6477, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -42432,9 +42363,9 @@ "id": 6478, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -42442,14 +42373,114 @@ "id": 6479, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6480, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6481, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6482, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6483, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6484, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6485, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6486, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6487, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6488, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6489, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6490, "properties": { "facing": "south", "half": "bottom", @@ -42459,7 +42490,7 @@ } }, { - "id": 6481, + "id": 6491, "properties": { "facing": "south", "half": "bottom", @@ -42468,113 +42499,13 @@ "waterlogged": "false" } }, - { - "id": 6482, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6483, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6484, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6485, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6486, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6487, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6488, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6489, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6490, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6491, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6492, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -42582,9 +42513,9 @@ "id": 6493, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -42592,9 +42523,9 @@ "id": 6494, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -42602,14 +42533,114 @@ "id": 6495, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6496, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6497, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6498, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6499, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6500, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6501, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6502, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6503, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6504, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6505, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6506, "properties": { "facing": "west", "half": "bottom", @@ -42619,7 +42650,7 @@ } }, { - "id": 6497, + "id": 6507, "properties": { "facing": "west", "half": "bottom", @@ -42628,113 +42659,13 @@ "waterlogged": "false" } }, - { - "id": 6498, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6499, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6500, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6501, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6502, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6503, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6504, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6505, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6506, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6507, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6508, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -42742,14 +42673,114 @@ "id": 6509, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, { "id": 6510, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6511, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6512, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6513, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6514, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6515, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6516, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6517, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6518, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6519, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6520, "properties": { "facing": "east", "half": "bottom", @@ -42759,7 +42790,7 @@ } }, { - "id": 6511, + "id": 6521, "properties": { "facing": "east", "half": "bottom", @@ -42769,7 +42800,7 @@ } }, { - "id": 6512, + "id": 6522, "properties": { "facing": "east", "half": "bottom", @@ -42779,7 +42810,7 @@ } }, { - "id": 6513, + "id": 6523, "properties": { "facing": "east", "half": "bottom", @@ -42810,7 +42841,7 @@ }, "states": [ { - "id": 5729, + "id": 5738, "properties": { "facing": "north", "waterlogged": "true" @@ -42818,49 +42849,49 @@ }, { "default": true, - "id": 5730, + "id": 5739, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5731, + "id": 5740, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5732, + "id": 5741, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5733, + "id": 5742, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5734, + "id": 5743, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5735, + "id": 5744, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5736, + "id": 5745, "properties": { "facing": "east", "waterlogged": "false" @@ -42888,7 +42919,7 @@ }, "states": [ { - "id": 4881, + "id": 4890, "properties": { "facing": "north", "waterlogged": "true" @@ -42896,49 +42927,49 @@ }, { "default": true, - "id": 4882, + "id": 4891, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 4883, + "id": 4892, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 4884, + "id": 4893, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 4885, + "id": 4894, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 4886, + "id": 4895, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 4887, + "id": 4896, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4888, + "id": 4897, "properties": { "facing": "east", "waterlogged": "false" @@ -43004,7 +43035,7 @@ }, "states": [ { - "id": 3009, + "id": 3018, "properties": { "type": "single", "facing": "north", @@ -43013,175 +43044,175 @@ }, { "default": true, - "id": 3010, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 3011, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 3012, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 3013, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 3014, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 3015, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 3016, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 3017, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 3018, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "false" - } - }, - { "id": 3019, "properties": { - "type": "right", - "facing": "south", - "waterlogged": "true" + "type": "single", + "facing": "north", + "waterlogged": "false" } }, { "id": 3020, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 3021, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 3022, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 3023, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 3024, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 3025, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 3026, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 3027, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 3028, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 3029, "properties": { "type": "right", "facing": "south", "waterlogged": "false" } }, - { - "id": 3021, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 3022, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 3023, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 3024, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 3025, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 3026, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 3027, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 3028, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 3029, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "true" - } - }, { "id": 3030, "properties": { - "type": "left", - "facing": "east", - "waterlogged": "false" + "type": "single", + "facing": "west", + "waterlogged": "true" } }, { "id": 3031, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 3032, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 3033, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 3034, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 3035, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 3036, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 3037, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 3038, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 3039, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 3040, "properties": { "type": "right", "facing": "east", @@ -43189,7 +43220,7 @@ } }, { - "id": 3032, + "id": 3041, "properties": { "type": "right", "facing": "east", @@ -43214,25 +43245,25 @@ "states": [ { "default": true, - "id": 9910, + "id": 9920, "properties": { "facing": "north" } }, { - "id": 9911, + "id": 9921, "properties": { "facing": "south" } }, { - "id": 9912, + "id": 9922, "properties": { "facing": "west" } }, { - "id": 9913, + "id": 9923, "properties": { "facing": "east" } @@ -43277,42 +43308,6 @@ ] }, "states": [ - { - "id": 2140, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2141, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2142, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, { "id": 2143, "properties": { @@ -43321,8 +43316,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "true", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -43332,9 +43327,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43344,9 +43339,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -43356,9 +43351,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43369,8 +43364,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "true", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -43379,10 +43374,10 @@ "facing": "north", "slot_0_occupied": "true", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43391,10 +43386,10 @@ "facing": "north", "slot_0_occupied": "true", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -43403,10 +43398,10 @@ "facing": "north", "slot_0_occupied": "true", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43417,8 +43412,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "false", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -43428,9 +43423,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43440,9 +43435,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -43452,9 +43447,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43465,8 +43460,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "false", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -43474,11 +43469,11 @@ "properties": { "facing": "north", "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43486,11 +43481,11 @@ "properties": { "facing": "north", "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -43498,11 +43493,11 @@ "properties": { "facing": "north", "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43513,8 +43508,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "true", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -43524,9 +43519,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43536,9 +43531,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -43548,9 +43543,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43561,8 +43556,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "true", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -43571,10 +43566,10 @@ "facing": "north", "slot_0_occupied": "true", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43583,10 +43578,10 @@ "facing": "north", "slot_0_occupied": "true", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -43595,10 +43590,10 @@ "facing": "north", "slot_0_occupied": "true", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43609,8 +43604,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "false", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -43620,9 +43615,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43632,9 +43627,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -43644,9 +43639,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43657,44 +43652,44 @@ "slot_1_occupied": "false", "slot_2_occupied": "false", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { "id": 2172, "properties": { "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { "id": 2173, "properties": { "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { "id": 2174, "properties": { "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43705,8 +43700,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "true", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -43716,9 +43711,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43728,9 +43723,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -43740,9 +43735,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43753,8 +43748,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "true", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -43763,10 +43758,10 @@ "facing": "north", "slot_0_occupied": "false", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43775,10 +43770,10 @@ "facing": "north", "slot_0_occupied": "false", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -43787,10 +43782,10 @@ "facing": "north", "slot_0_occupied": "false", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43801,8 +43796,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "false", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -43812,9 +43807,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43824,9 +43819,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -43836,9 +43831,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43849,8 +43844,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "false", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -43858,11 +43853,11 @@ "properties": { "facing": "north", "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43870,11 +43865,11 @@ "properties": { "facing": "north", "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -43882,11 +43877,11 @@ "properties": { "facing": "north", "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43897,8 +43892,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "true", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -43908,9 +43903,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43920,9 +43915,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -43932,9 +43927,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43945,8 +43940,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "true", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -43955,10 +43950,10 @@ "facing": "north", "slot_0_occupied": "false", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -43967,10 +43962,10 @@ "facing": "north", "slot_0_occupied": "false", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -43979,14 +43974,50 @@ "facing": "north", "slot_0_occupied": "false", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { "id": 2199, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2200, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2201, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2202, "properties": { "facing": "north", "slot_0_occupied": "false", @@ -43998,7 +44029,7 @@ } }, { - "id": 2200, + "id": 2203, "properties": { "facing": "north", "slot_0_occupied": "false", @@ -44010,7 +44041,7 @@ } }, { - "id": 2201, + "id": 2204, "properties": { "facing": "north", "slot_0_occupied": "false", @@ -44022,7 +44053,7 @@ } }, { - "id": 2202, + "id": 2205, "properties": { "facing": "north", "slot_0_occupied": "false", @@ -44035,7 +44066,7 @@ }, { "default": true, - "id": 2203, + "id": 2206, "properties": { "facing": "north", "slot_0_occupied": "false", @@ -44046,42 +44077,6 @@ "slot_5_occupied": "false" } }, - { - "id": 2204, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2205, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2206, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, { "id": 2207, "properties": { @@ -44090,8 +44085,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "true", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -44101,9 +44096,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44113,9 +44108,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -44125,9 +44120,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44138,8 +44133,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "true", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -44148,10 +44143,10 @@ "facing": "south", "slot_0_occupied": "true", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44160,10 +44155,10 @@ "facing": "south", "slot_0_occupied": "true", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -44172,10 +44167,10 @@ "facing": "south", "slot_0_occupied": "true", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44186,8 +44181,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "false", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -44197,9 +44192,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44209,9 +44204,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -44221,9 +44216,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44234,8 +44229,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "false", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -44243,11 +44238,11 @@ "properties": { "facing": "south", "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44255,11 +44250,11 @@ "properties": { "facing": "south", "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -44267,11 +44262,11 @@ "properties": { "facing": "south", "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44282,8 +44277,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "true", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -44293,9 +44288,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44305,9 +44300,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -44317,9 +44312,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44330,8 +44325,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "true", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -44340,10 +44335,10 @@ "facing": "south", "slot_0_occupied": "true", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44352,10 +44347,10 @@ "facing": "south", "slot_0_occupied": "true", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -44364,10 +44359,10 @@ "facing": "south", "slot_0_occupied": "true", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44378,8 +44373,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "false", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -44389,9 +44384,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44401,9 +44396,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -44413,9 +44408,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44426,44 +44421,44 @@ "slot_1_occupied": "false", "slot_2_occupied": "false", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { "id": 2236, "properties": { "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { "id": 2237, "properties": { "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { "id": 2238, "properties": { "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44474,8 +44469,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "true", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -44485,9 +44480,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44497,9 +44492,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -44509,9 +44504,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44522,8 +44517,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "true", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -44532,10 +44527,10 @@ "facing": "south", "slot_0_occupied": "false", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44544,10 +44539,10 @@ "facing": "south", "slot_0_occupied": "false", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -44556,10 +44551,10 @@ "facing": "south", "slot_0_occupied": "false", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44570,8 +44565,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "false", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -44581,9 +44576,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44593,9 +44588,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -44605,9 +44600,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44618,8 +44613,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "false", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -44627,11 +44622,11 @@ "properties": { "facing": "south", "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44639,11 +44634,11 @@ "properties": { "facing": "south", "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -44651,11 +44646,11 @@ "properties": { "facing": "south", "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44666,8 +44661,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "true", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -44677,9 +44672,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44689,9 +44684,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -44701,9 +44696,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44714,8 +44709,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "true", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -44724,10 +44719,10 @@ "facing": "south", "slot_0_occupied": "false", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44736,10 +44731,10 @@ "facing": "south", "slot_0_occupied": "false", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -44748,10 +44743,10 @@ "facing": "south", "slot_0_occupied": "false", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44762,8 +44757,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "false", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -44773,9 +44768,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "false", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44785,9 +44780,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "false", "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -44797,9 +44792,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "false", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44810,46 +44805,46 @@ "slot_1_occupied": "false", "slot_2_occupied": "false", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { "id": 2268, "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2269, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "true", "slot_5_occupied": "false" } }, { - "id": 2270, + "id": 2269, "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "false", "slot_5_occupied": "true" } }, + { + "id": 2270, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, { "id": 2271, "properties": { @@ -44858,8 +44853,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "true", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -44869,9 +44864,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44881,9 +44876,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -44893,9 +44888,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44906,8 +44901,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "true", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -44916,10 +44911,10 @@ "facing": "west", "slot_0_occupied": "true", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44928,10 +44923,10 @@ "facing": "west", "slot_0_occupied": "true", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -44940,10 +44935,10 @@ "facing": "west", "slot_0_occupied": "true", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44954,8 +44949,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "false", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -44965,9 +44960,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -44977,9 +44972,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -44989,9 +44984,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45002,8 +44997,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "false", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -45011,11 +45006,11 @@ "properties": { "facing": "west", "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45023,11 +45018,11 @@ "properties": { "facing": "west", "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -45035,11 +45030,11 @@ "properties": { "facing": "west", "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45050,8 +45045,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "true", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -45061,9 +45056,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45073,9 +45068,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -45085,9 +45080,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45098,8 +45093,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "true", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -45108,10 +45103,10 @@ "facing": "west", "slot_0_occupied": "true", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45120,10 +45115,10 @@ "facing": "west", "slot_0_occupied": "true", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -45132,10 +45127,10 @@ "facing": "west", "slot_0_occupied": "true", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45146,8 +45141,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "false", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -45157,9 +45152,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45169,9 +45164,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -45181,9 +45176,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45194,44 +45189,44 @@ "slot_1_occupied": "false", "slot_2_occupied": "false", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { "id": 2300, "properties": { "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { "id": 2301, "properties": { "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { "id": 2302, "properties": { "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45242,8 +45237,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "true", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -45253,9 +45248,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45265,9 +45260,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -45277,9 +45272,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45290,8 +45285,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "true", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -45300,10 +45295,10 @@ "facing": "west", "slot_0_occupied": "false", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45312,10 +45307,10 @@ "facing": "west", "slot_0_occupied": "false", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -45324,10 +45319,10 @@ "facing": "west", "slot_0_occupied": "false", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45338,8 +45333,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "false", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -45349,9 +45344,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45361,9 +45356,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -45373,9 +45368,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45386,8 +45381,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "false", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -45395,11 +45390,11 @@ "properties": { "facing": "west", "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45407,11 +45402,11 @@ "properties": { "facing": "west", "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -45419,11 +45414,11 @@ "properties": { "facing": "west", "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45434,8 +45429,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "true", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -45445,9 +45440,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45457,9 +45452,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -45469,9 +45464,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45482,8 +45477,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "true", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -45492,10 +45487,10 @@ "facing": "west", "slot_0_occupied": "false", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45504,10 +45499,10 @@ "facing": "west", "slot_0_occupied": "false", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -45516,10 +45511,10 @@ "facing": "west", "slot_0_occupied": "false", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45530,8 +45525,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "false", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -45541,9 +45536,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "false", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45553,9 +45548,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "false", "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -45565,9 +45560,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "false", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45578,46 +45573,46 @@ "slot_1_occupied": "false", "slot_2_occupied": "false", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { "id": 2332, "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2333, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "true", "slot_5_occupied": "false" } }, { - "id": 2334, + "id": 2333, "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "false", "slot_5_occupied": "true" } }, + { + "id": 2334, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, { "id": 2335, "properties": { @@ -45626,8 +45621,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "true", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -45637,9 +45632,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45649,9 +45644,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -45661,9 +45656,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45674,8 +45669,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "true", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -45684,10 +45679,10 @@ "facing": "east", "slot_0_occupied": "true", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45696,10 +45691,10 @@ "facing": "east", "slot_0_occupied": "true", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -45708,10 +45703,10 @@ "facing": "east", "slot_0_occupied": "true", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45722,8 +45717,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "false", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -45733,9 +45728,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45745,9 +45740,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -45757,9 +45752,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45770,8 +45765,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "false", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -45779,11 +45774,11 @@ "properties": { "facing": "east", "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45791,11 +45786,11 @@ "properties": { "facing": "east", "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -45803,11 +45798,11 @@ "properties": { "facing": "east", "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45818,8 +45813,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "true", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -45829,9 +45824,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45841,9 +45836,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -45853,9 +45848,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45866,8 +45861,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "true", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -45876,10 +45871,10 @@ "facing": "east", "slot_0_occupied": "true", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45888,10 +45883,10 @@ "facing": "east", "slot_0_occupied": "true", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -45900,10 +45895,10 @@ "facing": "east", "slot_0_occupied": "true", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45914,8 +45909,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "false", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -45925,9 +45920,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45937,9 +45932,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -45949,9 +45944,9 @@ "slot_0_occupied": "true", "slot_1_occupied": "false", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -45962,44 +45957,44 @@ "slot_1_occupied": "false", "slot_2_occupied": "false", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { "id": 2364, "properties": { "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { "id": 2365, "properties": { "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { "id": 2366, "properties": { "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -46010,8 +46005,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "true", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -46021,9 +46016,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -46033,9 +46028,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -46045,9 +46040,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -46058,8 +46053,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "true", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -46068,10 +46063,10 @@ "facing": "east", "slot_0_occupied": "false", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -46080,10 +46075,10 @@ "facing": "east", "slot_0_occupied": "false", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -46092,10 +46087,10 @@ "facing": "east", "slot_0_occupied": "false", "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -46106,8 +46101,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "false", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -46117,9 +46112,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -46129,9 +46124,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -46141,9 +46136,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "true", "slot_2_occupied": "false", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -46154,8 +46149,8 @@ "slot_1_occupied": "true", "slot_2_occupied": "false", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -46163,11 +46158,11 @@ "properties": { "facing": "east", "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -46175,11 +46170,11 @@ "properties": { "facing": "east", "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -46187,11 +46182,11 @@ "properties": { "facing": "east", "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -46202,8 +46197,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "true", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -46213,9 +46208,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -46225,9 +46220,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -46237,9 +46232,9 @@ "slot_0_occupied": "false", "slot_1_occupied": "false", "slot_2_occupied": "true", - "slot_3_occupied": "false", + "slot_3_occupied": "true", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -46250,8 +46245,8 @@ "slot_1_occupied": "false", "slot_2_occupied": "true", "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { @@ -46260,10 +46255,10 @@ "facing": "east", "slot_0_occupied": "false", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "true", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -46272,10 +46267,10 @@ "facing": "east", "slot_0_occupied": "false", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" } }, { @@ -46284,10 +46279,10 @@ "facing": "east", "slot_0_occupied": "false", "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", "slot_4_occupied": "false", - "slot_5_occupied": "true" + "slot_5_occupied": "false" } }, { @@ -46298,12 +46293,48 @@ "slot_1_occupied": "false", "slot_2_occupied": "false", "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" + "slot_4_occupied": "true", + "slot_5_occupied": "true" } }, { "id": 2392, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2393, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2394, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2395, "properties": { "facing": "east", "slot_0_occupied": "false", @@ -46315,7 +46346,7 @@ } }, { - "id": 2393, + "id": 2396, "properties": { "facing": "east", "slot_0_occupied": "false", @@ -46327,7 +46358,7 @@ } }, { - "id": 2394, + "id": 2397, "properties": { "facing": "east", "slot_0_occupied": "false", @@ -46339,7 +46370,7 @@ } }, { - "id": 2395, + "id": 2398, "properties": { "facing": "east", "slot_0_occupied": "false", @@ -46361,7 +46392,7 @@ "states": [ { "default": true, - "id": 23964 + "id": 23979 } ] }, @@ -46373,7 +46404,7 @@ "states": [ { "default": true, - "id": 27564 + "id": 27611 } ] }, @@ -46385,7 +46416,7 @@ "states": [ { "default": true, - "id": 21735 + "id": 21750 } ] }, @@ -46397,7 +46428,7 @@ "states": [ { "default": true, - "id": 20887 + "id": 20902 } ] }, @@ -46409,7 +46440,7 @@ "states": [ { "default": true, - "id": 10035 + "id": 10045 } ] }, @@ -46421,7 +46452,7 @@ "states": [ { "default": true, - "id": 11959 + "id": 11969 } ] }, @@ -46433,7 +46464,7 @@ "states": [ { "default": true, - "id": 8045 + "id": 8055 } ] }, @@ -46457,7 +46488,7 @@ "states": [ { "default": true, - "id": 6773 + "id": 6783 } ] }, @@ -46469,7 +46500,7 @@ "states": [ { "default": true, - "id": 22916 + "id": 22931 } ] }, @@ -46481,7 +46512,7 @@ "states": [ { "default": true, - "id": 23328 + "id": 23343 } ] }, @@ -46504,37 +46535,37 @@ "states": [ { "default": true, - "id": 13417, + "id": 13427, "properties": { "age": "0" } }, { - "id": 13418, + "id": 13428, "properties": { "age": "1" } }, { - "id": 13419, + "id": 13429, "properties": { "age": "2" } }, { - "id": 13420, + "id": 13430, "properties": { "age": "3" } }, { - "id": 13421, + "id": 13431, "properties": { "age": "4" } }, { - "id": 13422, + "id": 13432, "properties": { "age": "5" } @@ -46573,124 +46604,14 @@ ] }, "states": [ - { - "id": 13353, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 13354, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 13355, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 13356, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 13357, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 13358, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 13359, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 13360, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 13361, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 13362, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, { "id": 13363, "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -46699,9 +46620,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, @@ -46710,9 +46631,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "true" } }, @@ -46721,9 +46642,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "false" } }, @@ -46732,9 +46653,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", - "up": "false", + "up": "true", "west": "true" } }, @@ -46743,9 +46664,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", - "up": "false", + "up": "true", "west": "false" } }, @@ -46753,10 +46674,10 @@ "id": 13369, "properties": { "down": "true", - "east": "false", + "east": "true", "north": "true", - "south": "true", - "up": "true", + "south": "false", + "up": "false", "west": "true" } }, @@ -46764,10 +46685,10 @@ "id": 13370, "properties": { "down": "true", - "east": "false", + "east": "true", "north": "true", - "south": "true", - "up": "true", + "south": "false", + "up": "false", "west": "false" } }, @@ -46775,10 +46696,10 @@ "id": 13371, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -46786,10 +46707,10 @@ "id": 13372, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, @@ -46797,10 +46718,10 @@ "id": 13373, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "west": "true" } }, @@ -46808,10 +46729,10 @@ "id": 13374, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "west": "false" } }, @@ -46819,10 +46740,10 @@ "id": 13375, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", - "up": "false", + "up": "true", "west": "true" } }, @@ -46830,10 +46751,10 @@ "id": 13376, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", - "up": "false", + "up": "true", "west": "false" } }, @@ -46841,10 +46762,10 @@ "id": 13377, "properties": { "down": "true", - "east": "false", + "east": "true", "north": "false", - "south": "true", - "up": "true", + "south": "false", + "up": "false", "west": "true" } }, @@ -46852,10 +46773,10 @@ "id": 13378, "properties": { "down": "true", - "east": "false", + "east": "true", "north": "false", - "south": "true", - "up": "true", + "south": "false", + "up": "false", "west": "false" } }, @@ -46864,9 +46785,9 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -46875,9 +46796,9 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, @@ -46886,9 +46807,9 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "true" } }, @@ -46897,14 +46818,124 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "false" } }, { "id": 13383, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 13384, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 13385, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 13386, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 13387, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 13388, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 13389, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 13390, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 13391, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 13392, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 13393, "properties": { "down": "true", "east": "false", @@ -46915,7 +46946,7 @@ } }, { - "id": 13384, + "id": 13394, "properties": { "down": "true", "east": "false", @@ -46925,124 +46956,14 @@ "west": "false" } }, - { - "id": 13385, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 13386, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 13387, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 13388, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 13389, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 13390, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 13391, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 13392, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 13393, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 13394, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, { "id": 13395, "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -47051,9 +46972,9 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, @@ -47062,9 +46983,9 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "true" } }, @@ -47073,14 +46994,124 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "false" } }, { "id": 13399, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 13400, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 13401, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 13402, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 13403, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 13404, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 13405, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 13406, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 13407, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 13408, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 13409, "properties": { "down": "false", "east": "true", @@ -47091,7 +47122,7 @@ } }, { - "id": 13400, + "id": 13410, "properties": { "down": "false", "east": "true", @@ -47101,129 +47132,129 @@ "west": "false" } }, - { - "id": 13401, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 13402, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 13403, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 13404, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 13405, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 13406, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 13407, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 13408, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 13409, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 13410, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, { "id": 13411, "properties": { "down": "false", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, { "id": 13412, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 13413, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 13414, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 13415, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 13416, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 13417, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 13418, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 13419, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 13420, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 13421, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 13422, "properties": { "down": "false", "east": "false", @@ -47234,7 +47265,7 @@ } }, { - "id": 13413, + "id": 13423, "properties": { "down": "false", "east": "false", @@ -47245,7 +47276,7 @@ } }, { - "id": 13414, + "id": 13424, "properties": { "down": "false", "east": "false", @@ -47256,7 +47287,7 @@ } }, { - "id": 13415, + "id": 13425, "properties": { "down": "false", "east": "false", @@ -47268,7 +47299,7 @@ }, { "default": true, - "id": 13416, + "id": 13426, "properties": { "down": "false", "east": "false", @@ -47288,7 +47319,7 @@ "states": [ { "default": true, - "id": 5967 + "id": 5977 } ] }, @@ -47301,7 +47332,7 @@ "states": [ { "default": true, - "id": 27863 + "id": 27910 } ] }, @@ -47313,7 +47344,7 @@ "states": [ { "default": true, - "id": 11624 + "id": 11634 } ] }, @@ -47354,7 +47385,7 @@ "states": [ { "default": true, - "id": 25920 + "id": 25967 } ] }, @@ -47376,21 +47407,21 @@ }, "states": [ { - "id": 26001, + "id": 26048, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 26002, + "id": 26049, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 26003, + "id": 26050, "properties": { "type": "bottom", "waterlogged": "true" @@ -47398,21 +47429,21 @@ }, { "default": true, - "id": 26004, + "id": 26051, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 26005, + "id": 26052, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 26006, + "id": 26053, "properties": { "type": "double", "waterlogged": "false" @@ -47453,7 +47484,7 @@ }, "states": [ { - "id": 25921, + "id": 25968, "properties": { "facing": "north", "half": "top", @@ -47462,7 +47493,7 @@ } }, { - "id": 25922, + "id": 25969, "properties": { "facing": "north", "half": "top", @@ -47471,7 +47502,7 @@ } }, { - "id": 25923, + "id": 25970, "properties": { "facing": "north", "half": "top", @@ -47480,7 +47511,7 @@ } }, { - "id": 25924, + "id": 25971, "properties": { "facing": "north", "half": "top", @@ -47489,7 +47520,7 @@ } }, { - "id": 25925, + "id": 25972, "properties": { "facing": "north", "half": "top", @@ -47498,7 +47529,7 @@ } }, { - "id": 25926, + "id": 25973, "properties": { "facing": "north", "half": "top", @@ -47507,7 +47538,7 @@ } }, { - "id": 25927, + "id": 25974, "properties": { "facing": "north", "half": "top", @@ -47516,7 +47547,7 @@ } }, { - "id": 25928, + "id": 25975, "properties": { "facing": "north", "half": "top", @@ -47525,7 +47556,7 @@ } }, { - "id": 25929, + "id": 25976, "properties": { "facing": "north", "half": "top", @@ -47534,7 +47565,7 @@ } }, { - "id": 25930, + "id": 25977, "properties": { "facing": "north", "half": "top", @@ -47543,7 +47574,7 @@ } }, { - "id": 25931, + "id": 25978, "properties": { "facing": "north", "half": "bottom", @@ -47553,439 +47584,439 @@ }, { "default": true, - "id": 25932, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 25933, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 25934, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 25935, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 25936, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 25937, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 25938, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 25939, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 25940, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 25941, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 25942, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 25943, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 25944, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 25945, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 25946, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 25947, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 25948, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 25949, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 25950, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 25951, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 25952, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 25953, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 25954, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 25955, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 25956, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 25957, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 25958, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 25959, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 25960, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 25961, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 25962, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 25963, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 25964, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 25965, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 25966, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 25967, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 25968, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 25969, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 25970, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 25971, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 25972, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 25973, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 25974, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 25975, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 25976, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 25977, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 25978, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { "id": 25979, "properties": { - "facing": "west", + "facing": "north", "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "shape": "straight", + "waterlogged": "false" } }, { "id": 25980, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25981, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25982, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25983, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25984, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25985, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25986, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25987, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25988, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25989, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25990, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25991, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25992, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25993, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25994, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25995, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25996, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25997, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25998, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25999, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26000, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26001, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26002, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26003, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26004, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26005, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26006, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26007, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26008, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26009, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26010, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26011, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26012, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26013, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26014, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26015, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26016, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26017, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26018, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26019, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26020, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26021, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26022, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26023, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26024, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26025, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26026, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26027, "properties": { "facing": "west", "half": "bottom", @@ -47994,7 +48025,7 @@ } }, { - "id": 25981, + "id": 26028, "properties": { "facing": "east", "half": "top", @@ -48003,7 +48034,7 @@ } }, { - "id": 25982, + "id": 26029, "properties": { "facing": "east", "half": "top", @@ -48012,7 +48043,7 @@ } }, { - "id": 25983, + "id": 26030, "properties": { "facing": "east", "half": "top", @@ -48021,7 +48052,7 @@ } }, { - "id": 25984, + "id": 26031, "properties": { "facing": "east", "half": "top", @@ -48030,7 +48061,7 @@ } }, { - "id": 25985, + "id": 26032, "properties": { "facing": "east", "half": "top", @@ -48039,7 +48070,7 @@ } }, { - "id": 25986, + "id": 26033, "properties": { "facing": "east", "half": "top", @@ -48048,7 +48079,7 @@ } }, { - "id": 25987, + "id": 26034, "properties": { "facing": "east", "half": "top", @@ -48057,7 +48088,7 @@ } }, { - "id": 25988, + "id": 26035, "properties": { "facing": "east", "half": "top", @@ -48066,7 +48097,7 @@ } }, { - "id": 25989, + "id": 26036, "properties": { "facing": "east", "half": "top", @@ -48075,7 +48106,7 @@ } }, { - "id": 25990, + "id": 26037, "properties": { "facing": "east", "half": "top", @@ -48084,7 +48115,7 @@ } }, { - "id": 25991, + "id": 26038, "properties": { "facing": "east", "half": "bottom", @@ -48093,7 +48124,7 @@ } }, { - "id": 25992, + "id": 26039, "properties": { "facing": "east", "half": "bottom", @@ -48102,7 +48133,7 @@ } }, { - "id": 25993, + "id": 26040, "properties": { "facing": "east", "half": "bottom", @@ -48111,7 +48142,7 @@ } }, { - "id": 25994, + "id": 26041, "properties": { "facing": "east", "half": "bottom", @@ -48120,7 +48151,7 @@ } }, { - "id": 25995, + "id": 26042, "properties": { "facing": "east", "half": "bottom", @@ -48129,7 +48160,7 @@ } }, { - "id": 25996, + "id": 26043, "properties": { "facing": "east", "half": "bottom", @@ -48138,7 +48169,7 @@ } }, { - "id": 25997, + "id": 26044, "properties": { "facing": "east", "half": "bottom", @@ -48147,7 +48178,7 @@ } }, { - "id": 25998, + "id": 26045, "properties": { "facing": "east", "half": "bottom", @@ -48156,7 +48187,7 @@ } }, { - "id": 25999, + "id": 26046, "properties": { "facing": "east", "half": "bottom", @@ -48165,7 +48196,7 @@ } }, { - "id": 26000, + "id": 26047, "properties": { "facing": "east", "half": "bottom", @@ -48212,7 +48243,7 @@ }, "states": [ { - "id": 26007, + "id": 26054, "properties": { "east": "none", "north": "none", @@ -48223,7 +48254,7 @@ } }, { - "id": 26008, + "id": 26055, "properties": { "east": "none", "north": "none", @@ -48234,7 +48265,7 @@ } }, { - "id": 26009, + "id": 26056, "properties": { "east": "none", "north": "none", @@ -48246,1140 +48277,1140 @@ }, { "default": true, - "id": 26010, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26011, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26012, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26013, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26014, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26015, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26016, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26017, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26018, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26019, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26020, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26021, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26022, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26023, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26024, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26025, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26026, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26027, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26028, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26029, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26030, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26031, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26032, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26033, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26034, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26035, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26036, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26037, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26038, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26039, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26040, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26041, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26042, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26043, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26044, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26045, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26046, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26047, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26048, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26049, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26050, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26051, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26052, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26053, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26054, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26055, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26056, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { "id": 26057, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26058, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26059, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26060, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26061, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26062, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26063, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26064, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26065, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26066, "properties": { "east": "none", - "north": "low", + "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26067, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26068, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26069, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26070, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26071, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26072, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26073, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26074, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26075, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26076, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26077, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26078, "properties": { "east": "none", - "north": "low", + "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26079, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26080, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26081, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26082, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26083, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26084, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26085, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26086, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26087, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26088, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26089, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26090, "properties": { "east": "none", - "north": "tall", + "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26091, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26092, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26093, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26094, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26095, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26096, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26097, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26098, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26099, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26100, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26101, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26102, "properties": { "east": "none", - "north": "tall", + "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26103, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26104, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26105, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26106, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26107, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26108, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26109, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26110, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26111, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26112, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26113, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26114, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26115, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26116, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26117, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26118, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26119, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26120, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26121, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26122, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26123, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26124, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26125, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26126, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26127, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26128, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26129, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26130, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26131, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26132, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26133, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26134, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26135, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26136, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26137, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26138, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26139, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26140, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26141, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26142, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26143, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26144, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26145, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26146, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26147, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26148, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26149, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26150, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26151, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26152, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26153, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26154, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26155, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26156, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26157, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26158, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26159, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26160, "properties": { "east": "none", "north": "tall", @@ -49390,7 +49421,7 @@ } }, { - "id": 26114, + "id": 26161, "properties": { "east": "none", "north": "tall", @@ -49400,1174 +49431,1174 @@ "west": "tall" } }, - { - "id": 26115, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26116, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26117, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26118, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26119, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26120, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26121, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26122, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26123, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26124, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26125, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26126, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26127, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26128, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26129, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26130, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26131, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26132, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26133, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26134, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26135, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26136, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26137, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26138, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26139, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26140, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26141, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26142, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26143, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26144, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26145, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26146, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26147, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26148, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26149, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26150, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26151, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26152, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26153, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26154, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26155, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26156, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26157, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26158, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26159, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26160, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26161, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, { "id": 26162, "properties": { "east": "low", - "north": "low", + "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26163, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26164, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26165, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26166, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26167, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26168, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26169, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26170, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26171, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26172, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26173, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26174, "properties": { "east": "low", - "north": "low", + "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26175, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26176, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26177, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26178, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26179, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26180, "properties": { "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26181, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26182, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26183, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26184, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26185, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26186, "properties": { "east": "low", - "north": "low", + "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26187, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26188, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26189, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26190, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26191, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26192, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26193, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26194, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26195, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26196, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26197, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26198, "properties": { "east": "low", - "north": "tall", + "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26199, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26200, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26201, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26202, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26203, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26204, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26205, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26206, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26207, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26208, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26209, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26210, "properties": { "east": "low", - "north": "tall", + "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26211, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26212, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26213, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26214, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26215, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26216, "properties": { "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26217, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26218, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26219, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26220, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26221, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26222, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26223, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26224, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26225, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26226, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26227, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26228, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26229, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26230, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26231, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26232, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26233, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26234, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26235, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26236, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26237, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26238, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26239, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26240, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26241, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26242, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26243, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26244, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26245, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26246, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26247, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26248, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26249, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26250, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26251, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26252, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26253, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26254, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26255, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26256, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26257, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26258, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26259, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26260, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26261, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26262, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26263, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26264, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26265, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26266, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26267, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26268, "properties": { "east": "low", "north": "tall", @@ -50578,7 +50609,7 @@ } }, { - "id": 26222, + "id": 26269, "properties": { "east": "low", "north": "tall", @@ -50588,789 +50619,789 @@ "west": "tall" } }, - { - "id": 26223, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26224, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26225, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26226, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26227, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26228, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26229, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26230, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26231, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26232, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26233, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26234, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26235, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26236, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26237, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26238, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26239, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26240, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26241, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26242, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26243, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26244, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26245, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26246, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26247, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26248, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26249, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26250, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26251, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26252, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26253, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26254, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26255, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26256, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26257, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26258, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26259, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26260, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26261, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26262, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26263, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26264, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26265, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26266, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26267, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26268, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26269, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, { "id": 26270, "properties": { "east": "tall", - "north": "low", + "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26271, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26272, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26273, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26274, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26275, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26276, "properties": { "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26277, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26278, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26279, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26280, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26281, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26282, "properties": { "east": "tall", - "north": "low", + "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26283, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26284, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26285, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26286, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26287, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26288, "properties": { "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26289, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26290, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26291, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26292, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26293, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26294, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26295, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26296, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26297, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26298, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26299, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26300, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26301, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26302, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26303, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26304, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26305, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26306, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26307, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26308, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26309, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26310, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26311, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26312, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26313, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26314, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26315, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26316, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26317, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26318, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26319, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26320, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26321, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26322, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26323, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26324, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26325, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26326, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26327, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26328, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26329, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26330, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26331, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26332, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26333, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26334, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26335, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26336, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26337, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26338, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26339, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26340, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26341, "properties": { "east": "tall", "north": "low", @@ -51381,7 +51412,7 @@ } }, { - "id": 26295, + "id": 26342, "properties": { "east": "tall", "north": "tall", @@ -51392,7 +51423,7 @@ } }, { - "id": 26296, + "id": 26343, "properties": { "east": "tall", "north": "tall", @@ -51403,7 +51434,7 @@ } }, { - "id": 26297, + "id": 26344, "properties": { "east": "tall", "north": "tall", @@ -51414,7 +51445,7 @@ } }, { - "id": 26298, + "id": 26345, "properties": { "east": "tall", "north": "tall", @@ -51425,7 +51456,7 @@ } }, { - "id": 26299, + "id": 26346, "properties": { "east": "tall", "north": "tall", @@ -51436,7 +51467,7 @@ } }, { - "id": 26300, + "id": 26347, "properties": { "east": "tall", "north": "tall", @@ -51447,7 +51478,7 @@ } }, { - "id": 26301, + "id": 26348, "properties": { "east": "tall", "north": "tall", @@ -51458,7 +51489,7 @@ } }, { - "id": 26302, + "id": 26349, "properties": { "east": "tall", "north": "tall", @@ -51469,7 +51500,7 @@ } }, { - "id": 26303, + "id": 26350, "properties": { "east": "tall", "north": "tall", @@ -51480,7 +51511,7 @@ } }, { - "id": 26304, + "id": 26351, "properties": { "east": "tall", "north": "tall", @@ -51491,7 +51522,7 @@ } }, { - "id": 26305, + "id": 26352, "properties": { "east": "tall", "north": "tall", @@ -51502,7 +51533,7 @@ } }, { - "id": 26306, + "id": 26353, "properties": { "east": "tall", "north": "tall", @@ -51513,7 +51544,7 @@ } }, { - "id": 26307, + "id": 26354, "properties": { "east": "tall", "north": "tall", @@ -51524,7 +51555,7 @@ } }, { - "id": 26308, + "id": 26355, "properties": { "east": "tall", "north": "tall", @@ -51535,7 +51566,7 @@ } }, { - "id": 26309, + "id": 26356, "properties": { "east": "tall", "north": "tall", @@ -51546,7 +51577,7 @@ } }, { - "id": 26310, + "id": 26357, "properties": { "east": "tall", "north": "tall", @@ -51557,7 +51588,7 @@ } }, { - "id": 26311, + "id": 26358, "properties": { "east": "tall", "north": "tall", @@ -51568,7 +51599,7 @@ } }, { - "id": 26312, + "id": 26359, "properties": { "east": "tall", "north": "tall", @@ -51579,7 +51610,7 @@ } }, { - "id": 26313, + "id": 26360, "properties": { "east": "tall", "north": "tall", @@ -51590,7 +51621,7 @@ } }, { - "id": 26314, + "id": 26361, "properties": { "east": "tall", "north": "tall", @@ -51601,7 +51632,7 @@ } }, { - "id": 26315, + "id": 26362, "properties": { "east": "tall", "north": "tall", @@ -51612,7 +51643,7 @@ } }, { - "id": 26316, + "id": 26363, "properties": { "east": "tall", "north": "tall", @@ -51623,7 +51654,7 @@ } }, { - "id": 26317, + "id": 26364, "properties": { "east": "tall", "north": "tall", @@ -51634,7 +51665,7 @@ } }, { - "id": 26318, + "id": 26365, "properties": { "east": "tall", "north": "tall", @@ -51645,7 +51676,7 @@ } }, { - "id": 26319, + "id": 26366, "properties": { "east": "tall", "north": "tall", @@ -51656,7 +51687,7 @@ } }, { - "id": 26320, + "id": 26367, "properties": { "east": "tall", "north": "tall", @@ -51667,7 +51698,7 @@ } }, { - "id": 26321, + "id": 26368, "properties": { "east": "tall", "north": "tall", @@ -51678,7 +51709,7 @@ } }, { - "id": 26322, + "id": 26369, "properties": { "east": "tall", "north": "tall", @@ -51689,7 +51720,7 @@ } }, { - "id": 26323, + "id": 26370, "properties": { "east": "tall", "north": "tall", @@ -51700,7 +51731,7 @@ } }, { - "id": 26324, + "id": 26371, "properties": { "east": "tall", "north": "tall", @@ -51711,7 +51742,7 @@ } }, { - "id": 26325, + "id": 26372, "properties": { "east": "tall", "north": "tall", @@ -51722,7 +51753,7 @@ } }, { - "id": 26326, + "id": 26373, "properties": { "east": "tall", "north": "tall", @@ -51733,7 +51764,7 @@ } }, { - "id": 26327, + "id": 26374, "properties": { "east": "tall", "north": "tall", @@ -51744,7 +51775,7 @@ } }, { - "id": 26328, + "id": 26375, "properties": { "east": "tall", "north": "tall", @@ -51755,7 +51786,7 @@ } }, { - "id": 26329, + "id": 26376, "properties": { "east": "tall", "north": "tall", @@ -51766,7 +51797,7 @@ } }, { - "id": 26330, + "id": 26377, "properties": { "east": "tall", "north": "tall", @@ -51808,21 +51839,21 @@ }, "states": [ { - "id": 12137, + "id": 12147, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12138, + "id": 12148, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12139, + "id": 12149, "properties": { "type": "bottom", "waterlogged": "true" @@ -51830,21 +51861,21 @@ }, { "default": true, - "id": 12140, + "id": 12150, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12141, + "id": 12151, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12142, + "id": 12152, "properties": { "type": "double", "waterlogged": "false" @@ -51884,89 +51915,89 @@ ] }, "states": [ - { - "id": 4769, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 4770, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 4771, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 4772, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 4773, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 4774, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 4775, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4776, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 4777, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, { "id": 4778, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4779, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4780, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4781, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4782, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4783, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4784, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4785, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4786, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4787, "properties": { "facing": "north", "half": "top", @@ -51975,7 +52006,7 @@ } }, { - "id": 4779, + "id": 4788, "properties": { "facing": "north", "half": "bottom", @@ -51985,255 +52016,174 @@ }, { "default": true, - "id": 4780, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 4781, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 4782, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 4783, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 4784, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 4785, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4786, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 4787, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 4788, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { "id": 4789, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4790, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 4791, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4792, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 4793, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4794, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 4795, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4796, - "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } }, { - "id": 4797, + "id": 4796, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } }, + { + "id": 4797, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, { "id": 4798, "properties": { "facing": "south", "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "shape": "straight", + "waterlogged": "true" } }, { "id": 4799, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4800, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 4801, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4802, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 4803, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4804, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 4805, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4806, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { "id": 4807, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -52241,179 +52191,179 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "shape": "straight", + "waterlogged": "true" } }, { "id": 4809, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4810, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 4811, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4812, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 4813, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4814, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 4815, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4816, - "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } }, { - "id": 4817, + "id": 4816, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } }, + { + "id": 4817, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, { "id": 4818, "properties": { "facing": "west", "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "shape": "straight", + "waterlogged": "true" } }, { "id": 4819, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4820, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 4821, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4822, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 4823, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4824, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 4825, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4826, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { "id": 4827, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -52421,147 +52371,228 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "shape": "straight", + "waterlogged": "true" } }, { "id": 4829, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4830, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 4831, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4832, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 4833, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4834, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 4835, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4836, - "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } }, { - "id": 4837, + "id": 4836, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } }, + { + "id": 4837, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, { "id": 4838, "properties": { "facing": "east", "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "shape": "straight", + "waterlogged": "true" } }, { "id": 4839, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4840, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 4841, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4842, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 4843, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 4844, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4845, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4846, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4847, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4848, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4849, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4850, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4851, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4852, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4853, "properties": { "facing": "east", "half": "bottom", @@ -52570,7 +52601,7 @@ } }, { - "id": 4845, + "id": 4854, "properties": { "facing": "east", "half": "bottom", @@ -52579,7 +52610,7 @@ } }, { - "id": 4846, + "id": 4855, "properties": { "facing": "east", "half": "bottom", @@ -52588,7 +52619,7 @@ } }, { - "id": 4847, + "id": 4856, "properties": { "facing": "east", "half": "bottom", @@ -52597,7 +52628,7 @@ } }, { - "id": 4848, + "id": 4857, "properties": { "facing": "east", "half": "bottom", @@ -52644,7 +52675,7 @@ }, "states": [ { - "id": 8693, + "id": 8703, "properties": { "east": "none", "north": "none", @@ -52655,7 +52686,7 @@ } }, { - "id": 8694, + "id": 8704, "properties": { "east": "none", "north": "none", @@ -52666,7 +52697,7 @@ } }, { - "id": 8695, + "id": 8705, "properties": { "east": "none", "north": "none", @@ -52678,124 +52709,14 @@ }, { "default": true, - "id": 8696, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8697, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8698, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8699, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8700, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8701, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8702, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8703, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8704, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8705, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { "id": 8706, "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -52803,10 +52724,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -52814,10 +52735,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -52825,10 +52746,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -52836,10 +52757,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -52847,10 +52768,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -52858,10 +52779,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -52869,10 +52790,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -52880,10 +52801,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -52892,9 +52813,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -52903,9 +52824,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -52913,10 +52834,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -52924,10 +52845,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -52935,10 +52856,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -52946,10 +52867,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -52957,10 +52878,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -52968,10 +52889,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -52979,10 +52900,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -52990,10 +52911,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -53001,10 +52922,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -53012,10 +52933,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -53024,9 +52945,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -53035,130 +52956,130 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 8729, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 8730, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 8731, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 8732, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 8733, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 8734, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8735, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8736, - "properties": { - "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 8737, + "id": 8735, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 8738, + "id": 8736, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 8737, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8738, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 8739, "properties": { "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -53167,9 +53088,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -53177,10 +53098,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -53188,10 +53109,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -53199,10 +53120,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -53210,10 +53131,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -53221,10 +53142,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -53232,10 +53153,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -53243,10 +53164,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -53254,10 +53175,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -53265,10 +53186,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -53276,10 +53197,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -53288,9 +53209,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -53299,9 +53220,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -53309,10 +53230,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -53320,10 +53241,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -53331,10 +53252,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -53342,10 +53263,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -53353,10 +53274,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -53364,10 +53285,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -53375,10 +53296,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -53386,10 +53307,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -53397,10 +53318,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -53408,10 +53329,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -53420,9 +53341,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -53431,130 +53352,130 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 8765, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 8766, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 8767, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 8768, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 8769, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 8770, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8771, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8772, - "properties": { - "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 8773, + "id": 8771, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 8774, + "id": 8772, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 8773, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8774, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 8775, "properties": { "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -53563,9 +53484,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -53573,10 +53494,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -53584,10 +53505,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -53595,10 +53516,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -53606,10 +53527,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -53617,10 +53538,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -53628,10 +53549,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -53639,10 +53560,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -53650,10 +53571,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -53661,10 +53582,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -53672,10 +53593,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -53684,9 +53605,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -53695,9 +53616,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -53705,10 +53626,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -53716,10 +53637,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -53727,10 +53648,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -53738,10 +53659,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -53749,10 +53670,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -53760,10 +53681,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -53771,10 +53692,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -53782,10 +53703,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -53793,10 +53714,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -53804,14 +53725,124 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 8799, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8800, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8801, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8802, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8803, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8804, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8805, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8806, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8807, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8808, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8809, "properties": { "east": "none", "north": "tall", @@ -53822,7 +53853,7 @@ } }, { - "id": 8800, + "id": 8810, "properties": { "east": "none", "north": "tall", @@ -53832,125 +53863,15 @@ "west": "tall" } }, - { - "id": 8801, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8802, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8803, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8804, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8805, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8806, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8807, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8808, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8809, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8810, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 8811, "properties": { "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -53959,9 +53880,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -53969,10 +53890,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -53980,10 +53901,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -53991,10 +53912,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -54002,10 +53923,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -54013,10 +53934,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -54024,10 +53945,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -54035,10 +53956,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -54046,10 +53967,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -54057,10 +53978,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -54068,10 +53989,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -54080,9 +54001,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -54091,9 +54012,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -54101,10 +54022,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -54112,10 +54033,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -54123,10 +54044,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -54134,10 +54055,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -54145,10 +54066,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -54156,10 +54077,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -54167,10 +54088,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -54178,10 +54099,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -54189,10 +54110,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -54200,10 +54121,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -54212,9 +54133,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -54223,130 +54144,130 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 8837, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 8838, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 8839, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 8840, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 8841, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 8842, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8843, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8844, - "properties": { - "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 8845, + "id": 8843, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 8846, + "id": 8844, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 8845, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8846, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 8847, "properties": { "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -54355,9 +54276,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -54365,10 +54286,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -54376,10 +54297,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -54387,10 +54308,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -54398,10 +54319,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -54409,10 +54330,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -54420,10 +54341,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -54431,10 +54352,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -54442,10 +54363,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -54453,10 +54374,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -54464,10 +54385,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -54476,9 +54397,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -54487,9 +54408,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -54497,10 +54418,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -54508,10 +54429,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -54519,10 +54440,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -54530,10 +54451,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -54541,10 +54462,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -54552,10 +54473,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -54563,10 +54484,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -54574,10 +54495,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -54585,10 +54506,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -54596,10 +54517,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -54608,9 +54529,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -54619,130 +54540,130 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 8873, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 8874, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 8875, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 8876, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 8877, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 8878, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8879, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8880, - "properties": { - "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 8881, + "id": 8879, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 8882, + "id": 8880, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 8881, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8882, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 8883, "properties": { "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -54751,9 +54672,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -54761,10 +54682,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -54772,10 +54693,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -54783,10 +54704,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -54794,10 +54715,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -54805,10 +54726,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -54816,10 +54737,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -54827,10 +54748,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -54838,10 +54759,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -54849,10 +54770,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -54860,10 +54781,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -54872,9 +54793,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -54883,9 +54804,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -54893,10 +54814,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -54904,10 +54825,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -54915,10 +54836,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -54926,10 +54847,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -54937,10 +54858,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -54948,10 +54869,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -54959,10 +54880,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -54970,10 +54891,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -54981,10 +54902,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -54992,14 +54913,124 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 8907, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8908, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8909, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8910, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8911, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8912, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8913, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8914, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8915, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8916, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8917, "properties": { "east": "low", "north": "tall", @@ -55010,7 +55041,7 @@ } }, { - "id": 8908, + "id": 8918, "properties": { "east": "low", "north": "tall", @@ -55020,125 +55051,15 @@ "west": "tall" } }, - { - "id": 8909, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8910, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8911, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8912, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8913, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8914, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8915, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8916, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8917, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8918, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 8919, "properties": { "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -55147,9 +55068,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -55157,10 +55078,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -55168,10 +55089,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -55179,10 +55100,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -55190,10 +55111,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -55201,10 +55122,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -55212,10 +55133,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -55223,10 +55144,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -55234,10 +55155,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -55245,10 +55166,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -55256,10 +55177,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -55268,9 +55189,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -55279,9 +55200,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -55289,10 +55210,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -55300,10 +55221,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -55311,10 +55232,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -55322,10 +55243,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -55333,10 +55254,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -55344,10 +55265,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -55355,10 +55276,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -55366,10 +55287,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -55377,10 +55298,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -55388,14 +55309,124 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 8943, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8944, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8945, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8946, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8947, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8948, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8949, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8950, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8951, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8952, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8953, "properties": { "east": "tall", "north": "none", @@ -55406,7 +55437,7 @@ } }, { - "id": 8944, + "id": 8954, "properties": { "east": "tall", "north": "none", @@ -55416,125 +55447,15 @@ "west": "tall" } }, - { - "id": 8945, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8946, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8947, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8948, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8949, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8950, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8951, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8952, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8953, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8954, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 8955, "properties": { "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -55543,9 +55464,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -55553,10 +55474,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -55564,10 +55485,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -55575,10 +55496,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -55586,10 +55507,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -55597,10 +55518,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -55608,10 +55529,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -55619,10 +55540,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -55630,10 +55551,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -55641,10 +55562,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -55652,10 +55573,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -55664,9 +55585,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -55675,9 +55596,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -55685,10 +55606,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -55696,10 +55617,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -55707,10 +55628,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -55718,10 +55639,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -55729,10 +55650,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -55740,10 +55661,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -55751,10 +55672,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -55762,10 +55683,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -55773,10 +55694,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -55784,14 +55705,124 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 8979, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8980, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8981, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8982, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8983, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8984, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8985, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8986, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8987, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8988, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8989, "properties": { "east": "tall", "north": "low", @@ -55802,7 +55833,7 @@ } }, { - "id": 8980, + "id": 8990, "properties": { "east": "tall", "north": "low", @@ -55812,125 +55843,15 @@ "west": "tall" } }, - { - "id": 8981, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8982, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8983, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8984, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8985, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8986, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8987, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8988, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8989, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8990, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 8991, "properties": { "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -55939,9 +55860,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -55949,10 +55870,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -55960,10 +55881,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -55971,10 +55892,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -55982,10 +55903,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -55993,10 +55914,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -56004,10 +55925,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -56015,10 +55936,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -56026,10 +55947,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -56037,10 +55958,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -56048,14 +55969,124 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 9003, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9004, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9005, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9006, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9007, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9008, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9009, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9010, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9011, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9012, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9013, "properties": { "east": "tall", "north": "tall", @@ -56066,7 +56097,7 @@ } }, { - "id": 9004, + "id": 9014, "properties": { "east": "tall", "north": "tall", @@ -56076,118 +56107,118 @@ "west": "tall" } }, - { - "id": 9005, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 9006, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 9007, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 9008, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 9009, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 9010, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 9011, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 9012, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 9013, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 9014, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 9015, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9016, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9017, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9018, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9019, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9020, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9021, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9022, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9023, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9024, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9025, "properties": { "east": "tall", "north": "tall", @@ -56198,7 +56229,7 @@ } }, { - "id": 9016, + "id": 9026, "properties": { "east": "tall", "north": "tall", @@ -56243,84 +56274,84 @@ "states": [ { "default": true, - "id": 8193, - "properties": { - "age": "0", - "facing": "north" - } - }, - { - "id": 8194, - "properties": { - "age": "0", - "facing": "south" - } - }, - { - "id": 8195, - "properties": { - "age": "0", - "facing": "west" - } - }, - { - "id": 8196, - "properties": { - "age": "0", - "facing": "east" - } - }, - { - "id": 8197, - "properties": { - "age": "1", - "facing": "north" - } - }, - { - "id": 8198, - "properties": { - "age": "1", - "facing": "south" - } - }, - { - "id": 8199, - "properties": { - "age": "1", - "facing": "west" - } - }, - { - "id": 8200, - "properties": { - "age": "1", - "facing": "east" - } - }, - { - "id": 8201, - "properties": { - "age": "2", - "facing": "north" - } - }, - { - "id": 8202, - "properties": { - "age": "2", - "facing": "south" - } - }, - { "id": 8203, "properties": { - "age": "2", - "facing": "west" + "age": "0", + "facing": "north" } }, { "id": 8204, + "properties": { + "age": "0", + "facing": "south" + } + }, + { + "id": 8205, + "properties": { + "age": "0", + "facing": "west" + } + }, + { + "id": 8206, + "properties": { + "age": "0", + "facing": "east" + } + }, + { + "id": 8207, + "properties": { + "age": "1", + "facing": "north" + } + }, + { + "id": 8208, + "properties": { + "age": "1", + "facing": "south" + } + }, + { + "id": 8209, + "properties": { + "age": "1", + "facing": "west" + } + }, + { + "id": 8210, + "properties": { + "age": "1", + "facing": "east" + } + }, + { + "id": 8211, + "properties": { + "age": "2", + "facing": "north" + } + }, + { + "id": 8212, + "properties": { + "age": "2", + "facing": "south" + } + }, + { + "id": 8213, + "properties": { + "age": "2", + "facing": "west" + } + }, + { + "id": 8214, "properties": { "age": "2", "facing": "east" @@ -56350,42 +56381,42 @@ }, "states": [ { - "id": 8680, + "id": 8690, "properties": { "conditional": "true", "facing": "north" } }, { - "id": 8681, + "id": 8691, "properties": { "conditional": "true", "facing": "east" } }, { - "id": 8682, + "id": 8692, "properties": { "conditional": "true", "facing": "south" } }, { - "id": 8683, + "id": 8693, "properties": { "conditional": "true", "facing": "west" } }, { - "id": 8684, + "id": 8694, "properties": { "conditional": "true", "facing": "up" } }, { - "id": 8685, + "id": 8695, "properties": { "conditional": "true", "facing": "down" @@ -56393,42 +56424,42 @@ }, { "default": true, - "id": 8686, + "id": 8696, "properties": { "conditional": "false", "facing": "north" } }, { - "id": 8687, + "id": 8697, "properties": { "conditional": "false", "facing": "east" } }, { - "id": 8688, + "id": 8698, "properties": { "conditional": "false", "facing": "south" } }, { - "id": 8689, + "id": 8699, "properties": { "conditional": "false", "facing": "west" } }, { - "id": 8690, + "id": 8700, "properties": { "conditional": "false", "facing": "up" } }, { - "id": 8691, + "id": 8701, "properties": { "conditional": "false", "facing": "down" @@ -56459,7 +56490,7 @@ }, "states": [ { - "id": 9974, + "id": 9984, "properties": { "facing": "north", "mode": "compare", @@ -56468,95 +56499,95 @@ }, { "default": true, - "id": 9975, - "properties": { - "facing": "north", - "mode": "compare", - "powered": "false" - } - }, - { - "id": 9976, - "properties": { - "facing": "north", - "mode": "subtract", - "powered": "true" - } - }, - { - "id": 9977, - "properties": { - "facing": "north", - "mode": "subtract", - "powered": "false" - } - }, - { - "id": 9978, - "properties": { - "facing": "south", - "mode": "compare", - "powered": "true" - } - }, - { - "id": 9979, - "properties": { - "facing": "south", - "mode": "compare", - "powered": "false" - } - }, - { - "id": 9980, - "properties": { - "facing": "south", - "mode": "subtract", - "powered": "true" - } - }, - { - "id": 9981, - "properties": { - "facing": "south", - "mode": "subtract", - "powered": "false" - } - }, - { - "id": 9982, - "properties": { - "facing": "west", - "mode": "compare", - "powered": "true" - } - }, - { - "id": 9983, - "properties": { - "facing": "west", - "mode": "compare", - "powered": "false" - } - }, - { - "id": 9984, - "properties": { - "facing": "west", - "mode": "subtract", - "powered": "true" - } - }, - { "id": 9985, "properties": { - "facing": "west", - "mode": "subtract", + "facing": "north", + "mode": "compare", "powered": "false" } }, { "id": 9986, + "properties": { + "facing": "north", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 9987, + "properties": { + "facing": "north", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 9988, + "properties": { + "facing": "south", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 9989, + "properties": { + "facing": "south", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 9990, + "properties": { + "facing": "south", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 9991, + "properties": { + "facing": "south", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 9992, + "properties": { + "facing": "west", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 9993, + "properties": { + "facing": "west", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 9994, + "properties": { + "facing": "west", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 9995, + "properties": { + "facing": "west", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 9996, "properties": { "facing": "east", "mode": "compare", @@ -56564,7 +56595,7 @@ } }, { - "id": 9987, + "id": 9997, "properties": { "facing": "east", "mode": "compare", @@ -56572,7 +56603,7 @@ } }, { - "id": 9988, + "id": 9998, "properties": { "facing": "east", "mode": "subtract", @@ -56580,7 +56611,7 @@ } }, { - "id": 9989, + "id": 9999, "properties": { "facing": "east", "mode": "subtract", @@ -56610,55 +56641,55 @@ "states": [ { "default": true, - "id": 20385, + "id": 20400, "properties": { "level": "0" } }, { - "id": 20386, + "id": 20401, "properties": { "level": "1" } }, { - "id": 20387, + "id": 20402, "properties": { "level": "2" } }, { - "id": 20388, + "id": 20403, "properties": { "level": "3" } }, { - "id": 20389, + "id": 20404, "properties": { "level": "4" } }, { - "id": 20390, + "id": 20405, "properties": { "level": "5" } }, { - "id": 20391, + "id": 20406, "properties": { "level": "6" } }, { - "id": 20392, + "id": 20407, "properties": { "level": "7" } }, { - "id": 20393, + "id": 20408, "properties": { "level": "8" } @@ -56679,13 +56710,13 @@ "states": [ { "default": true, - "id": 13955, + "id": 13965, "properties": { "waterlogged": "true" } }, { - "id": 13956, + "id": 13966, "properties": { "waterlogged": "false" } @@ -56701,7 +56732,7 @@ "states": [ { "default": true, - "id": 23951 + "id": 23966 } ] }, @@ -56723,21 +56754,21 @@ }, "states": [ { - "id": 25705, + "id": 25720, "properties": { "lit": "true", "powered": "true" } }, { - "id": 25706, + "id": 25721, "properties": { "lit": "true", "powered": "false" } }, { - "id": 25707, + "id": 25722, "properties": { "lit": "false", "powered": "true" @@ -56745,7 +56776,7 @@ }, { "default": true, - "id": 25708, + "id": 25723, "properties": { "lit": "false", "powered": "false" @@ -56786,7 +56817,7 @@ }, "states": [ { - "id": 24665, + "id": 24680, "properties": { "facing": "north", "half": "upper", @@ -56796,7 +56827,7 @@ } }, { - "id": 24666, + "id": 24681, "properties": { "facing": "north", "half": "upper", @@ -56806,7 +56837,7 @@ } }, { - "id": 24667, + "id": 24682, "properties": { "facing": "north", "half": "upper", @@ -56816,7 +56847,7 @@ } }, { - "id": 24668, + "id": 24683, "properties": { "facing": "north", "half": "upper", @@ -56826,7 +56857,7 @@ } }, { - "id": 24669, + "id": 24684, "properties": { "facing": "north", "half": "upper", @@ -56836,7 +56867,7 @@ } }, { - "id": 24670, + "id": 24685, "properties": { "facing": "north", "half": "upper", @@ -56846,7 +56877,7 @@ } }, { - "id": 24671, + "id": 24686, "properties": { "facing": "north", "half": "upper", @@ -56856,7 +56887,7 @@ } }, { - "id": 24672, + "id": 24687, "properties": { "facing": "north", "half": "upper", @@ -56866,7 +56897,7 @@ } }, { - "id": 24673, + "id": 24688, "properties": { "facing": "north", "half": "lower", @@ -56876,7 +56907,7 @@ } }, { - "id": 24674, + "id": 24689, "properties": { "facing": "north", "half": "lower", @@ -56886,7 +56917,7 @@ } }, { - "id": 24675, + "id": 24690, "properties": { "facing": "north", "half": "lower", @@ -56897,189 +56928,29 @@ }, { "default": true, - "id": 24676, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 24677, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24678, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 24679, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 24680, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 24681, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 24682, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 24683, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 24684, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 24685, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24686, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 24687, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 24688, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 24689, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 24690, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { "id": 24691, "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24692, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24693, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24694, - "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "right", "open": "true", @@ -57087,159 +56958,159 @@ } }, { - "id": 24695, + "id": 24694, "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true" } }, + { + "id": 24695, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { "id": 24696, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 24697, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24698, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24699, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24700, "properties": { - "facing": "west", + "facing": "south", "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24701, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24702, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24703, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24704, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 24705, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24706, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24707, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24708, "properties": { - "facing": "west", + "facing": "south", "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24709, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24710, - "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "right", "open": "true", @@ -57247,97 +57118,257 @@ } }, { - "id": 24711, + "id": 24710, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true" } }, + { + "id": 24711, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { "id": 24712, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 24713, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24714, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24715, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24716, "properties": { - "facing": "east", + "facing": "west", "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24717, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24718, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24719, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24720, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24721, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24722, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24723, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24724, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24725, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24726, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24727, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24728, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24729, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24730, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24731, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24732, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24733, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24734, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24735, "properties": { "facing": "east", "half": "upper", @@ -57347,7 +57378,7 @@ } }, { - "id": 24721, + "id": 24736, "properties": { "facing": "east", "half": "lower", @@ -57357,7 +57388,7 @@ } }, { - "id": 24722, + "id": 24737, "properties": { "facing": "east", "half": "lower", @@ -57367,7 +57398,7 @@ } }, { - "id": 24723, + "id": 24738, "properties": { "facing": "east", "half": "lower", @@ -57377,7 +57408,7 @@ } }, { - "id": 24724, + "id": 24739, "properties": { "facing": "east", "half": "lower", @@ -57387,7 +57418,7 @@ } }, { - "id": 24725, + "id": 24740, "properties": { "facing": "east", "half": "lower", @@ -57397,7 +57428,7 @@ } }, { - "id": 24726, + "id": 24741, "properties": { "facing": "east", "half": "lower", @@ -57407,7 +57438,7 @@ } }, { - "id": 24727, + "id": 24742, "properties": { "facing": "east", "half": "lower", @@ -57417,7 +57448,7 @@ } }, { - "id": 24728, + "id": 24743, "properties": { "facing": "east", "half": "lower", @@ -57442,14 +57473,14 @@ }, "states": [ { - "id": 25689, + "id": 25704, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 25690, + "id": 25705, "properties": { "waterlogged": "false" } @@ -57465,7 +57496,7 @@ "states": [ { "default": true, - "id": 23955 + "id": 23970 } ] }, @@ -57502,7 +57533,7 @@ }, "states": [ { - "id": 25177, + "id": 25192, "properties": { "facing": "north", "half": "top", @@ -57512,7 +57543,7 @@ } }, { - "id": 25178, + "id": 25193, "properties": { "facing": "north", "half": "top", @@ -57522,7 +57553,7 @@ } }, { - "id": 25179, + "id": 25194, "properties": { "facing": "north", "half": "top", @@ -57532,7 +57563,7 @@ } }, { - "id": 25180, + "id": 25195, "properties": { "facing": "north", "half": "top", @@ -57542,7 +57573,7 @@ } }, { - "id": 25181, + "id": 25196, "properties": { "facing": "north", "half": "top", @@ -57552,7 +57583,7 @@ } }, { - "id": 25182, + "id": 25197, "properties": { "facing": "north", "half": "top", @@ -57562,7 +57593,7 @@ } }, { - "id": 25183, + "id": 25198, "properties": { "facing": "north", "half": "top", @@ -57572,7 +57603,7 @@ } }, { - "id": 25184, + "id": 25199, "properties": { "facing": "north", "half": "top", @@ -57582,7 +57613,7 @@ } }, { - "id": 25185, + "id": 25200, "properties": { "facing": "north", "half": "bottom", @@ -57592,7 +57623,7 @@ } }, { - "id": 25186, + "id": 25201, "properties": { "facing": "north", "half": "bottom", @@ -57602,7 +57633,7 @@ } }, { - "id": 25187, + "id": 25202, "properties": { "facing": "north", "half": "bottom", @@ -57612,7 +57643,7 @@ } }, { - "id": 25188, + "id": 25203, "properties": { "facing": "north", "half": "bottom", @@ -57622,7 +57653,7 @@ } }, { - "id": 25189, + "id": 25204, "properties": { "facing": "north", "half": "bottom", @@ -57632,7 +57663,7 @@ } }, { - "id": 25190, + "id": 25205, "properties": { "facing": "north", "half": "bottom", @@ -57642,7 +57673,7 @@ } }, { - "id": 25191, + "id": 25206, "properties": { "facing": "north", "half": "bottom", @@ -57653,7 +57684,7 @@ }, { "default": true, - "id": 25192, + "id": 25207, "properties": { "facing": "north", "half": "bottom", @@ -57662,300 +57693,140 @@ "waterlogged": "false" } }, - { - "id": 25193, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25194, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25195, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25196, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25197, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25198, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25199, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25200, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25201, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25202, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25203, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25204, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25205, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25206, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25207, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, { "id": 25208, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25209, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25210, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25211, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25212, "properties": { - "facing": "west", + "facing": "south", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25213, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25214, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25215, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25216, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25217, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25218, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25219, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25220, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25221, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25222, - "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "false", "powered": "true", @@ -57963,97 +57834,257 @@ } }, { - "id": 25223, + "id": 25222, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true" } }, + { + "id": 25223, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, { "id": 25224, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25225, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25226, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25227, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25228, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25229, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25230, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25231, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25232, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25233, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25234, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25235, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25236, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25237, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25238, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25239, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25240, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25241, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25242, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25243, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25244, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25245, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25246, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25247, "properties": { "facing": "east", "half": "top", @@ -58063,7 +58094,7 @@ } }, { - "id": 25233, + "id": 25248, "properties": { "facing": "east", "half": "bottom", @@ -58073,7 +58104,7 @@ } }, { - "id": 25234, + "id": 25249, "properties": { "facing": "east", "half": "bottom", @@ -58083,7 +58114,7 @@ } }, { - "id": 25235, + "id": 25250, "properties": { "facing": "east", "half": "bottom", @@ -58093,7 +58124,7 @@ } }, { - "id": 25236, + "id": 25251, "properties": { "facing": "east", "half": "bottom", @@ -58103,7 +58134,7 @@ } }, { - "id": 25237, + "id": 25252, "properties": { "facing": "east", "half": "bottom", @@ -58113,7 +58144,7 @@ } }, { - "id": 25238, + "id": 25253, "properties": { "facing": "east", "half": "bottom", @@ -58123,7 +58154,7 @@ } }, { - "id": 25239, + "id": 25254, "properties": { "facing": "east", "half": "bottom", @@ -58133,7 +58164,7 @@ } }, { - "id": 25240, + "id": 25255, "properties": { "facing": "east", "half": "bottom", @@ -58158,7 +58189,7 @@ "states": [ { "default": true, - "id": 2129 + "id": 2132 } ] }, @@ -58170,7 +58201,7 @@ "states": [ { "default": true, - "id": 27565 + "id": 27612 } ] }, @@ -58182,7 +58213,7 @@ "states": [ { "default": true, - "id": 27566 + "id": 27613 } ] }, @@ -58194,7 +58225,7 @@ "states": [ { "default": true, - "id": 21736 + "id": 21751 } ] }, @@ -58206,7 +58237,7 @@ "states": [ { "default": true, - "id": 20886 + "id": 20901 } ] }, @@ -58218,7 +58249,7 @@ "states": [ { "default": true, - "id": 6772 + "id": 6782 } ] }, @@ -58253,7 +58284,7 @@ }, "states": [ { - "id": 27603, + "id": 27650, "properties": { "crafting": "true", "orientation": "down_east", @@ -58261,7 +58292,7 @@ } }, { - "id": 27604, + "id": 27651, "properties": { "crafting": "true", "orientation": "down_east", @@ -58269,7 +58300,7 @@ } }, { - "id": 27605, + "id": 27652, "properties": { "crafting": "true", "orientation": "down_north", @@ -58277,7 +58308,7 @@ } }, { - "id": 27606, + "id": 27653, "properties": { "crafting": "true", "orientation": "down_north", @@ -58285,7 +58316,7 @@ } }, { - "id": 27607, + "id": 27654, "properties": { "crafting": "true", "orientation": "down_south", @@ -58293,7 +58324,7 @@ } }, { - "id": 27608, + "id": 27655, "properties": { "crafting": "true", "orientation": "down_south", @@ -58301,7 +58332,7 @@ } }, { - "id": 27609, + "id": 27656, "properties": { "crafting": "true", "orientation": "down_west", @@ -58309,7 +58340,7 @@ } }, { - "id": 27610, + "id": 27657, "properties": { "crafting": "true", "orientation": "down_west", @@ -58317,7 +58348,7 @@ } }, { - "id": 27611, + "id": 27658, "properties": { "crafting": "true", "orientation": "up_east", @@ -58325,7 +58356,7 @@ } }, { - "id": 27612, + "id": 27659, "properties": { "crafting": "true", "orientation": "up_east", @@ -58333,7 +58364,7 @@ } }, { - "id": 27613, + "id": 27660, "properties": { "crafting": "true", "orientation": "up_north", @@ -58341,7 +58372,7 @@ } }, { - "id": 27614, + "id": 27661, "properties": { "crafting": "true", "orientation": "up_north", @@ -58349,7 +58380,7 @@ } }, { - "id": 27615, + "id": 27662, "properties": { "crafting": "true", "orientation": "up_south", @@ -58357,7 +58388,7 @@ } }, { - "id": 27616, + "id": 27663, "properties": { "crafting": "true", "orientation": "up_south", @@ -58365,7 +58396,7 @@ } }, { - "id": 27617, + "id": 27664, "properties": { "crafting": "true", "orientation": "up_west", @@ -58373,7 +58404,7 @@ } }, { - "id": 27618, + "id": 27665, "properties": { "crafting": "true", "orientation": "up_west", @@ -58381,7 +58412,7 @@ } }, { - "id": 27619, + "id": 27666, "properties": { "crafting": "true", "orientation": "west_up", @@ -58389,7 +58420,7 @@ } }, { - "id": 27620, + "id": 27667, "properties": { "crafting": "true", "orientation": "west_up", @@ -58397,7 +58428,7 @@ } }, { - "id": 27621, + "id": 27668, "properties": { "crafting": "true", "orientation": "east_up", @@ -58405,7 +58436,7 @@ } }, { - "id": 27622, + "id": 27669, "properties": { "crafting": "true", "orientation": "east_up", @@ -58413,7 +58444,7 @@ } }, { - "id": 27623, + "id": 27670, "properties": { "crafting": "true", "orientation": "north_up", @@ -58421,7 +58452,7 @@ } }, { - "id": 27624, + "id": 27671, "properties": { "crafting": "true", "orientation": "north_up", @@ -58429,7 +58460,7 @@ } }, { - "id": 27625, + "id": 27672, "properties": { "crafting": "true", "orientation": "south_up", @@ -58437,7 +58468,7 @@ } }, { - "id": 27626, + "id": 27673, "properties": { "crafting": "true", "orientation": "south_up", @@ -58445,7 +58476,7 @@ } }, { - "id": 27627, + "id": 27674, "properties": { "crafting": "false", "orientation": "down_east", @@ -58453,7 +58484,7 @@ } }, { - "id": 27628, + "id": 27675, "properties": { "crafting": "false", "orientation": "down_east", @@ -58461,7 +58492,7 @@ } }, { - "id": 27629, + "id": 27676, "properties": { "crafting": "false", "orientation": "down_north", @@ -58469,7 +58500,7 @@ } }, { - "id": 27630, + "id": 27677, "properties": { "crafting": "false", "orientation": "down_north", @@ -58477,7 +58508,7 @@ } }, { - "id": 27631, + "id": 27678, "properties": { "crafting": "false", "orientation": "down_south", @@ -58485,7 +58516,7 @@ } }, { - "id": 27632, + "id": 27679, "properties": { "crafting": "false", "orientation": "down_south", @@ -58493,7 +58524,7 @@ } }, { - "id": 27633, + "id": 27680, "properties": { "crafting": "false", "orientation": "down_west", @@ -58501,7 +58532,7 @@ } }, { - "id": 27634, + "id": 27681, "properties": { "crafting": "false", "orientation": "down_west", @@ -58509,7 +58540,7 @@ } }, { - "id": 27635, + "id": 27682, "properties": { "crafting": "false", "orientation": "up_east", @@ -58517,7 +58548,7 @@ } }, { - "id": 27636, + "id": 27683, "properties": { "crafting": "false", "orientation": "up_east", @@ -58525,7 +58556,7 @@ } }, { - "id": 27637, + "id": 27684, "properties": { "crafting": "false", "orientation": "up_north", @@ -58533,7 +58564,7 @@ } }, { - "id": 27638, + "id": 27685, "properties": { "crafting": "false", "orientation": "up_north", @@ -58541,7 +58572,7 @@ } }, { - "id": 27639, + "id": 27686, "properties": { "crafting": "false", "orientation": "up_south", @@ -58549,7 +58580,7 @@ } }, { - "id": 27640, + "id": 27687, "properties": { "crafting": "false", "orientation": "up_south", @@ -58557,7 +58588,7 @@ } }, { - "id": 27641, + "id": 27688, "properties": { "crafting": "false", "orientation": "up_west", @@ -58565,7 +58596,7 @@ } }, { - "id": 27642, + "id": 27689, "properties": { "crafting": "false", "orientation": "up_west", @@ -58573,7 +58604,7 @@ } }, { - "id": 27643, + "id": 27690, "properties": { "crafting": "false", "orientation": "west_up", @@ -58581,7 +58612,7 @@ } }, { - "id": 27644, + "id": 27691, "properties": { "crafting": "false", "orientation": "west_up", @@ -58589,7 +58620,7 @@ } }, { - "id": 27645, + "id": 27692, "properties": { "crafting": "false", "orientation": "east_up", @@ -58597,7 +58628,7 @@ } }, { - "id": 27646, + "id": 27693, "properties": { "crafting": "false", "orientation": "east_up", @@ -58605,7 +58636,7 @@ } }, { - "id": 27647, + "id": 27694, "properties": { "crafting": "false", "orientation": "north_up", @@ -58614,7 +58645,7 @@ }, { "default": true, - "id": 27648, + "id": 27695, "properties": { "crafting": "false", "orientation": "north_up", @@ -58622,7 +58653,7 @@ } }, { - "id": 27649, + "id": 27696, "properties": { "crafting": "false", "orientation": "south_up", @@ -58630,7 +58661,7 @@ } }, { - "id": 27650, + "id": 27697, "properties": { "crafting": "false", "orientation": "south_up", @@ -58647,7 +58678,7 @@ "states": [ { "default": true, - "id": 4332 + "id": 4341 } ] }, @@ -58657,115 +58688,164 @@ "properties": {} }, "properties": { - "active": [ - "true", - "false" - ], "axis": [ "x", "y", "z" ], + "creaking_heart_state": [ + "uprooted", + "dormant", + "awake" + ], "natural": [ "true", "false" ] }, "states": [ - { - "id": 2917, - "properties": { - "active": "true", - "axis": "x", - "natural": "true" - } - }, - { - "id": 2918, - "properties": { - "active": "true", - "axis": "x", - "natural": "false" - } - }, - { - "id": 2919, - "properties": { - "active": "true", - "axis": "y", - "natural": "true" - } - }, { "id": 2920, "properties": { - "active": "true", - "axis": "y", - "natural": "false" + "axis": "x", + "creaking_heart_state": "uprooted", + "natural": "true" } }, { "id": 2921, "properties": { - "active": "true", - "axis": "z", - "natural": "true" + "axis": "x", + "creaking_heart_state": "uprooted", + "natural": "false" } }, { "id": 2922, "properties": { - "active": "true", - "axis": "z", - "natural": "false" + "axis": "x", + "creaking_heart_state": "dormant", + "natural": "true" } }, { "id": 2923, "properties": { - "active": "false", "axis": "x", - "natural": "true" + "creaking_heart_state": "dormant", + "natural": "false" } }, { "id": 2924, "properties": { - "active": "false", "axis": "x", - "natural": "false" + "creaking_heart_state": "awake", + "natural": "true" } }, { "id": 2925, "properties": { - "active": "false", + "axis": "x", + "creaking_heart_state": "awake", + "natural": "false" + } + }, + { + "id": 2926, + "properties": { "axis": "y", + "creaking_heart_state": "uprooted", "natural": "true" } }, { "default": true, - "id": 2926, - "properties": { - "active": "false", - "axis": "y", - "natural": "false" - } - }, - { "id": 2927, "properties": { - "active": "false", - "axis": "z", - "natural": "true" + "axis": "y", + "creaking_heart_state": "uprooted", + "natural": "false" } }, { "id": 2928, "properties": { - "active": "false", + "axis": "y", + "creaking_heart_state": "dormant", + "natural": "true" + } + }, + { + "id": 2929, + "properties": { + "axis": "y", + "creaking_heart_state": "dormant", + "natural": "false" + } + }, + { + "id": 2930, + "properties": { + "axis": "y", + "creaking_heart_state": "awake", + "natural": "true" + } + }, + { + "id": 2931, + "properties": { + "axis": "y", + "creaking_heart_state": "awake", + "natural": "false" + } + }, + { + "id": 2932, + "properties": { "axis": "z", + "creaking_heart_state": "uprooted", + "natural": "true" + } + }, + { + "id": 2933, + "properties": { + "axis": "z", + "creaking_heart_state": "uprooted", + "natural": "false" + } + }, + { + "id": 2934, + "properties": { + "axis": "z", + "creaking_heart_state": "dormant", + "natural": "true" + } + }, + { + "id": 2935, + "properties": { + "axis": "z", + "creaking_heart_state": "dormant", + "natural": "false" + } + }, + { + "id": 2936, + "properties": { + "axis": "z", + "creaking_heart_state": "awake", + "natural": "true" + } + }, + { + "id": 2937, + "properties": { + "axis": "z", + "creaking_heart_state": "awake", "natural": "false" } } @@ -58803,112 +58883,112 @@ }, "states": [ { - "id": 9786, + "id": 9796, "properties": { "powered": "true", "rotation": "0" } }, { - "id": 9787, + "id": 9797, "properties": { "powered": "true", "rotation": "1" } }, { - "id": 9788, + "id": 9798, "properties": { "powered": "true", "rotation": "2" } }, { - "id": 9789, + "id": 9799, "properties": { "powered": "true", "rotation": "3" } }, { - "id": 9790, + "id": 9800, "properties": { "powered": "true", "rotation": "4" } }, { - "id": 9791, + "id": 9801, "properties": { "powered": "true", "rotation": "5" } }, { - "id": 9792, + "id": 9802, "properties": { "powered": "true", "rotation": "6" } }, { - "id": 9793, + "id": 9803, "properties": { "powered": "true", "rotation": "7" } }, { - "id": 9794, + "id": 9804, "properties": { "powered": "true", "rotation": "8" } }, { - "id": 9795, + "id": 9805, "properties": { "powered": "true", "rotation": "9" } }, { - "id": 9796, + "id": 9806, "properties": { "powered": "true", "rotation": "10" } }, { - "id": 9797, + "id": 9807, "properties": { "powered": "true", "rotation": "11" } }, { - "id": 9798, + "id": 9808, "properties": { "powered": "true", "rotation": "12" } }, { - "id": 9799, + "id": 9809, "properties": { "powered": "true", "rotation": "13" } }, { - "id": 9800, + "id": 9810, "properties": { "powered": "true", "rotation": "14" } }, { - "id": 9801, + "id": 9811, "properties": { "powered": "true", "rotation": "15" @@ -58916,112 +58996,112 @@ }, { "default": true, - "id": 9802, + "id": 9812, "properties": { "powered": "false", "rotation": "0" } }, { - "id": 9803, + "id": 9813, "properties": { "powered": "false", "rotation": "1" } }, { - "id": 9804, + "id": 9814, "properties": { "powered": "false", "rotation": "2" } }, { - "id": 9805, + "id": 9815, "properties": { "powered": "false", "rotation": "3" } }, { - "id": 9806, + "id": 9816, "properties": { "powered": "false", "rotation": "4" } }, { - "id": 9807, + "id": 9817, "properties": { "powered": "false", "rotation": "5" } }, { - "id": 9808, + "id": 9818, "properties": { "powered": "false", "rotation": "6" } }, { - "id": 9809, + "id": 9819, "properties": { "powered": "false", "rotation": "7" } }, { - "id": 9810, + "id": 9820, "properties": { "powered": "false", "rotation": "8" } }, { - "id": 9811, + "id": 9821, "properties": { "powered": "false", "rotation": "9" } }, { - "id": 9812, + "id": 9822, "properties": { "powered": "false", "rotation": "10" } }, { - "id": 9813, + "id": 9823, "properties": { "powered": "false", "rotation": "11" } }, { - "id": 9814, + "id": 9824, "properties": { "powered": "false", "rotation": "12" } }, { - "id": 9815, + "id": 9825, "properties": { "powered": "false", "rotation": "13" } }, { - "id": 9816, + "id": 9826, "properties": { "powered": "false", "rotation": "14" } }, { - "id": 9817, + "id": 9827, "properties": { "powered": "false", "rotation": "15" @@ -59049,7 +59129,7 @@ }, "states": [ { - "id": 9818, + "id": 9828, "properties": { "facing": "north", "powered": "true" @@ -59057,49 +59137,49 @@ }, { "default": true, - "id": 9819, + "id": 9829, "properties": { "facing": "north", "powered": "false" } }, { - "id": 9820, + "id": 9830, "properties": { "facing": "south", "powered": "true" } }, { - "id": 9821, + "id": 9831, "properties": { "facing": "south", "powered": "false" } }, { - "id": 9822, + "id": 9832, "properties": { "facing": "west", "powered": "true" } }, { - "id": 9823, + "id": 9833, "properties": { "facing": "west", "powered": "false" } }, { - "id": 9824, + "id": 9834, "properties": { "facing": "east", "powered": "true" } }, { - "id": 9825, + "id": 9835, "properties": { "facing": "east", "powered": "false" @@ -59133,7 +59213,7 @@ }, "states": [ { - "id": 20113, + "id": 20123, "properties": { "face": "floor", "facing": "north", @@ -59141,7 +59221,7 @@ } }, { - "id": 20114, + "id": 20124, "properties": { "face": "floor", "facing": "north", @@ -59149,7 +59229,7 @@ } }, { - "id": 20115, + "id": 20125, "properties": { "face": "floor", "facing": "south", @@ -59157,7 +59237,7 @@ } }, { - "id": 20116, + "id": 20126, "properties": { "face": "floor", "facing": "south", @@ -59165,7 +59245,7 @@ } }, { - "id": 20117, + "id": 20127, "properties": { "face": "floor", "facing": "west", @@ -59173,7 +59253,7 @@ } }, { - "id": 20118, + "id": 20128, "properties": { "face": "floor", "facing": "west", @@ -59181,7 +59261,7 @@ } }, { - "id": 20119, + "id": 20129, "properties": { "face": "floor", "facing": "east", @@ -59189,7 +59269,7 @@ } }, { - "id": 20120, + "id": 20130, "properties": { "face": "floor", "facing": "east", @@ -59197,7 +59277,7 @@ } }, { - "id": 20121, + "id": 20131, "properties": { "face": "wall", "facing": "north", @@ -59206,95 +59286,95 @@ }, { "default": true, - "id": 20122, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 20123, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 20124, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 20125, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 20126, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 20127, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 20128, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 20129, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 20130, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 20131, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { "id": 20132, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "north", "powered": "false" } }, { "id": 20133, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 20134, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 20135, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 20136, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 20137, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 20138, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 20139, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 20140, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 20141, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 20142, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 20143, "properties": { "face": "ceiling", "facing": "west", @@ -59302,7 +59382,7 @@ } }, { - "id": 20134, + "id": 20144, "properties": { "face": "ceiling", "facing": "west", @@ -59310,7 +59390,7 @@ } }, { - "id": 20135, + "id": 20145, "properties": { "face": "ceiling", "facing": "east", @@ -59318,7 +59398,7 @@ } }, { - "id": 20136, + "id": 20146, "properties": { "face": "ceiling", "facing": "east", @@ -59358,108 +59438,108 @@ ] }, "states": [ - { - "id": 20161, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 20162, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 20163, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 20164, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 20165, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 20166, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 20167, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 20168, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 20169, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 20170, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 20171, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 20172, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 20173, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 20174, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 20175, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 20176, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 20177, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 20178, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 20179, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 20180, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 20181, "properties": { "facing": "north", "half": "lower", @@ -59470,152 +59550,52 @@ }, { "default": true, - "id": 20172, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 20173, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 20174, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 20175, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 20176, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 20177, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 20178, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 20179, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 20180, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 20181, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { "id": 20182, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 20183, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 20184, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 20185, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "true" } }, { "id": 20186, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "false" } }, @@ -59623,9 +59603,9 @@ "id": 20187, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -59633,9 +59613,9 @@ "id": 20188, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -59643,9 +59623,9 @@ "id": 20189, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -59653,14 +59633,114 @@ "id": 20190, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 20191, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 20192, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 20193, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 20194, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 20195, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 20196, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 20197, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 20198, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 20199, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 20200, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 20201, "properties": { "facing": "south", "half": "lower", @@ -59670,7 +59750,7 @@ } }, { - "id": 20192, + "id": 20202, "properties": { "facing": "south", "half": "lower", @@ -59679,113 +59759,13 @@ "powered": "false" } }, - { - "id": 20193, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 20194, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 20195, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 20196, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 20197, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 20198, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 20199, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 20200, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 20201, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 20202, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 20203, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -59793,9 +59773,9 @@ "id": 20204, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -59803,9 +59783,9 @@ "id": 20205, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -59813,14 +59793,114 @@ "id": 20206, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 20207, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 20208, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 20209, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 20210, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 20211, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 20212, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 20213, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 20214, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 20215, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 20216, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 20217, "properties": { "facing": "west", "half": "lower", @@ -59830,7 +59910,7 @@ } }, { - "id": 20208, + "id": 20218, "properties": { "facing": "west", "half": "lower", @@ -59839,113 +59919,13 @@ "powered": "false" } }, - { - "id": 20209, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 20210, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 20211, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 20212, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 20213, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 20214, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 20215, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 20216, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 20217, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 20218, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 20219, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -59953,14 +59933,114 @@ "id": 20220, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 20221, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 20222, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 20223, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 20224, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 20225, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 20226, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 20227, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 20228, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 20229, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 20230, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 20231, "properties": { "facing": "east", "half": "lower", @@ -59970,7 +60050,7 @@ } }, { - "id": 20222, + "id": 20232, "properties": { "facing": "east", "half": "lower", @@ -59980,7 +60060,7 @@ } }, { - "id": 20223, + "id": 20233, "properties": { "facing": "east", "half": "lower", @@ -59990,7 +60070,7 @@ } }, { - "id": 20224, + "id": 20234, "properties": { "facing": "east", "half": "lower", @@ -60029,113 +60109,13 @@ ] }, "states": [ - { - "id": 19697, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 19698, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 19699, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 19700, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 19701, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 19702, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 19703, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 19704, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 19705, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 19706, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 19707, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -60143,9 +60123,9 @@ "id": 19708, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -60153,9 +60133,9 @@ "id": 19709, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -60163,14 +60143,114 @@ "id": 19710, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 19711, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 19712, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 19713, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 19714, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 19715, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 19716, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 19717, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 19718, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 19719, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 19720, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 19721, "properties": { "east": "true", "north": "false", @@ -60180,7 +60260,7 @@ } }, { - "id": 19712, + "id": 19722, "properties": { "east": "true", "north": "false", @@ -60189,118 +60269,118 @@ "west": "false" } }, - { - "id": 19713, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 19714, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 19715, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 19716, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 19717, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 19718, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 19719, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 19720, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 19721, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 19722, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 19723, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 19724, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 19725, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 19726, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 19727, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 19728, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 19729, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 19730, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 19731, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 19732, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 19733, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 19734, "properties": { "east": "false", "north": "false", @@ -60310,7 +60390,7 @@ } }, { - "id": 19725, + "id": 19735, "properties": { "east": "false", "north": "false", @@ -60320,7 +60400,7 @@ } }, { - "id": 19726, + "id": 19736, "properties": { "east": "false", "north": "false", @@ -60330,7 +60410,7 @@ } }, { - "id": 19727, + "id": 19737, "properties": { "east": "false", "north": "false", @@ -60341,7 +60421,7 @@ }, { "default": true, - "id": 19728, + "id": 19738, "properties": { "east": "false", "north": "false", @@ -60380,7 +60460,7 @@ }, "states": [ { - "id": 19889, + "id": 19899, "properties": { "facing": "north", "in_wall": "true", @@ -60389,7 +60469,7 @@ } }, { - "id": 19890, + "id": 19900, "properties": { "facing": "north", "in_wall": "true", @@ -60398,7 +60478,7 @@ } }, { - "id": 19891, + "id": 19901, "properties": { "facing": "north", "in_wall": "true", @@ -60407,7 +60487,7 @@ } }, { - "id": 19892, + "id": 19902, "properties": { "facing": "north", "in_wall": "true", @@ -60416,7 +60496,7 @@ } }, { - "id": 19893, + "id": 19903, "properties": { "facing": "north", "in_wall": "false", @@ -60425,7 +60505,7 @@ } }, { - "id": 19894, + "id": 19904, "properties": { "facing": "north", "in_wall": "false", @@ -60434,7 +60514,7 @@ } }, { - "id": 19895, + "id": 19905, "properties": { "facing": "north", "in_wall": "false", @@ -60444,7 +60524,7 @@ }, { "default": true, - "id": 19896, + "id": 19906, "properties": { "facing": "north", "in_wall": "false", @@ -60452,143 +60532,143 @@ "powered": "false" } }, - { - "id": 19897, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 19898, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 19899, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 19900, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 19901, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 19902, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 19903, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 19904, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 19905, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 19906, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, { "id": 19907, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 19908, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 19909, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "true" } }, { "id": 19910, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "false" } }, { "id": 19911, "properties": { - "facing": "west", + "facing": "south", "in_wall": "false", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 19912, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 19913, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 19914, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 19915, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 19916, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 19917, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 19918, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 19919, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 19920, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 19921, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 19922, "properties": { "facing": "west", "in_wall": "false", @@ -60597,7 +60677,7 @@ } }, { - "id": 19913, + "id": 19923, "properties": { "facing": "east", "in_wall": "true", @@ -60606,7 +60686,7 @@ } }, { - "id": 19914, + "id": 19924, "properties": { "facing": "east", "in_wall": "true", @@ -60615,7 +60695,7 @@ } }, { - "id": 19915, + "id": 19925, "properties": { "facing": "east", "in_wall": "true", @@ -60624,7 +60704,7 @@ } }, { - "id": 19916, + "id": 19926, "properties": { "facing": "east", "in_wall": "true", @@ -60633,7 +60713,7 @@ } }, { - "id": 19917, + "id": 19927, "properties": { "facing": "east", "in_wall": "false", @@ -60642,7 +60722,7 @@ } }, { - "id": 19918, + "id": 19928, "properties": { "facing": "east", "in_wall": "false", @@ -60651,7 +60731,7 @@ } }, { - "id": 19919, + "id": 19929, "properties": { "facing": "east", "in_wall": "false", @@ -60660,7 +60740,7 @@ } }, { - "id": 19920, + "id": 19930, "properties": { "facing": "east", "in_wall": "false", @@ -60680,7 +60760,7 @@ "states": [ { "default": true, - "id": 19622 + "id": 19632 } ] }, @@ -60719,240 +60799,240 @@ ] }, "states": [ - { - "id": 5441, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5442, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5443, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5444, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5445, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5446, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5447, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5448, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5449, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, { "id": 5450, "properties": { "attached": "true", - "rotation": "4", - "waterlogged": "false" + "rotation": "0", + "waterlogged": "true" } }, { "id": 5451, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "true" + "rotation": "0", + "waterlogged": "false" } }, { "id": 5452, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5453, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5454, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5455, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5456, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5457, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5458, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5459, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5460, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5461, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5462, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5463, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5464, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5465, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5466, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5467, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5468, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "false" + "rotation": "9", + "waterlogged": "true" } }, { "id": 5469, "properties": { "attached": "true", - "rotation": "14", - "waterlogged": "true" + "rotation": "9", + "waterlogged": "false" } }, { "id": 5470, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5471, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5472, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5473, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5474, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5475, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5476, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5477, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5478, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5479, "properties": { "attached": "true", "rotation": "14", @@ -60960,7 +61040,7 @@ } }, { - "id": 5471, + "id": 5480, "properties": { "attached": "true", "rotation": "15", @@ -60968,7 +61048,7 @@ } }, { - "id": 5472, + "id": 5481, "properties": { "attached": "true", "rotation": "15", @@ -60976,7 +61056,7 @@ } }, { - "id": 5473, + "id": 5482, "properties": { "attached": "false", "rotation": "0", @@ -60985,215 +61065,215 @@ }, { "default": true, - "id": 5474, + "id": 5483, "properties": { "attached": "false", "rotation": "0", "waterlogged": "false" } }, - { - "id": 5475, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5476, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5477, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5478, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5479, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5480, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5481, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5482, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5483, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 5484, "properties": { "attached": "false", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5485, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5486, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5487, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5488, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5489, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5490, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5491, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5492, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5493, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5494, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5495, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5496, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5497, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5498, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5499, "properties": { "attached": "false", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5500, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5501, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5502, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5503, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5504, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5505, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5506, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5507, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5508, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5509, "properties": { "attached": "false", "rotation": "13", @@ -61201,7 +61281,7 @@ } }, { - "id": 5501, + "id": 5510, "properties": { "attached": "false", "rotation": "14", @@ -61209,7 +61289,7 @@ } }, { - "id": 5502, + "id": 5511, "properties": { "attached": "false", "rotation": "14", @@ -61217,7 +61297,7 @@ } }, { - "id": 5503, + "id": 5512, "properties": { "attached": "false", "rotation": "15", @@ -61225,7 +61305,7 @@ } }, { - "id": 5504, + "id": 5513, "properties": { "attached": "false", "rotation": "15", @@ -61248,20 +61328,20 @@ }, "states": [ { - "id": 19615, + "id": 19625, "properties": { "axis": "x" } }, { "default": true, - "id": 19616, + "id": 19626, "properties": { "axis": "y" } }, { - "id": 19617, + "id": 19627, "properties": { "axis": "z" } @@ -61276,7 +61356,7 @@ "states": [ { "default": true, - "id": 19621 + "id": 19631 } ] }, @@ -61288,7 +61368,7 @@ "states": [ { "default": true, - "id": 19679 + "id": 19689 } ] }, @@ -61306,14 +61386,14 @@ }, "states": [ { - "id": 19693, + "id": 19703, "properties": { "powered": "true" } }, { "default": true, - "id": 19694, + "id": 19704, "properties": { "powered": "false" } @@ -61328,7 +61408,7 @@ "states": [ { "default": true, - "id": 19678 + "id": 19688 } ] }, @@ -61364,7 +61444,7 @@ }, "states": [ { - "id": 20289, + "id": 20299, "properties": { "rotation": "0", "waterlogged": "true" @@ -61372,217 +61452,217 @@ }, { "default": true, - "id": 20290, + "id": 20300, "properties": { "rotation": "0", "waterlogged": "false" } }, - { - "id": 20291, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 20292, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 20293, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 20294, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 20295, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 20296, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 20297, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 20298, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 20299, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 20300, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, { "id": 20301, "properties": { - "rotation": "6", + "rotation": "1", "waterlogged": "true" } }, { "id": 20302, "properties": { - "rotation": "6", + "rotation": "1", "waterlogged": "false" } }, { "id": 20303, "properties": { - "rotation": "7", + "rotation": "2", "waterlogged": "true" } }, { "id": 20304, "properties": { - "rotation": "7", + "rotation": "2", "waterlogged": "false" } }, { "id": 20305, "properties": { - "rotation": "8", + "rotation": "3", "waterlogged": "true" } }, { "id": 20306, "properties": { - "rotation": "8", + "rotation": "3", "waterlogged": "false" } }, { "id": 20307, "properties": { - "rotation": "9", + "rotation": "4", "waterlogged": "true" } }, { "id": 20308, "properties": { - "rotation": "9", + "rotation": "4", "waterlogged": "false" } }, { "id": 20309, "properties": { - "rotation": "10", + "rotation": "5", "waterlogged": "true" } }, { "id": 20310, "properties": { - "rotation": "10", + "rotation": "5", "waterlogged": "false" } }, { "id": 20311, "properties": { - "rotation": "11", + "rotation": "6", "waterlogged": "true" } }, { "id": 20312, "properties": { - "rotation": "11", + "rotation": "6", "waterlogged": "false" } }, { "id": 20313, "properties": { - "rotation": "12", + "rotation": "7", "waterlogged": "true" } }, { "id": 20314, "properties": { - "rotation": "12", + "rotation": "7", "waterlogged": "false" } }, { "id": 20315, "properties": { - "rotation": "13", + "rotation": "8", "waterlogged": "true" } }, { "id": 20316, "properties": { - "rotation": "13", + "rotation": "8", "waterlogged": "false" } }, { "id": 20317, "properties": { - "rotation": "14", + "rotation": "9", "waterlogged": "true" } }, { "id": 20318, "properties": { - "rotation": "14", + "rotation": "9", "waterlogged": "false" } }, { "id": 20319, "properties": { - "rotation": "15", + "rotation": "10", "waterlogged": "true" } }, { "id": 20320, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 20321, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 20322, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 20323, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 20324, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 20325, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 20326, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 20327, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 20328, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 20329, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 20330, "properties": { "rotation": "15", "waterlogged": "false" @@ -61608,21 +61688,21 @@ }, "states": [ { - "id": 19681, + "id": 19691, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 19682, + "id": 19692, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 19683, + "id": 19693, "properties": { "type": "bottom", "waterlogged": "true" @@ -61630,21 +61710,21 @@ }, { "default": true, - "id": 19684, + "id": 19694, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 19685, + "id": 19695, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 19686, + "id": 19696, "properties": { "type": "double", "waterlogged": "false" @@ -61684,98 +61764,98 @@ ] }, "states": [ - { - "id": 19953, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19954, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19955, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19956, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19957, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19958, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19959, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19960, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19961, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19962, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 19963, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19964, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19965, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19966, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19967, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19968, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19969, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19970, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19971, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19972, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19973, "properties": { "facing": "north", "half": "bottom", @@ -61785,100 +61865,10 @@ }, { "default": true, - "id": 19964, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19965, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19966, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19967, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19968, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19969, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19970, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19971, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19972, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19973, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 19974, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -61886,8 +61876,8 @@ { "id": 19975, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -61895,8 +61885,8 @@ { "id": 19976, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -61904,8 +61894,8 @@ { "id": 19977, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -61913,8 +61903,8 @@ { "id": 19978, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -61922,8 +61912,8 @@ { "id": 19979, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -61931,8 +61921,8 @@ { "id": 19980, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -61940,8 +61930,8 @@ { "id": 19981, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -61949,8 +61939,8 @@ { "id": 19982, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -61959,7 +61949,7 @@ "id": 19983, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -61968,7 +61958,7 @@ "id": 19984, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -61977,7 +61967,7 @@ "id": 19985, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -61986,7 +61976,7 @@ "id": 19986, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -61995,7 +61985,7 @@ "id": 19987, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -62004,7 +61994,7 @@ "id": 19988, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -62013,7 +62003,7 @@ "id": 19989, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -62022,7 +62012,7 @@ "id": 19990, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -62031,7 +62021,7 @@ "id": 19991, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -62040,7 +62030,7 @@ "id": 19992, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -62048,8 +62038,8 @@ { "id": 19993, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -62057,8 +62047,8 @@ { "id": 19994, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -62066,8 +62056,8 @@ { "id": 19995, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -62075,8 +62065,8 @@ { "id": 19996, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -62084,8 +62074,8 @@ { "id": 19997, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -62093,8 +62083,8 @@ { "id": 19998, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -62102,8 +62092,8 @@ { "id": 19999, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -62111,8 +62101,8 @@ { "id": 20000, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -62120,8 +62110,8 @@ { "id": 20001, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -62129,8 +62119,8 @@ { "id": 20002, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -62139,7 +62129,7 @@ "id": 20003, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -62148,7 +62138,7 @@ "id": 20004, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -62157,7 +62147,7 @@ "id": 20005, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -62166,7 +62156,7 @@ "id": 20006, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -62175,7 +62165,7 @@ "id": 20007, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -62184,7 +62174,7 @@ "id": 20008, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -62193,7 +62183,7 @@ "id": 20009, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -62202,7 +62192,7 @@ "id": 20010, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -62211,7 +62201,7 @@ "id": 20011, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -62220,7 +62210,7 @@ "id": 20012, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -62228,8 +62218,8 @@ { "id": 20013, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -62237,8 +62227,8 @@ { "id": 20014, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -62246,8 +62236,8 @@ { "id": 20015, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -62255,8 +62245,8 @@ { "id": 20016, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -62264,8 +62254,8 @@ { "id": 20017, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -62273,8 +62263,8 @@ { "id": 20018, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -62282,8 +62272,8 @@ { "id": 20019, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -62291,8 +62281,8 @@ { "id": 20020, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -62300,8 +62290,8 @@ { "id": 20021, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -62309,8 +62299,8 @@ { "id": 20022, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -62319,7 +62309,7 @@ "id": 20023, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -62328,7 +62318,7 @@ "id": 20024, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -62337,7 +62327,7 @@ "id": 20025, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -62346,7 +62336,7 @@ "id": 20026, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -62355,7 +62345,7 @@ "id": 20027, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -62364,7 +62354,7 @@ "id": 20028, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -62373,7 +62363,7 @@ "id": 20029, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -62382,7 +62372,7 @@ "id": 20030, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -62391,13 +62381,103 @@ "id": 20031, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 20032, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20033, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20034, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20035, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20036, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20037, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20038, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20039, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20040, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20041, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20042, "properties": { "facing": "east", "half": "bottom", @@ -62421,20 +62501,20 @@ }, "states": [ { - "id": 19609, + "id": 19619, "properties": { "axis": "x" } }, { "default": true, - "id": 19610, + "id": 19620, "properties": { "axis": "y" } }, { - "id": 19611, + "id": 19621, "properties": { "axis": "z" } @@ -62472,118 +62552,118 @@ ] }, "states": [ - { - "id": 19761, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19762, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 19763, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 19764, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 19765, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19766, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 19767, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 19768, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 19769, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19770, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 19771, "properties": { "facing": "north", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, { "id": 19772, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19773, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19774, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19775, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19776, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19777, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19778, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19779, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19780, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19781, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19782, "properties": { "facing": "north", "half": "bottom", @@ -62593,7 +62673,7 @@ } }, { - "id": 19773, + "id": 19783, "properties": { "facing": "north", "half": "bottom", @@ -62603,7 +62683,7 @@ } }, { - "id": 19774, + "id": 19784, "properties": { "facing": "north", "half": "bottom", @@ -62613,7 +62693,7 @@ } }, { - "id": 19775, + "id": 19785, "properties": { "facing": "north", "half": "bottom", @@ -62624,7 +62704,7 @@ }, { "default": true, - "id": 19776, + "id": 19786, "properties": { "facing": "north", "half": "bottom", @@ -62633,113 +62713,13 @@ "waterlogged": "false" } }, - { - "id": 19777, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19778, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 19779, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 19780, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 19781, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19782, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 19783, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 19784, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 19785, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19786, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 19787, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -62747,9 +62727,9 @@ "id": 19788, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -62757,9 +62737,9 @@ "id": 19789, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -62767,14 +62747,114 @@ "id": 19790, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 19791, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19792, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19793, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19794, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19795, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19796, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19797, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19798, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19799, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19800, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19801, "properties": { "facing": "south", "half": "bottom", @@ -62784,7 +62864,7 @@ } }, { - "id": 19792, + "id": 19802, "properties": { "facing": "south", "half": "bottom", @@ -62793,113 +62873,13 @@ "waterlogged": "false" } }, - { - "id": 19793, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19794, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 19795, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 19796, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 19797, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19798, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 19799, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 19800, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 19801, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19802, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 19803, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -62907,9 +62887,9 @@ "id": 19804, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -62917,9 +62897,9 @@ "id": 19805, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -62927,14 +62907,114 @@ "id": 19806, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 19807, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19808, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19809, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19810, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19811, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19812, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19813, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19814, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19815, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19816, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19817, "properties": { "facing": "west", "half": "bottom", @@ -62944,7 +63024,7 @@ } }, { - "id": 19808, + "id": 19818, "properties": { "facing": "west", "half": "bottom", @@ -62953,113 +63033,13 @@ "waterlogged": "false" } }, - { - "id": 19809, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19810, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 19811, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 19812, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 19813, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19814, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 19815, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 19816, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 19817, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19818, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 19819, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -63067,14 +63047,114 @@ "id": 19820, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, { "id": 19821, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19822, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19823, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19824, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19825, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19826, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19827, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19828, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19829, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19830, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19831, "properties": { "facing": "east", "half": "bottom", @@ -63084,7 +63164,7 @@ } }, { - "id": 19822, + "id": 19832, "properties": { "facing": "east", "half": "bottom", @@ -63094,7 +63174,7 @@ } }, { - "id": 19823, + "id": 19833, "properties": { "facing": "east", "half": "bottom", @@ -63104,7 +63184,7 @@ } }, { - "id": 19824, + "id": 19834, "properties": { "facing": "east", "half": "bottom", @@ -63135,7 +63215,7 @@ }, "states": [ { - "id": 5769, + "id": 5778, "properties": { "facing": "north", "waterlogged": "true" @@ -63143,49 +63223,49 @@ }, { "default": true, - "id": 5770, + "id": 5779, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5771, + "id": 5780, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5772, + "id": 5781, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5773, + "id": 5782, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5774, + "id": 5783, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5775, + "id": 5784, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5776, + "id": 5785, "properties": { "facing": "east", "waterlogged": "false" @@ -63213,7 +63293,7 @@ }, "states": [ { - "id": 20353, + "id": 20363, "properties": { "facing": "north", "waterlogged": "true" @@ -63221,49 +63301,49 @@ }, { "default": true, - "id": 20354, + "id": 20364, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 20355, + "id": 20365, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 20356, + "id": 20366, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 20357, + "id": 20367, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 20358, + "id": 20368, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 20359, + "id": 20369, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 20360, + "id": 20370, "properties": { "facing": "east", "waterlogged": "false" @@ -63279,7 +63359,7 @@ "states": [ { "default": true, - "id": 20462 + "id": 20477 } ] }, @@ -63292,7 +63372,7 @@ "states": [ { "default": true, - "id": 23960 + "id": 23975 } ] }, @@ -63315,21 +63395,21 @@ }, "states": [ { - "id": 24307, + "id": 24322, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 24308, + "id": 24323, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 24309, + "id": 24324, "properties": { "type": "bottom", "waterlogged": "true" @@ -63337,21 +63417,21 @@ }, { "default": true, - "id": 24310, + "id": 24325, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 24311, + "id": 24326, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 24312, + "id": 24327, "properties": { "type": "double", "waterlogged": "false" @@ -63393,7 +63473,7 @@ }, "states": [ { - "id": 24209, + "id": 24224, "properties": { "facing": "north", "half": "top", @@ -63402,7 +63482,7 @@ } }, { - "id": 24210, + "id": 24225, "properties": { "facing": "north", "half": "top", @@ -63411,7 +63491,7 @@ } }, { - "id": 24211, + "id": 24226, "properties": { "facing": "north", "half": "top", @@ -63420,7 +63500,7 @@ } }, { - "id": 24212, + "id": 24227, "properties": { "facing": "north", "half": "top", @@ -63429,7 +63509,7 @@ } }, { - "id": 24213, + "id": 24228, "properties": { "facing": "north", "half": "top", @@ -63438,7 +63518,7 @@ } }, { - "id": 24214, + "id": 24229, "properties": { "facing": "north", "half": "top", @@ -63447,7 +63527,7 @@ } }, { - "id": 24215, + "id": 24230, "properties": { "facing": "north", "half": "top", @@ -63456,7 +63536,7 @@ } }, { - "id": 24216, + "id": 24231, "properties": { "facing": "north", "half": "top", @@ -63465,7 +63545,7 @@ } }, { - "id": 24217, + "id": 24232, "properties": { "facing": "north", "half": "top", @@ -63474,7 +63554,7 @@ } }, { - "id": 24218, + "id": 24233, "properties": { "facing": "north", "half": "top", @@ -63483,7 +63563,7 @@ } }, { - "id": 24219, + "id": 24234, "properties": { "facing": "north", "half": "bottom", @@ -63493,250 +63573,250 @@ }, { "default": true, - "id": 24220, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24221, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24222, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24223, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24224, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24225, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24226, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24227, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24228, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24229, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24230, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24231, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24232, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24233, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24234, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { "id": 24235, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24236, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24237, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { "id": 24238, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 24239, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "shape": "inner_right", + "waterlogged": "false" } }, { "id": 24240, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 24241, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "shape": "outer_left", + "waterlogged": "false" } }, { "id": 24242, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "shape": "outer_right", + "waterlogged": "true" } }, { "id": 24243, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "shape": "outer_right", + "waterlogged": "false" } }, { "id": 24244, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24245, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24246, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24247, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24248, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24249, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24250, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24251, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24252, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24253, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24254, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24255, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24256, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24257, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24258, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24259, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24260, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24261, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24262, "properties": { "facing": "south", "half": "bottom", @@ -63745,7 +63825,7 @@ } }, { - "id": 24248, + "id": 24263, "properties": { "facing": "south", "half": "bottom", @@ -63753,170 +63833,170 @@ "waterlogged": "false" } }, - { - "id": 24249, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24250, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24251, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24252, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24253, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24254, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24255, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24256, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24257, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24258, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24259, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24260, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24261, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24262, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24263, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 24264, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24265, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24266, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24267, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24268, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24269, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24270, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24271, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24272, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24273, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24274, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24275, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24276, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24277, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24278, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24279, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24280, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24281, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24282, "properties": { "facing": "west", "half": "bottom", @@ -63925,7 +64005,7 @@ } }, { - "id": 24268, + "id": 24283, "properties": { "facing": "west", "half": "bottom", @@ -63933,152 +64013,152 @@ "waterlogged": "false" } }, - { - "id": 24269, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24270, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24271, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24272, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24273, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24274, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24275, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24276, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24277, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24278, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24279, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24280, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24281, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24282, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24283, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 24284, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24285, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24286, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24287, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24288, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24289, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24290, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24291, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24292, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24293, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24294, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24295, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24296, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24297, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24298, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24299, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24300, "properties": { "facing": "east", "half": "bottom", @@ -64087,7 +64167,7 @@ } }, { - "id": 24286, + "id": 24301, "properties": { "facing": "east", "half": "bottom", @@ -64096,7 +64176,7 @@ } }, { - "id": 24287, + "id": 24302, "properties": { "facing": "east", "half": "bottom", @@ -64105,7 +64185,7 @@ } }, { - "id": 24288, + "id": 24303, "properties": { "facing": "east", "half": "bottom", @@ -64123,7 +64203,7 @@ "states": [ { "default": true, - "id": 11960 + "id": 11970 } ] }, @@ -64145,21 +64225,21 @@ }, "states": [ { - "id": 12179, + "id": 12189, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12180, + "id": 12190, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12181, + "id": 12191, "properties": { "type": "bottom", "waterlogged": "true" @@ -64167,21 +64247,21 @@ }, { "default": true, - "id": 12182, + "id": 12192, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12183, + "id": 12193, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12184, + "id": 12194, "properties": { "type": "double", "waterlogged": "false" @@ -64219,21 +64299,21 @@ }, "states": [ { - "id": 12125, + "id": 12135, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12126, + "id": 12136, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12127, + "id": 12137, "properties": { "type": "bottom", "waterlogged": "true" @@ -64241,21 +64321,21 @@ }, { "default": true, - "id": 12128, + "id": 12138, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12129, + "id": 12139, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12130, + "id": 12140, "properties": { "type": "double", "waterlogged": "false" @@ -64292,97 +64372,97 @@ "states": [ { "default": true, - "id": 11782, + "id": 11792, "properties": { "rotation": "0" } }, { - "id": 11783, + "id": 11793, "properties": { "rotation": "1" } }, { - "id": 11784, + "id": 11794, "properties": { "rotation": "2" } }, { - "id": 11785, + "id": 11795, "properties": { "rotation": "3" } }, { - "id": 11786, + "id": 11796, "properties": { "rotation": "4" } }, { - "id": 11787, + "id": 11797, "properties": { "rotation": "5" } }, { - "id": 11788, + "id": 11798, "properties": { "rotation": "6" } }, { - "id": 11789, + "id": 11799, "properties": { "rotation": "7" } }, { - "id": 11790, + "id": 11800, "properties": { "rotation": "8" } }, { - "id": 11791, + "id": 11801, "properties": { "rotation": "9" } }, { - "id": 11792, + "id": 11802, "properties": { "rotation": "10" } }, { - "id": 11793, + "id": 11803, "properties": { "rotation": "11" } }, { - "id": 11794, + "id": 11804, "properties": { "rotation": "12" } }, { - "id": 11795, + "id": 11805, "properties": { "rotation": "13" } }, { - "id": 11796, + "id": 11806, "properties": { "rotation": "14" } }, { - "id": 11797, + "id": 11807, "properties": { "rotation": "15" } @@ -64566,7 +64646,7 @@ }, "states": [ { - "id": 21898, + "id": 21913, "properties": { "candles": "1", "lit": "true", @@ -64574,7 +64654,7 @@ } }, { - "id": 21899, + "id": 21914, "properties": { "candles": "1", "lit": "true", @@ -64582,7 +64662,7 @@ } }, { - "id": 21900, + "id": 21915, "properties": { "candles": "1", "lit": "false", @@ -64591,7 +64671,7 @@ }, { "default": true, - "id": 21901, + "id": 21916, "properties": { "candles": "1", "lit": "false", @@ -64599,7 +64679,7 @@ } }, { - "id": 21902, + "id": 21917, "properties": { "candles": "2", "lit": "true", @@ -64607,7 +64687,7 @@ } }, { - "id": 21903, + "id": 21918, "properties": { "candles": "2", "lit": "true", @@ -64615,7 +64695,7 @@ } }, { - "id": 21904, + "id": 21919, "properties": { "candles": "2", "lit": "false", @@ -64623,7 +64703,7 @@ } }, { - "id": 21905, + "id": 21920, "properties": { "candles": "2", "lit": "false", @@ -64631,7 +64711,7 @@ } }, { - "id": 21906, + "id": 21921, "properties": { "candles": "3", "lit": "true", @@ -64639,7 +64719,7 @@ } }, { - "id": 21907, + "id": 21922, "properties": { "candles": "3", "lit": "true", @@ -64647,7 +64727,7 @@ } }, { - "id": 21908, + "id": 21923, "properties": { "candles": "3", "lit": "false", @@ -64655,7 +64735,7 @@ } }, { - "id": 21909, + "id": 21924, "properties": { "candles": "3", "lit": "false", @@ -64663,7 +64743,7 @@ } }, { - "id": 21910, + "id": 21925, "properties": { "candles": "4", "lit": "true", @@ -64671,7 +64751,7 @@ } }, { - "id": 21911, + "id": 21926, "properties": { "candles": "4", "lit": "true", @@ -64679,7 +64759,7 @@ } }, { - "id": 21912, + "id": 21927, "properties": { "candles": "4", "lit": "false", @@ -64687,7 +64767,7 @@ } }, { - "id": 21913, + "id": 21928, "properties": { "candles": "4", "lit": "false", @@ -64710,14 +64790,14 @@ }, "states": [ { - "id": 22030, + "id": 22045, "properties": { "lit": "true" } }, { "default": true, - "id": 22031, + "id": 22046, "properties": { "lit": "false" } @@ -64733,7 +64813,7 @@ "states": [ { "default": true, - "id": 11616 + "id": 11626 } ] }, @@ -64745,7 +64825,7 @@ "states": [ { "default": true, - "id": 13750 + "id": 13760 } ] }, @@ -64758,7 +64838,7 @@ "states": [ { "default": true, - "id": 13766 + "id": 13776 } ] }, @@ -64778,25 +64858,25 @@ "states": [ { "default": true, - "id": 13713, + "id": 13723, "properties": { "facing": "north" } }, { - "id": 13714, + "id": 13724, "properties": { "facing": "south" } }, { - "id": 13715, + "id": 13725, "properties": { "facing": "west" } }, { - "id": 13716, + "id": 13726, "properties": { "facing": "east" } @@ -64821,38 +64901,38 @@ }, "states": [ { - "id": 13635, + "id": 13645, "properties": { "facing": "north" } }, { - "id": 13636, + "id": 13646, "properties": { "facing": "east" } }, { - "id": 13637, + "id": 13647, "properties": { "facing": "south" } }, { - "id": 13638, + "id": 13648, "properties": { "facing": "west" } }, { "default": true, - "id": 13639, + "id": 13649, "properties": { "facing": "up" } }, { - "id": 13640, + "id": 13650, "properties": { "facing": "down" } @@ -64868,7 +64948,7 @@ "states": [ { "default": true, - "id": 6123 + "id": 6133 } ] }, @@ -64901,113 +64981,13 @@ ] }, "states": [ - { - "id": 10459, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10460, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10461, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10462, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10463, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10464, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10465, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10466, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10467, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10468, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10469, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -65015,9 +64995,9 @@ "id": 10470, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -65025,9 +65005,9 @@ "id": 10471, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -65035,14 +65015,114 @@ "id": 10472, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 10473, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10474, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10475, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10476, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10477, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10478, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10479, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10480, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10481, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10482, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10483, "properties": { "east": "true", "north": "false", @@ -65052,7 +65132,7 @@ } }, { - "id": 10474, + "id": 10484, "properties": { "east": "true", "north": "false", @@ -65061,118 +65141,118 @@ "west": "false" } }, - { - "id": 10475, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10476, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10477, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10478, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10479, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10480, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10481, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10482, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10483, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10484, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10485, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 10486, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10487, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10488, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10489, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10490, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10491, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10492, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10493, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10494, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10495, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10496, "properties": { "east": "false", "north": "false", @@ -65182,7 +65262,7 @@ } }, { - "id": 10487, + "id": 10497, "properties": { "east": "false", "north": "false", @@ -65192,7 +65272,7 @@ } }, { - "id": 10488, + "id": 10498, "properties": { "east": "false", "north": "false", @@ -65202,7 +65282,7 @@ } }, { - "id": 10489, + "id": 10499, "properties": { "east": "false", "north": "false", @@ -65213,7 +65293,7 @@ }, { "default": true, - "id": 10490, + "id": 10500, "properties": { "east": "false", "north": "false", @@ -65226,13 +65306,13 @@ }, "minecraft:cyan_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 10164 + "id": 10174 } ] }, @@ -65253,25 +65333,25 @@ "states": [ { "default": true, - "id": 11930, + "id": 11940, "properties": { "facing": "north" } }, { - "id": 11931, + "id": 11941, "properties": { "facing": "south" } }, { - "id": 11932, + "id": 11942, "properties": { "facing": "west" } }, { - "id": 11933, + "id": 11943, "properties": { "facing": "east" } @@ -65286,7 +65366,7 @@ "states": [ { "default": true, - "id": 2099 + "id": 2102 } ] }, @@ -65306,25 +65386,25 @@ "states": [ { "default": true, - "id": 9914, + "id": 9924, "properties": { "facing": "north" } }, { - "id": 9915, + "id": 9925, "properties": { "facing": "south" } }, { - "id": 9916, + "id": 9926, "properties": { "facing": "west" } }, { - "id": 9917, + "id": 9927, "properties": { "facing": "east" } @@ -65345,7 +65425,7 @@ "states": [ { "default": true, - "id": 2118 + "id": 2121 } ] }, @@ -65375,7 +65455,7 @@ }, "states": [ { - "id": 9530, + "id": 9540, "properties": { "face": "floor", "facing": "north", @@ -65383,7 +65463,7 @@ } }, { - "id": 9531, + "id": 9541, "properties": { "face": "floor", "facing": "north", @@ -65391,7 +65471,7 @@ } }, { - "id": 9532, + "id": 9542, "properties": { "face": "floor", "facing": "south", @@ -65399,7 +65479,7 @@ } }, { - "id": 9533, + "id": 9543, "properties": { "face": "floor", "facing": "south", @@ -65407,7 +65487,7 @@ } }, { - "id": 9534, + "id": 9544, "properties": { "face": "floor", "facing": "west", @@ -65415,7 +65495,7 @@ } }, { - "id": 9535, + "id": 9545, "properties": { "face": "floor", "facing": "west", @@ -65423,7 +65503,7 @@ } }, { - "id": 9536, + "id": 9546, "properties": { "face": "floor", "facing": "east", @@ -65431,7 +65511,7 @@ } }, { - "id": 9537, + "id": 9547, "properties": { "face": "floor", "facing": "east", @@ -65439,7 +65519,7 @@ } }, { - "id": 9538, + "id": 9548, "properties": { "face": "wall", "facing": "north", @@ -65448,95 +65528,95 @@ }, { "default": true, - "id": 9539, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9540, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 9541, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 9542, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 9543, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 9544, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 9545, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 9546, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 9547, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9548, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { "id": 9549, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "north", "powered": "false" } }, { "id": 9550, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9551, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9552, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 9553, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 9554, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 9555, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 9556, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 9557, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 9558, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9559, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9560, "properties": { "face": "ceiling", "facing": "west", @@ -65544,7 +65624,7 @@ } }, { - "id": 9551, + "id": 9561, "properties": { "face": "ceiling", "facing": "west", @@ -65552,7 +65632,7 @@ } }, { - "id": 9552, + "id": 9562, "properties": { "face": "ceiling", "facing": "east", @@ -65560,7 +65640,7 @@ } }, { - "id": 9553, + "id": 9563, "properties": { "face": "ceiling", "facing": "east", @@ -65600,108 +65680,108 @@ ] }, "states": [ - { - "id": 13091, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13092, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13093, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13094, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13095, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13096, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13097, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13098, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13099, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13100, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 13101, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13102, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13103, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13104, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13105, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13106, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13107, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13108, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13109, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13110, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13111, "properties": { "facing": "north", "half": "lower", @@ -65712,152 +65792,52 @@ }, { "default": true, - "id": 13102, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13103, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13104, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13105, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13106, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13107, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13108, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13109, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13110, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13111, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { "id": 13112, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 13113, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 13114, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 13115, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "true" } }, { "id": 13116, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "false" } }, @@ -65865,9 +65845,9 @@ "id": 13117, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -65875,9 +65855,9 @@ "id": 13118, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -65885,9 +65865,9 @@ "id": 13119, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -65895,14 +65875,114 @@ "id": 13120, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 13121, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13122, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13123, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13124, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13125, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13126, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13127, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13128, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13129, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13130, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13131, "properties": { "facing": "south", "half": "lower", @@ -65912,7 +65992,7 @@ } }, { - "id": 13122, + "id": 13132, "properties": { "facing": "south", "half": "lower", @@ -65921,113 +66001,13 @@ "powered": "false" } }, - { - "id": 13123, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13124, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13125, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13126, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13127, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13128, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13129, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13130, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13131, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13132, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 13133, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -66035,9 +66015,9 @@ "id": 13134, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -66045,9 +66025,9 @@ "id": 13135, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -66055,14 +66035,114 @@ "id": 13136, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 13137, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13138, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13139, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13140, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13141, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13142, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13143, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13144, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13145, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13146, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13147, "properties": { "facing": "west", "half": "lower", @@ -66072,7 +66152,7 @@ } }, { - "id": 13138, + "id": 13148, "properties": { "facing": "west", "half": "lower", @@ -66081,113 +66161,13 @@ "powered": "false" } }, - { - "id": 13139, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13140, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13141, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13142, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13143, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13144, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13145, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13146, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13147, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13148, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 13149, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -66195,14 +66175,114 @@ "id": 13150, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 13151, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13152, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13153, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13154, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13155, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13156, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13157, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13158, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13159, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13160, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13161, "properties": { "facing": "east", "half": "lower", @@ -66212,7 +66292,7 @@ } }, { - "id": 13152, + "id": 13162, "properties": { "facing": "east", "half": "lower", @@ -66222,7 +66302,7 @@ } }, { - "id": 13153, + "id": 13163, "properties": { "facing": "east", "half": "lower", @@ -66232,7 +66312,7 @@ } }, { - "id": 13154, + "id": 13164, "properties": { "facing": "east", "half": "lower", @@ -66271,113 +66351,13 @@ ] }, "states": [ - { - "id": 12643, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12644, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12645, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12646, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12647, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12648, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12649, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12650, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12651, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12652, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 12653, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -66385,9 +66365,9 @@ "id": 12654, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -66395,9 +66375,9 @@ "id": 12655, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -66405,14 +66385,114 @@ "id": 12656, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 12657, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12658, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12659, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12660, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12661, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12662, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12663, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12664, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12665, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12666, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12667, "properties": { "east": "true", "north": "false", @@ -66422,7 +66502,7 @@ } }, { - "id": 12658, + "id": 12668, "properties": { "east": "true", "north": "false", @@ -66431,118 +66511,118 @@ "west": "false" } }, - { - "id": 12659, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12660, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12661, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12662, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12663, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12664, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12665, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12666, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12667, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12668, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 12669, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 12670, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12671, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12672, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12673, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12674, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12675, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12676, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12677, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12678, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12679, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12680, "properties": { "east": "false", "north": "false", @@ -66552,7 +66632,7 @@ } }, { - "id": 12671, + "id": 12681, "properties": { "east": "false", "north": "false", @@ -66562,7 +66642,7 @@ } }, { - "id": 12672, + "id": 12682, "properties": { "east": "false", "north": "false", @@ -66572,7 +66652,7 @@ } }, { - "id": 12673, + "id": 12683, "properties": { "east": "false", "north": "false", @@ -66583,7 +66663,7 @@ }, { "default": true, - "id": 12674, + "id": 12684, "properties": { "east": "false", "north": "false", @@ -66622,7 +66702,7 @@ }, "states": [ { - "id": 12355, + "id": 12365, "properties": { "facing": "north", "in_wall": "true", @@ -66631,7 +66711,7 @@ } }, { - "id": 12356, + "id": 12366, "properties": { "facing": "north", "in_wall": "true", @@ -66640,7 +66720,7 @@ } }, { - "id": 12357, + "id": 12367, "properties": { "facing": "north", "in_wall": "true", @@ -66649,7 +66729,7 @@ } }, { - "id": 12358, + "id": 12368, "properties": { "facing": "north", "in_wall": "true", @@ -66658,7 +66738,7 @@ } }, { - "id": 12359, + "id": 12369, "properties": { "facing": "north", "in_wall": "false", @@ -66667,7 +66747,7 @@ } }, { - "id": 12360, + "id": 12370, "properties": { "facing": "north", "in_wall": "false", @@ -66676,7 +66756,7 @@ } }, { - "id": 12361, + "id": 12371, "properties": { "facing": "north", "in_wall": "false", @@ -66686,7 +66766,7 @@ }, { "default": true, - "id": 12362, + "id": 12372, "properties": { "facing": "north", "in_wall": "false", @@ -66694,143 +66774,143 @@ "powered": "false" } }, - { - "id": 12363, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 12364, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 12365, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 12366, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 12367, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 12368, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 12369, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 12370, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 12371, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 12372, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, { "id": 12373, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12374, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 12375, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "true" } }, { "id": 12376, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "false" } }, { "id": 12377, "properties": { - "facing": "west", + "facing": "south", "in_wall": "false", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12378, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 12379, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 12380, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 12381, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 12382, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 12383, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 12384, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 12385, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 12386, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 12387, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 12388, "properties": { "facing": "west", "in_wall": "false", @@ -66839,7 +66919,7 @@ } }, { - "id": 12379, + "id": 12389, "properties": { "facing": "east", "in_wall": "true", @@ -66848,7 +66928,7 @@ } }, { - "id": 12380, + "id": 12390, "properties": { "facing": "east", "in_wall": "true", @@ -66857,7 +66937,7 @@ } }, { - "id": 12381, + "id": 12391, "properties": { "facing": "east", "in_wall": "true", @@ -66866,7 +66946,7 @@ } }, { - "id": 12382, + "id": 12392, "properties": { "facing": "east", "in_wall": "true", @@ -66875,7 +66955,7 @@ } }, { - "id": 12383, + "id": 12393, "properties": { "facing": "east", "in_wall": "false", @@ -66884,7 +66964,7 @@ } }, { - "id": 12384, + "id": 12394, "properties": { "facing": "east", "in_wall": "false", @@ -66893,7 +66973,7 @@ } }, { - "id": 12385, + "id": 12395, "properties": { "facing": "east", "in_wall": "false", @@ -66902,7 +66982,7 @@ } }, { - "id": 12386, + "id": 12396, "properties": { "facing": "east", "in_wall": "false", @@ -66947,240 +67027,240 @@ ] }, "states": [ - { - "id": 5313, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5314, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5315, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5316, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5317, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5318, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5319, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5320, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5321, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, { "id": 5322, "properties": { "attached": "true", - "rotation": "4", - "waterlogged": "false" + "rotation": "0", + "waterlogged": "true" } }, { "id": 5323, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "true" + "rotation": "0", + "waterlogged": "false" } }, { "id": 5324, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5325, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5326, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5327, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5328, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5329, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5330, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5331, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5332, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5333, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5334, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5335, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5336, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5337, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5338, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5339, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5340, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "false" + "rotation": "9", + "waterlogged": "true" } }, { "id": 5341, "properties": { "attached": "true", - "rotation": "14", - "waterlogged": "true" + "rotation": "9", + "waterlogged": "false" } }, { "id": 5342, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5343, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5344, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5345, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5346, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5347, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5348, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5349, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5350, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5351, "properties": { "attached": "true", "rotation": "14", @@ -67188,7 +67268,7 @@ } }, { - "id": 5343, + "id": 5352, "properties": { "attached": "true", "rotation": "15", @@ -67196,7 +67276,7 @@ } }, { - "id": 5344, + "id": 5353, "properties": { "attached": "true", "rotation": "15", @@ -67204,7 +67284,7 @@ } }, { - "id": 5345, + "id": 5354, "properties": { "attached": "false", "rotation": "0", @@ -67213,215 +67293,215 @@ }, { "default": true, - "id": 5346, + "id": 5355, "properties": { "attached": "false", "rotation": "0", "waterlogged": "false" } }, - { - "id": 5347, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5348, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5349, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5350, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5351, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5352, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5353, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5354, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5355, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 5356, "properties": { "attached": "false", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5357, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5358, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5359, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5360, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5361, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5362, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5363, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5364, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5365, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5366, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5367, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5368, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5369, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5370, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5371, "properties": { "attached": "false", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5372, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5373, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5374, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5375, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5376, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5377, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5378, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5379, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5380, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5381, "properties": { "attached": "false", "rotation": "13", @@ -67429,7 +67509,7 @@ } }, { - "id": 5373, + "id": 5382, "properties": { "attached": "false", "rotation": "14", @@ -67437,7 +67517,7 @@ } }, { - "id": 5374, + "id": 5383, "properties": { "attached": "false", "rotation": "14", @@ -67445,7 +67525,7 @@ } }, { - "id": 5375, + "id": 5384, "properties": { "attached": "false", "rotation": "15", @@ -67453,7 +67533,7 @@ } }, { - "id": 5376, + "id": 5385, "properties": { "attached": "false", "rotation": "15", @@ -67464,7 +67544,8 @@ }, "minecraft:dark_oak_leaves": { "definition": { - "type": "minecraft:leaves", + "type": "minecraft:tinted_particle_leaves", + "leaf_particle_chance": 0.01, "properties": {} }, "properties": { @@ -67774,14 +67855,14 @@ }, "states": [ { - "id": 5895, + "id": 5904, "properties": { "powered": "true" } }, { "default": true, - "id": 5896, + "id": 5905, "properties": { "powered": "false" } @@ -67848,7 +67929,7 @@ }, "states": [ { - "id": 4549, + "id": 4558, "properties": { "rotation": "0", "waterlogged": "true" @@ -67856,217 +67937,217 @@ }, { "default": true, - "id": 4550, + "id": 4559, "properties": { "rotation": "0", "waterlogged": "false" } }, - { - "id": 4551, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4552, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4553, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4554, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4555, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4556, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4557, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4558, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4559, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 4560, "properties": { - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 4561, "properties": { - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 4562, "properties": { - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 4563, "properties": { - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 4564, "properties": { - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 4565, "properties": { - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 4566, "properties": { - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 4567, "properties": { - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 4568, "properties": { - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 4569, "properties": { - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 4570, "properties": { - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 4571, "properties": { - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 4572, "properties": { - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 4573, "properties": { - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 4574, "properties": { - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 4575, "properties": { - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 4576, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4577, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4578, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4579, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4580, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4581, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4582, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4583, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4584, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4585, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 4577, + "id": 4586, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 4578, + "id": 4587, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 4579, + "id": 4588, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 4580, + "id": 4589, "properties": { "rotation": "15", "waterlogged": "false" @@ -68092,21 +68173,21 @@ }, "states": [ { - "id": 12077, + "id": 12087, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12078, + "id": 12088, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12079, + "id": 12089, "properties": { "type": "bottom", "waterlogged": "true" @@ -68114,21 +68195,21 @@ }, { "default": true, - "id": 12080, + "id": 12090, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12081, + "id": 12091, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12082, + "id": 12092, "properties": { "type": "double", "waterlogged": "false" @@ -68168,98 +68249,98 @@ ] }, "states": [ - { - "id": 10843, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10844, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10845, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10846, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10847, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10848, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10849, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10850, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10851, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10852, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 10853, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10854, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10855, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10856, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10857, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10858, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10859, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10860, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10861, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10862, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10863, "properties": { "facing": "north", "half": "bottom", @@ -68269,100 +68350,10 @@ }, { "default": true, - "id": 10854, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10855, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10856, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10857, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10858, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10859, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10860, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10861, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10862, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10863, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 10864, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -68370,8 +68361,8 @@ { "id": 10865, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -68379,8 +68370,8 @@ { "id": 10866, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -68388,8 +68379,8 @@ { "id": 10867, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -68397,8 +68388,8 @@ { "id": 10868, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -68406,8 +68397,8 @@ { "id": 10869, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -68415,8 +68406,8 @@ { "id": 10870, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -68424,8 +68415,8 @@ { "id": 10871, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -68433,8 +68424,8 @@ { "id": 10872, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -68443,7 +68434,7 @@ "id": 10873, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -68452,7 +68443,7 @@ "id": 10874, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -68461,7 +68452,7 @@ "id": 10875, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -68470,7 +68461,7 @@ "id": 10876, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -68479,7 +68470,7 @@ "id": 10877, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -68488,7 +68479,7 @@ "id": 10878, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -68497,7 +68488,7 @@ "id": 10879, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -68506,7 +68497,7 @@ "id": 10880, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -68515,7 +68506,7 @@ "id": 10881, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -68524,7 +68515,7 @@ "id": 10882, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -68532,8 +68523,8 @@ { "id": 10883, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -68541,8 +68532,8 @@ { "id": 10884, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -68550,8 +68541,8 @@ { "id": 10885, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -68559,8 +68550,8 @@ { "id": 10886, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -68568,8 +68559,8 @@ { "id": 10887, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -68577,8 +68568,8 @@ { "id": 10888, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -68586,8 +68577,8 @@ { "id": 10889, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -68595,8 +68586,8 @@ { "id": 10890, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -68604,8 +68595,8 @@ { "id": 10891, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -68613,8 +68604,8 @@ { "id": 10892, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -68623,7 +68614,7 @@ "id": 10893, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -68632,7 +68623,7 @@ "id": 10894, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -68641,7 +68632,7 @@ "id": 10895, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -68650,7 +68641,7 @@ "id": 10896, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -68659,7 +68650,7 @@ "id": 10897, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -68668,7 +68659,7 @@ "id": 10898, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -68677,7 +68668,7 @@ "id": 10899, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -68686,7 +68677,7 @@ "id": 10900, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -68695,7 +68686,7 @@ "id": 10901, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -68704,7 +68695,7 @@ "id": 10902, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -68712,8 +68703,8 @@ { "id": 10903, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -68721,8 +68712,8 @@ { "id": 10904, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -68730,8 +68721,8 @@ { "id": 10905, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -68739,8 +68730,8 @@ { "id": 10906, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -68748,8 +68739,8 @@ { "id": 10907, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -68757,8 +68748,8 @@ { "id": 10908, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -68766,8 +68757,8 @@ { "id": 10909, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -68775,8 +68766,8 @@ { "id": 10910, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -68784,8 +68775,8 @@ { "id": 10911, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -68793,8 +68784,8 @@ { "id": 10912, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -68803,7 +68794,7 @@ "id": 10913, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -68812,7 +68803,7 @@ "id": 10914, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -68821,7 +68812,7 @@ "id": 10915, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -68830,7 +68821,7 @@ "id": 10916, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -68839,7 +68830,7 @@ "id": 10917, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -68848,7 +68839,7 @@ "id": 10918, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -68857,7 +68848,7 @@ "id": 10919, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -68866,7 +68857,7 @@ "id": 10920, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -68875,13 +68866,103 @@ "id": 10921, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 10922, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10923, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10924, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10925, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10926, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10927, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10928, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10929, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10930, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10931, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10932, "properties": { "facing": "east", "half": "bottom", @@ -68922,118 +69003,118 @@ ] }, "states": [ - { - "id": 6514, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6515, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6516, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6517, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6518, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6519, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6520, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6521, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6522, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6523, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6524, "properties": { "facing": "north", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, { "id": 6525, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6526, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6527, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6528, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6529, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6530, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6531, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6532, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6533, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6534, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6535, "properties": { "facing": "north", "half": "bottom", @@ -69043,7 +69124,7 @@ } }, { - "id": 6526, + "id": 6536, "properties": { "facing": "north", "half": "bottom", @@ -69053,7 +69134,7 @@ } }, { - "id": 6527, + "id": 6537, "properties": { "facing": "north", "half": "bottom", @@ -69063,7 +69144,7 @@ } }, { - "id": 6528, + "id": 6538, "properties": { "facing": "north", "half": "bottom", @@ -69074,7 +69155,7 @@ }, { "default": true, - "id": 6529, + "id": 6539, "properties": { "facing": "north", "half": "bottom", @@ -69083,113 +69164,13 @@ "waterlogged": "false" } }, - { - "id": 6530, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6531, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6532, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6533, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6534, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6535, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6536, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6537, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6538, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6539, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6540, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -69197,9 +69178,9 @@ "id": 6541, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -69207,9 +69188,9 @@ "id": 6542, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -69217,14 +69198,114 @@ "id": 6543, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6544, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6545, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6546, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6547, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6548, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6549, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6550, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6551, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6552, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6553, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6554, "properties": { "facing": "south", "half": "bottom", @@ -69234,7 +69315,7 @@ } }, { - "id": 6545, + "id": 6555, "properties": { "facing": "south", "half": "bottom", @@ -69243,113 +69324,13 @@ "waterlogged": "false" } }, - { - "id": 6546, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6547, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6548, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6549, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6550, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6551, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6552, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6553, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6554, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6555, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6556, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -69357,9 +69338,9 @@ "id": 6557, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -69367,9 +69348,9 @@ "id": 6558, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -69377,14 +69358,114 @@ "id": 6559, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6560, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6561, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6562, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6563, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6564, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6565, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6566, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6567, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6568, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6569, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6570, "properties": { "facing": "west", "half": "bottom", @@ -69394,7 +69475,7 @@ } }, { - "id": 6561, + "id": 6571, "properties": { "facing": "west", "half": "bottom", @@ -69403,113 +69484,13 @@ "waterlogged": "false" } }, - { - "id": 6562, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6563, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6564, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6565, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6566, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6567, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6568, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6569, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6570, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6571, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6572, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -69517,14 +69498,114 @@ "id": 6573, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, { "id": 6574, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6575, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6576, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6577, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6578, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6579, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6580, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6581, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6582, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6583, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6584, "properties": { "facing": "east", "half": "bottom", @@ -69534,7 +69615,7 @@ } }, { - "id": 6575, + "id": 6585, "properties": { "facing": "east", "half": "bottom", @@ -69544,7 +69625,7 @@ } }, { - "id": 6576, + "id": 6586, "properties": { "facing": "east", "half": "bottom", @@ -69554,7 +69635,7 @@ } }, { - "id": 6577, + "id": 6587, "properties": { "facing": "east", "half": "bottom", @@ -69585,7 +69666,7 @@ }, "states": [ { - "id": 5745, + "id": 5754, "properties": { "facing": "north", "waterlogged": "true" @@ -69593,49 +69674,49 @@ }, { "default": true, - "id": 5746, + "id": 5755, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5747, + "id": 5756, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5748, + "id": 5757, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5749, + "id": 5758, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5750, + "id": 5759, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5751, + "id": 5760, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5752, + "id": 5761, "properties": { "facing": "east", "waterlogged": "false" @@ -69663,7 +69744,7 @@ }, "states": [ { - "id": 4897, + "id": 4906, "properties": { "facing": "north", "waterlogged": "true" @@ -69671,49 +69752,49 @@ }, { "default": true, - "id": 4898, + "id": 4907, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 4899, + "id": 4908, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 4900, + "id": 4909, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 4901, + "id": 4910, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 4902, + "id": 4911, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 4903, + "id": 4912, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4904, + "id": 4913, "properties": { "facing": "east", "waterlogged": "false" @@ -69763,7 +69844,7 @@ "states": [ { "default": true, - "id": 11344 + "id": 11354 } ] }, @@ -69785,21 +69866,21 @@ }, "states": [ { - "id": 11597, + "id": 11607, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11598, + "id": 11608, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11599, + "id": 11609, "properties": { "type": "bottom", "waterlogged": "true" @@ -69807,21 +69888,21 @@ }, { "default": true, - "id": 11600, + "id": 11610, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11601, + "id": 11611, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11602, + "id": 11612, "properties": { "type": "double", "waterlogged": "false" @@ -69861,98 +69942,98 @@ ] }, "states": [ - { - "id": 11505, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 11506, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 11507, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 11508, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 11509, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 11510, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 11511, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 11512, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 11513, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11514, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 11515, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11516, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11517, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11518, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11519, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11520, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11521, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11522, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11523, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11524, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11525, "properties": { "facing": "north", "half": "bottom", @@ -69962,100 +70043,10 @@ }, { "default": true, - "id": 11516, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 11517, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 11518, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 11519, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 11520, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 11521, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 11522, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 11523, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11524, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 11525, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 11526, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -70063,8 +70054,8 @@ { "id": 11527, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -70072,8 +70063,8 @@ { "id": 11528, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -70081,8 +70072,8 @@ { "id": 11529, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -70090,8 +70081,8 @@ { "id": 11530, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -70099,8 +70090,8 @@ { "id": 11531, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -70108,8 +70099,8 @@ { "id": 11532, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -70117,8 +70108,8 @@ { "id": 11533, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -70126,8 +70117,8 @@ { "id": 11534, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -70136,7 +70127,7 @@ "id": 11535, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -70145,7 +70136,7 @@ "id": 11536, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -70154,7 +70145,7 @@ "id": 11537, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -70163,7 +70154,7 @@ "id": 11538, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -70172,7 +70163,7 @@ "id": 11539, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -70181,7 +70172,7 @@ "id": 11540, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -70190,7 +70181,7 @@ "id": 11541, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -70199,7 +70190,7 @@ "id": 11542, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -70208,7 +70199,7 @@ "id": 11543, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -70217,7 +70208,7 @@ "id": 11544, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -70225,8 +70216,8 @@ { "id": 11545, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -70234,8 +70225,8 @@ { "id": 11546, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -70243,8 +70234,8 @@ { "id": 11547, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -70252,8 +70243,8 @@ { "id": 11548, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -70261,8 +70252,8 @@ { "id": 11549, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -70270,8 +70261,8 @@ { "id": 11550, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -70279,8 +70270,8 @@ { "id": 11551, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -70288,8 +70279,8 @@ { "id": 11552, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -70297,8 +70288,8 @@ { "id": 11553, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -70306,8 +70297,8 @@ { "id": 11554, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -70316,7 +70307,7 @@ "id": 11555, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -70325,7 +70316,7 @@ "id": 11556, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -70334,7 +70325,7 @@ "id": 11557, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -70343,7 +70334,7 @@ "id": 11558, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -70352,7 +70343,7 @@ "id": 11559, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -70361,7 +70352,7 @@ "id": 11560, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -70370,7 +70361,7 @@ "id": 11561, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -70379,7 +70370,7 @@ "id": 11562, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -70388,7 +70379,7 @@ "id": 11563, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -70397,7 +70388,7 @@ "id": 11564, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -70405,8 +70396,8 @@ { "id": 11565, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -70414,8 +70405,8 @@ { "id": 11566, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -70423,8 +70414,8 @@ { "id": 11567, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -70432,8 +70423,8 @@ { "id": 11568, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -70441,8 +70432,8 @@ { "id": 11569, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -70450,8 +70441,8 @@ { "id": 11570, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -70459,8 +70450,8 @@ { "id": 11571, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -70468,8 +70459,8 @@ { "id": 11572, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -70477,8 +70468,8 @@ { "id": 11573, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -70486,8 +70477,8 @@ { "id": 11574, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -70496,7 +70487,7 @@ "id": 11575, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -70505,7 +70496,7 @@ "id": 11576, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -70514,7 +70505,7 @@ "id": 11577, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -70523,7 +70514,7 @@ "id": 11578, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -70532,7 +70523,7 @@ "id": 11579, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -70541,7 +70532,7 @@ "id": 11580, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -70550,7 +70541,7 @@ "id": 11581, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -70559,7 +70550,7 @@ "id": 11582, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -70568,13 +70559,103 @@ "id": 11583, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 11584, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11585, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11586, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11587, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11588, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11589, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11590, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11591, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11592, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11593, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11594, "properties": { "facing": "east", "half": "bottom", @@ -70615,112 +70696,112 @@ }, "states": [ { - "id": 9990, + "id": 10000, "properties": { "inverted": "true", "power": "0" } }, { - "id": 9991, + "id": 10001, "properties": { "inverted": "true", "power": "1" } }, { - "id": 9992, + "id": 10002, "properties": { "inverted": "true", "power": "2" } }, { - "id": 9993, + "id": 10003, "properties": { "inverted": "true", "power": "3" } }, { - "id": 9994, + "id": 10004, "properties": { "inverted": "true", "power": "4" } }, { - "id": 9995, + "id": 10005, "properties": { "inverted": "true", "power": "5" } }, { - "id": 9996, + "id": 10006, "properties": { "inverted": "true", "power": "6" } }, { - "id": 9997, + "id": 10007, "properties": { "inverted": "true", "power": "7" } }, { - "id": 9998, + "id": 10008, "properties": { "inverted": "true", "power": "8" } }, { - "id": 9999, + "id": 10009, "properties": { "inverted": "true", "power": "9" } }, { - "id": 10000, + "id": 10010, "properties": { "inverted": "true", "power": "10" } }, { - "id": 10001, + "id": 10011, "properties": { "inverted": "true", "power": "11" } }, { - "id": 10002, + "id": 10012, "properties": { "inverted": "true", "power": "12" } }, { - "id": 10003, + "id": 10013, "properties": { "inverted": "true", "power": "13" } }, { - "id": 10004, + "id": 10014, "properties": { "inverted": "true", "power": "14" } }, { - "id": 10005, + "id": 10015, "properties": { "inverted": "true", "power": "15" @@ -70728,112 +70809,112 @@ }, { "default": true, - "id": 10006, + "id": 10016, "properties": { "inverted": "false", "power": "0" } }, { - "id": 10007, + "id": 10017, "properties": { "inverted": "false", "power": "1" } }, { - "id": 10008, + "id": 10018, "properties": { "inverted": "false", "power": "2" } }, { - "id": 10009, + "id": 10019, "properties": { "inverted": "false", "power": "3" } }, { - "id": 10010, + "id": 10020, "properties": { "inverted": "false", "power": "4" } }, { - "id": 10011, + "id": 10021, "properties": { "inverted": "false", "power": "5" } }, { - "id": 10012, + "id": 10022, "properties": { "inverted": "false", "power": "6" } }, { - "id": 10013, + "id": 10023, "properties": { "inverted": "false", "power": "7" } }, { - "id": 10014, + "id": 10024, "properties": { "inverted": "false", "power": "8" } }, { - "id": 10015, + "id": 10025, "properties": { "inverted": "false", "power": "9" } }, { - "id": 10016, + "id": 10026, "properties": { "inverted": "false", "power": "10" } }, { - "id": 10017, + "id": 10027, "properties": { "inverted": "false", "power": "11" } }, { - "id": 10018, + "id": 10028, "properties": { "inverted": "false", "power": "12" } }, { - "id": 10019, + "id": 10029, "properties": { "inverted": "false", "power": "13" } }, { - "id": 10020, + "id": 10030, "properties": { "inverted": "false", "power": "14" } }, { - "id": 10021, + "id": 10031, "properties": { "inverted": "false", "power": "15" @@ -70855,13 +70936,13 @@ "states": [ { "default": true, - "id": 13828, + "id": 13838, "properties": { "waterlogged": "true" } }, { - "id": 13829, + "id": 13839, "properties": { "waterlogged": "false" } @@ -70876,7 +70957,7 @@ "states": [ { "default": true, - "id": 13817 + "id": 13827 } ] }, @@ -70894,13 +70975,13 @@ "states": [ { "default": true, - "id": 13848, + "id": 13858, "properties": { "waterlogged": "true" } }, { - "id": 13849, + "id": 13859, "properties": { "waterlogged": "false" } @@ -70927,56 +71008,56 @@ "states": [ { "default": true, - "id": 13874, + "id": 13884, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 13875, + "id": 13885, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 13876, + "id": 13886, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 13877, + "id": 13887, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 13878, + "id": 13888, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 13879, + "id": 13889, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 13880, + "id": 13890, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 13881, + "id": 13891, "properties": { "facing": "east", "waterlogged": "false" @@ -70998,13 +71079,13 @@ "states": [ { "default": true, - "id": 13830, + "id": 13840, "properties": { "waterlogged": "true" } }, { - "id": 13831, + "id": 13841, "properties": { "waterlogged": "false" } @@ -71019,7 +71100,7 @@ "states": [ { "default": true, - "id": 13818 + "id": 13828 } ] }, @@ -71037,13 +71118,13 @@ "states": [ { "default": true, - "id": 13850, + "id": 13860, "properties": { "waterlogged": "true" } }, { - "id": 13851, + "id": 13861, "properties": { "waterlogged": "false" } @@ -71070,56 +71151,56 @@ "states": [ { "default": true, - "id": 13882, + "id": 13892, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 13883, + "id": 13893, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 13884, + "id": 13894, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 13885, + "id": 13895, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 13886, + "id": 13896, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 13887, + "id": 13897, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 13888, + "id": 13898, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 13889, + "id": 13899, "properties": { "facing": "east", "waterlogged": "false" @@ -71129,7 +71210,7 @@ }, "minecraft:dead_bush": { "definition": { - "type": "minecraft:dead_bush", + "type": "minecraft:dry_vegetation", "properties": {} }, "states": [ @@ -71153,13 +71234,13 @@ "states": [ { "default": true, - "id": 13832, + "id": 13842, "properties": { "waterlogged": "true" } }, { - "id": 13833, + "id": 13843, "properties": { "waterlogged": "false" } @@ -71174,7 +71255,7 @@ "states": [ { "default": true, - "id": 13819 + "id": 13829 } ] }, @@ -71192,13 +71273,13 @@ "states": [ { "default": true, - "id": 13852, + "id": 13862, "properties": { "waterlogged": "true" } }, { - "id": 13853, + "id": 13863, "properties": { "waterlogged": "false" } @@ -71225,56 +71306,56 @@ "states": [ { "default": true, - "id": 13890, + "id": 13900, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 13891, + "id": 13901, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 13892, + "id": 13902, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 13893, + "id": 13903, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 13894, + "id": 13904, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 13895, + "id": 13905, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 13896, + "id": 13906, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 13897, + "id": 13907, "properties": { "facing": "east", "waterlogged": "false" @@ -71296,13 +71377,13 @@ "states": [ { "default": true, - "id": 13834, + "id": 13844, "properties": { "waterlogged": "true" } }, { - "id": 13835, + "id": 13845, "properties": { "waterlogged": "false" } @@ -71317,7 +71398,7 @@ "states": [ { "default": true, - "id": 13820 + "id": 13830 } ] }, @@ -71335,13 +71416,13 @@ "states": [ { "default": true, - "id": 13854, + "id": 13864, "properties": { "waterlogged": "true" } }, { - "id": 13855, + "id": 13865, "properties": { "waterlogged": "false" } @@ -71368,56 +71449,56 @@ "states": [ { "default": true, - "id": 13898, + "id": 13908, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 13899, + "id": 13909, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 13900, + "id": 13910, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 13901, + "id": 13911, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 13902, + "id": 13912, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 13903, + "id": 13913, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 13904, + "id": 13914, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 13905, + "id": 13915, "properties": { "facing": "east", "waterlogged": "false" @@ -71439,13 +71520,13 @@ "states": [ { "default": true, - "id": 13826, + "id": 13836, "properties": { "waterlogged": "true" } }, { - "id": 13827, + "id": 13837, "properties": { "waterlogged": "false" } @@ -71460,7 +71541,7 @@ "states": [ { "default": true, - "id": 13816 + "id": 13826 } ] }, @@ -71478,13 +71559,13 @@ "states": [ { "default": true, - "id": 13846, + "id": 13856, "properties": { "waterlogged": "true" } }, { - "id": 13847, + "id": 13857, "properties": { "waterlogged": "false" } @@ -71511,56 +71592,56 @@ "states": [ { "default": true, - "id": 13866, + "id": 13876, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 13867, + "id": 13877, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 13868, + "id": 13878, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 13869, + "id": 13879, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 13870, + "id": 13880, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 13871, + "id": 13881, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 13872, + "id": 13882, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 13873, + "id": 13883, "properties": { "facing": "east", "waterlogged": "false" @@ -71591,7 +71672,7 @@ }, "states": [ { - "id": 27587, + "id": 27634, "properties": { "cracked": "true", "facing": "north", @@ -71599,7 +71680,7 @@ } }, { - "id": 27588, + "id": 27635, "properties": { "cracked": "true", "facing": "north", @@ -71607,7 +71688,7 @@ } }, { - "id": 27589, + "id": 27636, "properties": { "cracked": "true", "facing": "south", @@ -71615,7 +71696,7 @@ } }, { - "id": 27590, + "id": 27637, "properties": { "cracked": "true", "facing": "south", @@ -71623,7 +71704,7 @@ } }, { - "id": 27591, + "id": 27638, "properties": { "cracked": "true", "facing": "west", @@ -71631,7 +71712,7 @@ } }, { - "id": 27592, + "id": 27639, "properties": { "cracked": "true", "facing": "west", @@ -71639,7 +71720,7 @@ } }, { - "id": 27593, + "id": 27640, "properties": { "cracked": "true", "facing": "east", @@ -71647,7 +71728,7 @@ } }, { - "id": 27594, + "id": 27641, "properties": { "cracked": "true", "facing": "east", @@ -71655,7 +71736,7 @@ } }, { - "id": 27595, + "id": 27642, "properties": { "cracked": "false", "facing": "north", @@ -71664,7 +71745,7 @@ }, { "default": true, - "id": 27596, + "id": 27643, "properties": { "cracked": "false", "facing": "north", @@ -71672,7 +71753,7 @@ } }, { - "id": 27597, + "id": 27644, "properties": { "cracked": "false", "facing": "south", @@ -71680,7 +71761,7 @@ } }, { - "id": 27598, + "id": 27645, "properties": { "cracked": "false", "facing": "south", @@ -71688,7 +71769,7 @@ } }, { - "id": 27599, + "id": 27646, "properties": { "cracked": "false", "facing": "west", @@ -71696,7 +71777,7 @@ } }, { - "id": 27600, + "id": 27647, "properties": { "cracked": "false", "facing": "west", @@ -71704,7 +71785,7 @@ } }, { - "id": 27601, + "id": 27648, "properties": { "cracked": "false", "facing": "east", @@ -71712,7 +71793,7 @@ } }, { - "id": 27602, + "id": 27649, "properties": { "cracked": "false", "facing": "east", @@ -71735,20 +71816,20 @@ }, "states": [ { - "id": 25917, + "id": 25964, "properties": { "axis": "x" } }, { "default": true, - "id": 25918, + "id": 25965, "properties": { "axis": "y" } }, { - "id": 25919, + "id": 25966, "properties": { "axis": "z" } @@ -71773,21 +71854,21 @@ }, "states": [ { - "id": 27234, + "id": 27281, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 27235, + "id": 27282, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 27236, + "id": 27283, "properties": { "type": "bottom", "waterlogged": "true" @@ -71795,21 +71876,21 @@ }, { "default": true, - "id": 27237, + "id": 27284, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 27238, + "id": 27285, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 27239, + "id": 27286, "properties": { "type": "double", "waterlogged": "false" @@ -71850,7 +71931,7 @@ }, "states": [ { - "id": 27154, + "id": 27201, "properties": { "facing": "north", "half": "top", @@ -71859,7 +71940,7 @@ } }, { - "id": 27155, + "id": 27202, "properties": { "facing": "north", "half": "top", @@ -71868,7 +71949,7 @@ } }, { - "id": 27156, + "id": 27203, "properties": { "facing": "north", "half": "top", @@ -71877,7 +71958,7 @@ } }, { - "id": 27157, + "id": 27204, "properties": { "facing": "north", "half": "top", @@ -71886,7 +71967,7 @@ } }, { - "id": 27158, + "id": 27205, "properties": { "facing": "north", "half": "top", @@ -71895,7 +71976,7 @@ } }, { - "id": 27159, + "id": 27206, "properties": { "facing": "north", "half": "top", @@ -71904,7 +71985,7 @@ } }, { - "id": 27160, + "id": 27207, "properties": { "facing": "north", "half": "top", @@ -71913,7 +71994,7 @@ } }, { - "id": 27161, + "id": 27208, "properties": { "facing": "north", "half": "top", @@ -71922,7 +72003,7 @@ } }, { - "id": 27162, + "id": 27209, "properties": { "facing": "north", "half": "top", @@ -71931,7 +72012,7 @@ } }, { - "id": 27163, + "id": 27210, "properties": { "facing": "north", "half": "top", @@ -71940,7 +72021,7 @@ } }, { - "id": 27164, + "id": 27211, "properties": { "facing": "north", "half": "bottom", @@ -71950,439 +72031,439 @@ }, { "default": true, - "id": 27165, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 27166, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 27167, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 27168, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 27169, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 27170, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 27171, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 27172, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 27173, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 27174, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 27175, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 27176, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 27177, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 27178, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 27179, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 27180, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 27181, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 27182, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 27183, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 27184, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 27185, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 27186, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 27187, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 27188, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 27189, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 27190, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 27191, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 27192, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 27193, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 27194, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 27195, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 27196, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 27197, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 27198, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 27199, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 27200, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 27201, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 27202, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 27203, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 27204, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 27205, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 27206, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 27207, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 27208, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 27209, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 27210, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 27211, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { "id": 27212, "properties": { - "facing": "west", + "facing": "north", "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "shape": "straight", + "waterlogged": "false" } }, { "id": 27213, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27214, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27215, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27216, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27217, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27218, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27219, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27220, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27221, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27222, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27223, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27224, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27225, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27226, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27227, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27228, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27229, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27230, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27231, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27232, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27233, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27234, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27235, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27236, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27237, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27238, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27239, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27240, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27241, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27242, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27243, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27244, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27245, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27246, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27247, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27248, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27249, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27250, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27251, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27252, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27253, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27254, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27255, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27256, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27257, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27258, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27259, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27260, "properties": { "facing": "west", "half": "bottom", @@ -72391,7 +72472,7 @@ } }, { - "id": 27214, + "id": 27261, "properties": { "facing": "east", "half": "top", @@ -72400,7 +72481,7 @@ } }, { - "id": 27215, + "id": 27262, "properties": { "facing": "east", "half": "top", @@ -72409,7 +72490,7 @@ } }, { - "id": 27216, + "id": 27263, "properties": { "facing": "east", "half": "top", @@ -72418,7 +72499,7 @@ } }, { - "id": 27217, + "id": 27264, "properties": { "facing": "east", "half": "top", @@ -72427,7 +72508,7 @@ } }, { - "id": 27218, + "id": 27265, "properties": { "facing": "east", "half": "top", @@ -72436,7 +72517,7 @@ } }, { - "id": 27219, + "id": 27266, "properties": { "facing": "east", "half": "top", @@ -72445,7 +72526,7 @@ } }, { - "id": 27220, + "id": 27267, "properties": { "facing": "east", "half": "top", @@ -72454,7 +72535,7 @@ } }, { - "id": 27221, + "id": 27268, "properties": { "facing": "east", "half": "top", @@ -72463,7 +72544,7 @@ } }, { - "id": 27222, + "id": 27269, "properties": { "facing": "east", "half": "top", @@ -72472,7 +72553,7 @@ } }, { - "id": 27223, + "id": 27270, "properties": { "facing": "east", "half": "top", @@ -72481,7 +72562,7 @@ } }, { - "id": 27224, + "id": 27271, "properties": { "facing": "east", "half": "bottom", @@ -72490,7 +72571,7 @@ } }, { - "id": 27225, + "id": 27272, "properties": { "facing": "east", "half": "bottom", @@ -72499,7 +72580,7 @@ } }, { - "id": 27226, + "id": 27273, "properties": { "facing": "east", "half": "bottom", @@ -72508,7 +72589,7 @@ } }, { - "id": 27227, + "id": 27274, "properties": { "facing": "east", "half": "bottom", @@ -72517,7 +72598,7 @@ } }, { - "id": 27228, + "id": 27275, "properties": { "facing": "east", "half": "bottom", @@ -72526,7 +72607,7 @@ } }, { - "id": 27229, + "id": 27276, "properties": { "facing": "east", "half": "bottom", @@ -72535,7 +72616,7 @@ } }, { - "id": 27230, + "id": 27277, "properties": { "facing": "east", "half": "bottom", @@ -72544,7 +72625,7 @@ } }, { - "id": 27231, + "id": 27278, "properties": { "facing": "east", "half": "bottom", @@ -72553,7 +72634,7 @@ } }, { - "id": 27232, + "id": 27279, "properties": { "facing": "east", "half": "bottom", @@ -72562,7 +72643,7 @@ } }, { - "id": 27233, + "id": 27280, "properties": { "facing": "east", "half": "bottom", @@ -72609,7 +72690,7 @@ }, "states": [ { - "id": 27240, + "id": 27287, "properties": { "east": "none", "north": "none", @@ -72620,7 +72701,7 @@ } }, { - "id": 27241, + "id": 27288, "properties": { "east": "none", "north": "none", @@ -72631,7 +72712,7 @@ } }, { - "id": 27242, + "id": 27289, "properties": { "east": "none", "north": "none", @@ -72643,1140 +72724,1140 @@ }, { "default": true, - "id": 27243, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27244, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27245, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27246, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27247, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27248, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27249, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27250, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27251, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27252, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27253, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27254, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27255, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27256, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27257, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27258, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27259, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27260, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27261, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27262, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27263, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27264, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27265, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27266, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27267, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27268, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27269, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27270, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27271, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27272, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27273, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27274, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27275, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27276, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27277, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27278, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27279, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27280, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27281, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27282, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27283, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27284, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27285, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27286, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27287, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27288, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27289, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { "id": 27290, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27291, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27292, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27293, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 27294, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27295, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27296, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27297, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27298, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27299, "properties": { "east": "none", - "north": "low", + "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 27300, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27301, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27302, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27303, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27304, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27305, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 27306, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27307, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27308, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27309, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27310, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27311, "properties": { "east": "none", - "north": "low", + "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 27312, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27313, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27314, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27315, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27316, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27317, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 27318, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27319, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27320, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27321, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27322, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27323, "properties": { "east": "none", - "north": "tall", + "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 27324, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27325, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27326, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27327, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27328, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27329, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 27330, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27331, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27332, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27333, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27334, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27335, "properties": { "east": "none", - "north": "tall", + "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 27336, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27337, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27338, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27339, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27340, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27341, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 27342, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27343, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27344, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27345, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27346, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27347, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27348, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27349, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27350, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27351, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27352, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27353, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27354, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27355, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27356, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27357, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27358, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27359, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27360, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27361, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27362, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27363, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27364, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27365, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27366, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27367, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27368, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27369, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27370, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27371, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27372, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27373, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27374, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27375, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27376, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27377, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27378, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27379, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27380, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27381, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27382, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27383, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27384, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27385, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27386, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27387, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27388, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27389, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27390, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27391, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27392, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27393, "properties": { "east": "none", "north": "tall", @@ -73787,7 +73868,7 @@ } }, { - "id": 27347, + "id": 27394, "properties": { "east": "none", "north": "tall", @@ -73797,1174 +73878,1174 @@ "west": "tall" } }, - { - "id": 27348, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27349, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27350, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27351, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27352, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27353, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27354, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27355, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27356, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27357, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27358, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27359, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27360, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27361, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27362, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27363, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27364, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27365, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27366, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27367, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27368, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27369, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27370, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27371, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27372, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27373, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27374, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27375, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27376, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27377, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27378, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27379, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27380, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27381, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27382, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27383, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27384, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27385, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27386, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27387, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27388, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27389, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27390, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27391, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27392, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27393, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27394, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, { "id": 27395, "properties": { "east": "low", - "north": "low", + "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 27396, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27397, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27398, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27399, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27400, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27401, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 27402, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27403, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27404, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27405, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27406, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27407, "properties": { "east": "low", - "north": "low", + "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 27408, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27409, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27410, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27411, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27412, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27413, "properties": { "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 27414, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27415, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27416, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27417, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27418, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27419, "properties": { "east": "low", - "north": "low", + "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 27420, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27421, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27422, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27423, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27424, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27425, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 27426, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27427, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27428, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27429, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27430, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27431, "properties": { "east": "low", - "north": "tall", + "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 27432, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27433, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27434, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27435, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27436, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27437, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 27438, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27439, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27440, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27441, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27442, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27443, "properties": { "east": "low", - "north": "tall", + "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 27444, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27445, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27446, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27447, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27448, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27449, "properties": { "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 27450, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27451, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27452, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27453, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27454, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27455, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27456, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27457, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27458, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27459, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27460, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27461, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27462, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27463, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27464, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27465, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27466, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27467, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27468, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27469, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27470, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27471, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27472, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27473, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27474, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27475, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27476, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27477, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27478, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27479, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27480, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27481, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27482, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27483, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27484, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27485, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27486, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27487, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27488, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27489, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27490, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27491, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27492, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27493, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27494, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27495, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27496, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27497, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27498, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27499, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27500, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27501, "properties": { "east": "low", "north": "tall", @@ -74975,7 +75056,7 @@ } }, { - "id": 27455, + "id": 27502, "properties": { "east": "low", "north": "tall", @@ -74985,789 +75066,789 @@ "west": "tall" } }, - { - "id": 27456, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27457, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27458, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27459, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27460, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27461, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27462, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27463, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27464, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27465, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27466, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27467, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27468, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27469, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27470, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27471, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27472, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27473, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27474, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27475, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27476, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27477, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27478, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27479, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27480, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27481, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27482, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27483, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27484, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27485, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27486, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27487, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27488, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27489, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27490, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27491, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27492, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27493, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27494, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27495, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27496, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27497, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27498, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27499, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27500, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27501, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27502, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, { "id": 27503, "properties": { "east": "tall", - "north": "low", + "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 27504, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27505, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27506, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27507, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27508, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27509, "properties": { "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 27510, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27511, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27512, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27513, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27514, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27515, "properties": { "east": "tall", - "north": "low", + "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 27516, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27517, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27518, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27519, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27520, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27521, "properties": { "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 27522, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27523, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27524, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27525, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27526, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27527, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27528, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27529, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27530, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27531, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27532, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27533, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27534, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27535, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27536, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27537, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27538, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27539, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27540, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27541, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27542, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27543, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27544, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27545, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27546, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27547, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27548, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27549, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27550, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27551, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27552, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27553, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27554, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27555, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27556, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27557, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27558, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27559, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27560, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27561, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27562, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27563, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27564, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27565, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27566, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27567, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27568, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27569, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27570, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27571, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27572, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27573, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27574, "properties": { "east": "tall", "north": "low", @@ -75778,7 +75859,7 @@ } }, { - "id": 27528, + "id": 27575, "properties": { "east": "tall", "north": "tall", @@ -75789,7 +75870,7 @@ } }, { - "id": 27529, + "id": 27576, "properties": { "east": "tall", "north": "tall", @@ -75800,7 +75881,7 @@ } }, { - "id": 27530, + "id": 27577, "properties": { "east": "tall", "north": "tall", @@ -75811,7 +75892,7 @@ } }, { - "id": 27531, + "id": 27578, "properties": { "east": "tall", "north": "tall", @@ -75822,7 +75903,7 @@ } }, { - "id": 27532, + "id": 27579, "properties": { "east": "tall", "north": "tall", @@ -75833,7 +75914,7 @@ } }, { - "id": 27533, + "id": 27580, "properties": { "east": "tall", "north": "tall", @@ -75844,7 +75925,7 @@ } }, { - "id": 27534, + "id": 27581, "properties": { "east": "tall", "north": "tall", @@ -75855,7 +75936,7 @@ } }, { - "id": 27535, + "id": 27582, "properties": { "east": "tall", "north": "tall", @@ -75866,7 +75947,7 @@ } }, { - "id": 27536, + "id": 27583, "properties": { "east": "tall", "north": "tall", @@ -75877,7 +75958,7 @@ } }, { - "id": 27537, + "id": 27584, "properties": { "east": "tall", "north": "tall", @@ -75888,7 +75969,7 @@ } }, { - "id": 27538, + "id": 27585, "properties": { "east": "tall", "north": "tall", @@ -75899,7 +75980,7 @@ } }, { - "id": 27539, + "id": 27586, "properties": { "east": "tall", "north": "tall", @@ -75910,7 +75991,7 @@ } }, { - "id": 27540, + "id": 27587, "properties": { "east": "tall", "north": "tall", @@ -75921,7 +76002,7 @@ } }, { - "id": 27541, + "id": 27588, "properties": { "east": "tall", "north": "tall", @@ -75932,7 +76013,7 @@ } }, { - "id": 27542, + "id": 27589, "properties": { "east": "tall", "north": "tall", @@ -75943,7 +76024,7 @@ } }, { - "id": 27543, + "id": 27590, "properties": { "east": "tall", "north": "tall", @@ -75954,7 +76035,7 @@ } }, { - "id": 27544, + "id": 27591, "properties": { "east": "tall", "north": "tall", @@ -75965,7 +76046,7 @@ } }, { - "id": 27545, + "id": 27592, "properties": { "east": "tall", "north": "tall", @@ -75976,7 +76057,7 @@ } }, { - "id": 27546, + "id": 27593, "properties": { "east": "tall", "north": "tall", @@ -75987,7 +76068,7 @@ } }, { - "id": 27547, + "id": 27594, "properties": { "east": "tall", "north": "tall", @@ -75998,7 +76079,7 @@ } }, { - "id": 27548, + "id": 27595, "properties": { "east": "tall", "north": "tall", @@ -76009,7 +76090,7 @@ } }, { - "id": 27549, + "id": 27596, "properties": { "east": "tall", "north": "tall", @@ -76020,7 +76101,7 @@ } }, { - "id": 27550, + "id": 27597, "properties": { "east": "tall", "north": "tall", @@ -76031,7 +76112,7 @@ } }, { - "id": 27551, + "id": 27598, "properties": { "east": "tall", "north": "tall", @@ -76042,7 +76123,7 @@ } }, { - "id": 27552, + "id": 27599, "properties": { "east": "tall", "north": "tall", @@ -76053,7 +76134,7 @@ } }, { - "id": 27553, + "id": 27600, "properties": { "east": "tall", "north": "tall", @@ -76064,7 +76145,7 @@ } }, { - "id": 27554, + "id": 27601, "properties": { "east": "tall", "north": "tall", @@ -76075,7 +76156,7 @@ } }, { - "id": 27555, + "id": 27602, "properties": { "east": "tall", "north": "tall", @@ -76086,7 +76167,7 @@ } }, { - "id": 27556, + "id": 27603, "properties": { "east": "tall", "north": "tall", @@ -76097,7 +76178,7 @@ } }, { - "id": 27557, + "id": 27604, "properties": { "east": "tall", "north": "tall", @@ -76108,7 +76189,7 @@ } }, { - "id": 27558, + "id": 27605, "properties": { "east": "tall", "north": "tall", @@ -76119,7 +76200,7 @@ } }, { - "id": 27559, + "id": 27606, "properties": { "east": "tall", "north": "tall", @@ -76130,7 +76211,7 @@ } }, { - "id": 27560, + "id": 27607, "properties": { "east": "tall", "north": "tall", @@ -76141,7 +76222,7 @@ } }, { - "id": 27561, + "id": 27608, "properties": { "east": "tall", "north": "tall", @@ -76152,7 +76233,7 @@ } }, { - "id": 27562, + "id": 27609, "properties": { "east": "tall", "north": "tall", @@ -76163,7 +76244,7 @@ } }, { - "id": 27563, + "id": 27610, "properties": { "east": "tall", "north": "tall", @@ -76183,7 +76264,7 @@ "states": [ { "default": true, - "id": 27153 + "id": 27200 } ] }, @@ -76213,7 +76294,7 @@ "states": [ { "default": true, - "id": 23956 + "id": 23971 } ] }, @@ -76230,7 +76311,7 @@ "states": [ { "default": true, - "id": 4330 + "id": 4339 } ] }, @@ -76247,7 +76328,7 @@ "states": [ { "default": true, - "id": 8286 + "id": 8296 } ] }, @@ -76307,14 +76388,14 @@ }, "states": [ { - "id": 5905, + "id": 5914, "properties": { "lit": "true" } }, { "default": true, - "id": 5906, + "id": 5915, "properties": { "lit": "false" } @@ -76339,21 +76420,21 @@ }, "states": [ { - "id": 26823, + "id": 26870, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 26824, + "id": 26871, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 26825, + "id": 26872, "properties": { "type": "bottom", "waterlogged": "true" @@ -76361,21 +76442,21 @@ }, { "default": true, - "id": 26826, + "id": 26873, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 26827, + "id": 26874, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 26828, + "id": 26875, "properties": { "type": "double", "waterlogged": "false" @@ -76416,7 +76497,7 @@ }, "states": [ { - "id": 26743, + "id": 26790, "properties": { "facing": "north", "half": "top", @@ -76425,7 +76506,7 @@ } }, { - "id": 26744, + "id": 26791, "properties": { "facing": "north", "half": "top", @@ -76434,7 +76515,7 @@ } }, { - "id": 26745, + "id": 26792, "properties": { "facing": "north", "half": "top", @@ -76443,7 +76524,7 @@ } }, { - "id": 26746, + "id": 26793, "properties": { "facing": "north", "half": "top", @@ -76452,7 +76533,7 @@ } }, { - "id": 26747, + "id": 26794, "properties": { "facing": "north", "half": "top", @@ -76461,7 +76542,7 @@ } }, { - "id": 26748, + "id": 26795, "properties": { "facing": "north", "half": "top", @@ -76470,7 +76551,7 @@ } }, { - "id": 26749, + "id": 26796, "properties": { "facing": "north", "half": "top", @@ -76479,7 +76560,7 @@ } }, { - "id": 26750, + "id": 26797, "properties": { "facing": "north", "half": "top", @@ -76488,7 +76569,7 @@ } }, { - "id": 26751, + "id": 26798, "properties": { "facing": "north", "half": "top", @@ -76497,7 +76578,7 @@ } }, { - "id": 26752, + "id": 26799, "properties": { "facing": "north", "half": "top", @@ -76506,7 +76587,7 @@ } }, { - "id": 26753, + "id": 26800, "properties": { "facing": "north", "half": "bottom", @@ -76516,439 +76597,439 @@ }, { "default": true, - "id": 26754, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 26755, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 26756, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 26757, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 26758, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 26759, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 26760, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 26761, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 26762, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 26763, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 26764, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 26765, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 26766, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 26767, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 26768, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 26769, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 26770, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 26771, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 26772, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 26773, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 26774, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 26775, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 26776, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 26777, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 26778, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 26779, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 26780, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 26781, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 26782, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 26783, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 26784, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 26785, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 26786, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 26787, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 26788, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 26789, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 26790, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 26791, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 26792, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 26793, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 26794, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 26795, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 26796, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 26797, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 26798, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 26799, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 26800, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { "id": 26801, "properties": { - "facing": "west", + "facing": "north", "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "shape": "straight", + "waterlogged": "false" } }, { "id": 26802, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26803, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26804, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26805, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26806, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26807, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26808, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26809, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26810, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26811, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26812, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26813, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26814, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26815, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26816, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26817, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26818, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26819, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26820, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26821, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26822, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26823, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26824, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26825, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26826, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26827, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26828, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26829, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26830, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26831, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26832, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26833, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26834, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26835, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26836, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26837, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26838, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26839, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26840, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26841, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26842, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26843, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26844, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26845, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26846, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26847, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26848, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26849, "properties": { "facing": "west", "half": "bottom", @@ -76957,7 +77038,7 @@ } }, { - "id": 26803, + "id": 26850, "properties": { "facing": "east", "half": "top", @@ -76966,7 +77047,7 @@ } }, { - "id": 26804, + "id": 26851, "properties": { "facing": "east", "half": "top", @@ -76975,7 +77056,7 @@ } }, { - "id": 26805, + "id": 26852, "properties": { "facing": "east", "half": "top", @@ -76984,7 +77065,7 @@ } }, { - "id": 26806, + "id": 26853, "properties": { "facing": "east", "half": "top", @@ -76993,7 +77074,7 @@ } }, { - "id": 26807, + "id": 26854, "properties": { "facing": "east", "half": "top", @@ -77002,7 +77083,7 @@ } }, { - "id": 26808, + "id": 26855, "properties": { "facing": "east", "half": "top", @@ -77011,7 +77092,7 @@ } }, { - "id": 26809, + "id": 26856, "properties": { "facing": "east", "half": "top", @@ -77020,7 +77101,7 @@ } }, { - "id": 26810, + "id": 26857, "properties": { "facing": "east", "half": "top", @@ -77029,7 +77110,7 @@ } }, { - "id": 26811, + "id": 26858, "properties": { "facing": "east", "half": "top", @@ -77038,7 +77119,7 @@ } }, { - "id": 26812, + "id": 26859, "properties": { "facing": "east", "half": "top", @@ -77047,7 +77128,7 @@ } }, { - "id": 26813, + "id": 26860, "properties": { "facing": "east", "half": "bottom", @@ -77056,7 +77137,7 @@ } }, { - "id": 26814, + "id": 26861, "properties": { "facing": "east", "half": "bottom", @@ -77065,7 +77146,7 @@ } }, { - "id": 26815, + "id": 26862, "properties": { "facing": "east", "half": "bottom", @@ -77074,7 +77155,7 @@ } }, { - "id": 26816, + "id": 26863, "properties": { "facing": "east", "half": "bottom", @@ -77083,7 +77164,7 @@ } }, { - "id": 26817, + "id": 26864, "properties": { "facing": "east", "half": "bottom", @@ -77092,7 +77173,7 @@ } }, { - "id": 26818, + "id": 26865, "properties": { "facing": "east", "half": "bottom", @@ -77101,7 +77182,7 @@ } }, { - "id": 26819, + "id": 26866, "properties": { "facing": "east", "half": "bottom", @@ -77110,7 +77191,7 @@ } }, { - "id": 26820, + "id": 26867, "properties": { "facing": "east", "half": "bottom", @@ -77119,7 +77200,7 @@ } }, { - "id": 26821, + "id": 26868, "properties": { "facing": "east", "half": "bottom", @@ -77128,7 +77209,7 @@ } }, { - "id": 26822, + "id": 26869, "properties": { "facing": "east", "half": "bottom", @@ -77175,7 +77256,7 @@ }, "states": [ { - "id": 26829, + "id": 26876, "properties": { "east": "none", "north": "none", @@ -77186,7 +77267,7 @@ } }, { - "id": 26830, + "id": 26877, "properties": { "east": "none", "north": "none", @@ -77197,7 +77278,7 @@ } }, { - "id": 26831, + "id": 26878, "properties": { "east": "none", "north": "none", @@ -77209,1140 +77290,1140 @@ }, { "default": true, - "id": 26832, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26833, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26834, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26835, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26836, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26837, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26838, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26839, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26840, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26841, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26842, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26843, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26844, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26845, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26846, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26847, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26848, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26849, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26850, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26851, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26852, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26853, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26854, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26855, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26856, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26857, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26858, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26859, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26860, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26861, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26862, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26863, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26864, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26865, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26866, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26867, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26868, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26869, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26870, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26871, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26872, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26873, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26874, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26875, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26876, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26877, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26878, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { "id": 26879, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26880, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26881, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26882, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26883, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26884, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26885, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26886, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26887, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26888, "properties": { "east": "none", - "north": "low", + "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26889, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26890, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26891, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26892, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26893, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26894, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26895, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26896, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26897, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26898, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26899, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26900, "properties": { "east": "none", - "north": "low", + "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26901, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26902, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26903, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26904, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26905, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26906, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26907, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26908, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26909, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26910, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26911, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26912, "properties": { "east": "none", - "north": "tall", + "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26913, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26914, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26915, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26916, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26917, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26918, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26919, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26920, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26921, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26922, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26923, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26924, "properties": { "east": "none", - "north": "tall", + "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26925, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26926, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26927, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26928, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26929, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26930, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26931, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26932, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26933, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26934, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26935, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26936, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26937, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26938, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26939, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26940, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26941, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26942, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26943, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26944, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26945, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26946, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26947, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26948, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26949, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26950, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26951, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26952, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26953, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26954, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26955, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26956, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26957, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26958, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26959, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26960, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26961, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26962, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26963, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26964, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26965, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26966, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26967, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26968, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26969, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26970, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26971, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26972, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26973, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26974, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26975, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26976, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26977, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26978, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26979, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26980, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26981, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26982, "properties": { "east": "none", "north": "tall", @@ -78353,7 +78434,7 @@ } }, { - "id": 26936, + "id": 26983, "properties": { "east": "none", "north": "tall", @@ -78363,1174 +78444,1174 @@ "west": "tall" } }, - { - "id": 26937, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26938, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26939, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26940, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26941, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26942, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26943, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26944, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26945, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26946, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26947, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26948, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26949, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26950, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26951, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26952, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26953, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26954, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26955, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26956, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26957, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26958, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26959, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26960, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26961, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26962, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26963, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26964, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26965, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26966, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26967, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26968, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26969, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26970, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26971, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26972, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26973, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26974, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26975, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26976, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26977, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26978, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26979, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26980, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26981, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26982, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26983, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, { "id": 26984, "properties": { "east": "low", - "north": "low", + "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26985, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26986, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26987, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26988, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26989, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26990, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26991, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26992, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26993, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26994, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26995, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26996, "properties": { "east": "low", - "north": "low", + "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26997, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26998, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26999, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27000, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27001, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27002, "properties": { "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 27003, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27004, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27005, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27006, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27007, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27008, "properties": { "east": "low", - "north": "low", + "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 27009, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27010, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27011, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27012, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27013, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27014, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 27015, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27016, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27017, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27018, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27019, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27020, "properties": { "east": "low", - "north": "tall", + "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 27021, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27022, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27023, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27024, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27025, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27026, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 27027, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27028, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27029, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27030, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27031, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27032, "properties": { "east": "low", - "north": "tall", + "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 27033, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27034, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27035, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27036, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27037, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27038, "properties": { "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 27039, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27040, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27041, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27042, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27043, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27044, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27045, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27046, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27047, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27048, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27049, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27050, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27051, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27052, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27053, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27054, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27055, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27056, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27057, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27058, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27059, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27060, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27061, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27062, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27063, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27064, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27065, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27066, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27067, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27068, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27069, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27070, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27071, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27072, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27073, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27074, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27075, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27076, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27077, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27078, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27079, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27080, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27081, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27082, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27083, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27084, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27085, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27086, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27087, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27088, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27089, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27090, "properties": { "east": "low", "north": "tall", @@ -79541,7 +79622,7 @@ } }, { - "id": 27044, + "id": 27091, "properties": { "east": "low", "north": "tall", @@ -79551,789 +79632,789 @@ "west": "tall" } }, - { - "id": 27045, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27046, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27047, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27048, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27049, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27050, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27051, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27052, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27053, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27054, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27055, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27056, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27057, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27058, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27059, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27060, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27061, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27062, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27063, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27064, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27065, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27066, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27067, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27068, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27069, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27070, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27071, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27072, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27073, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27074, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27075, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27076, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27077, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27078, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27079, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27080, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27081, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27082, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27083, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27084, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27085, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 27086, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 27087, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 27088, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 27089, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 27090, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 27091, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, { "id": 27092, "properties": { "east": "tall", - "north": "low", + "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 27093, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27094, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27095, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27096, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27097, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27098, "properties": { "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 27099, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27100, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27101, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27102, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27103, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27104, "properties": { "east": "tall", - "north": "low", + "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 27105, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27106, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27107, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27108, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27109, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27110, "properties": { "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 27111, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 27112, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 27113, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 27114, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 27115, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 27116, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27117, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27118, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27119, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27120, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27121, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27122, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27123, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27124, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27125, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27126, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27127, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27128, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27129, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27130, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27131, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27132, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27133, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27134, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27135, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27136, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27137, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27138, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27139, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27140, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27141, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27142, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27143, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27144, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27145, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27146, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27147, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27148, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27149, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27150, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27151, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27152, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27153, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27154, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27155, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27156, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27157, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27158, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27159, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27160, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27161, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27162, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27163, "properties": { "east": "tall", "north": "low", @@ -80344,7 +80425,7 @@ } }, { - "id": 27117, + "id": 27164, "properties": { "east": "tall", "north": "tall", @@ -80355,7 +80436,7 @@ } }, { - "id": 27118, + "id": 27165, "properties": { "east": "tall", "north": "tall", @@ -80366,7 +80447,7 @@ } }, { - "id": 27119, + "id": 27166, "properties": { "east": "tall", "north": "tall", @@ -80377,7 +80458,7 @@ } }, { - "id": 27120, + "id": 27167, "properties": { "east": "tall", "north": "tall", @@ -80388,7 +80469,7 @@ } }, { - "id": 27121, + "id": 27168, "properties": { "east": "tall", "north": "tall", @@ -80399,7 +80480,7 @@ } }, { - "id": 27122, + "id": 27169, "properties": { "east": "tall", "north": "tall", @@ -80410,7 +80491,7 @@ } }, { - "id": 27123, + "id": 27170, "properties": { "east": "tall", "north": "tall", @@ -80421,7 +80502,7 @@ } }, { - "id": 27124, + "id": 27171, "properties": { "east": "tall", "north": "tall", @@ -80432,7 +80513,7 @@ } }, { - "id": 27125, + "id": 27172, "properties": { "east": "tall", "north": "tall", @@ -80443,7 +80524,7 @@ } }, { - "id": 27126, + "id": 27173, "properties": { "east": "tall", "north": "tall", @@ -80454,7 +80535,7 @@ } }, { - "id": 27127, + "id": 27174, "properties": { "east": "tall", "north": "tall", @@ -80465,7 +80546,7 @@ } }, { - "id": 27128, + "id": 27175, "properties": { "east": "tall", "north": "tall", @@ -80476,7 +80557,7 @@ } }, { - "id": 27129, + "id": 27176, "properties": { "east": "tall", "north": "tall", @@ -80487,7 +80568,7 @@ } }, { - "id": 27130, + "id": 27177, "properties": { "east": "tall", "north": "tall", @@ -80498,7 +80579,7 @@ } }, { - "id": 27131, + "id": 27178, "properties": { "east": "tall", "north": "tall", @@ -80509,7 +80590,7 @@ } }, { - "id": 27132, + "id": 27179, "properties": { "east": "tall", "north": "tall", @@ -80520,7 +80601,7 @@ } }, { - "id": 27133, + "id": 27180, "properties": { "east": "tall", "north": "tall", @@ -80531,7 +80612,7 @@ } }, { - "id": 27134, + "id": 27181, "properties": { "east": "tall", "north": "tall", @@ -80542,7 +80623,7 @@ } }, { - "id": 27135, + "id": 27182, "properties": { "east": "tall", "north": "tall", @@ -80553,7 +80634,7 @@ } }, { - "id": 27136, + "id": 27183, "properties": { "east": "tall", "north": "tall", @@ -80564,7 +80645,7 @@ } }, { - "id": 27137, + "id": 27184, "properties": { "east": "tall", "north": "tall", @@ -80575,7 +80656,7 @@ } }, { - "id": 27138, + "id": 27185, "properties": { "east": "tall", "north": "tall", @@ -80586,7 +80667,7 @@ } }, { - "id": 27139, + "id": 27186, "properties": { "east": "tall", "north": "tall", @@ -80597,7 +80678,7 @@ } }, { - "id": 27140, + "id": 27187, "properties": { "east": "tall", "north": "tall", @@ -80608,7 +80689,7 @@ } }, { - "id": 27141, + "id": 27188, "properties": { "east": "tall", "north": "tall", @@ -80619,7 +80700,7 @@ } }, { - "id": 27142, + "id": 27189, "properties": { "east": "tall", "north": "tall", @@ -80630,7 +80711,7 @@ } }, { - "id": 27143, + "id": 27190, "properties": { "east": "tall", "north": "tall", @@ -80641,7 +80722,7 @@ } }, { - "id": 27144, + "id": 27191, "properties": { "east": "tall", "north": "tall", @@ -80652,7 +80733,7 @@ } }, { - "id": 27145, + "id": 27192, "properties": { "east": "tall", "north": "tall", @@ -80663,7 +80744,7 @@ } }, { - "id": 27146, + "id": 27193, "properties": { "east": "tall", "north": "tall", @@ -80674,7 +80755,7 @@ } }, { - "id": 27147, + "id": 27194, "properties": { "east": "tall", "north": "tall", @@ -80685,7 +80766,7 @@ } }, { - "id": 27148, + "id": 27195, "properties": { "east": "tall", "north": "tall", @@ -80696,7 +80777,7 @@ } }, { - "id": 27149, + "id": 27196, "properties": { "east": "tall", "north": "tall", @@ -80707,7 +80788,7 @@ } }, { - "id": 27150, + "id": 27197, "properties": { "east": "tall", "north": "tall", @@ -80718,7 +80799,7 @@ } }, { - "id": 27151, + "id": 27198, "properties": { "east": "tall", "north": "tall", @@ -80729,7 +80810,7 @@ } }, { - "id": 27152, + "id": 27199, "properties": { "east": "tall", "north": "tall", @@ -80749,7 +80830,7 @@ "states": [ { "default": true, - "id": 26742 + "id": 26789 } ] }, @@ -80980,7 +81061,7 @@ "states": [ { "default": true, - "id": 4331 + "id": 4340 } ] }, @@ -80997,7 +81078,7 @@ "states": [ { "default": true, - "id": 4329 + "id": 4338 } ] }, @@ -81031,21 +81112,21 @@ }, "states": [ { - "id": 15167, + "id": 15177, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 15168, + "id": 15178, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 15169, + "id": 15179, "properties": { "type": "bottom", "waterlogged": "true" @@ -81053,21 +81134,21 @@ }, { "default": true, - "id": 15170, + "id": 15180, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 15171, + "id": 15181, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 15172, + "id": 15182, "properties": { "type": "double", "waterlogged": "false" @@ -81107,98 +81188,98 @@ ] }, "states": [ - { - "id": 15015, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 15016, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 15017, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 15018, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 15019, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 15020, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 15021, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 15022, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 15023, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 15024, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 15025, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15026, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15027, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15028, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15029, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15030, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15031, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15032, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15033, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15034, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15035, "properties": { "facing": "north", "half": "bottom", @@ -81208,100 +81289,10 @@ }, { "default": true, - "id": 15026, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 15027, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 15028, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 15029, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 15030, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 15031, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 15032, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 15033, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 15034, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 15035, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 15036, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -81309,8 +81300,8 @@ { "id": 15037, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -81318,8 +81309,8 @@ { "id": 15038, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -81327,8 +81318,8 @@ { "id": 15039, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -81336,8 +81327,8 @@ { "id": 15040, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -81345,8 +81336,8 @@ { "id": 15041, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -81354,8 +81345,8 @@ { "id": 15042, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -81363,8 +81354,8 @@ { "id": 15043, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -81372,8 +81363,8 @@ { "id": 15044, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -81382,7 +81373,7 @@ "id": 15045, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -81391,7 +81382,7 @@ "id": 15046, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -81400,7 +81391,7 @@ "id": 15047, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -81409,7 +81400,7 @@ "id": 15048, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -81418,7 +81409,7 @@ "id": 15049, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -81427,7 +81418,7 @@ "id": 15050, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -81436,7 +81427,7 @@ "id": 15051, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -81445,7 +81436,7 @@ "id": 15052, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -81454,7 +81445,7 @@ "id": 15053, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -81463,7 +81454,7 @@ "id": 15054, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -81471,8 +81462,8 @@ { "id": 15055, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -81480,8 +81471,8 @@ { "id": 15056, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -81489,8 +81480,8 @@ { "id": 15057, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -81498,8 +81489,8 @@ { "id": 15058, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -81507,8 +81498,8 @@ { "id": 15059, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -81516,8 +81507,8 @@ { "id": 15060, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -81525,8 +81516,8 @@ { "id": 15061, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -81534,8 +81525,8 @@ { "id": 15062, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -81543,8 +81534,8 @@ { "id": 15063, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -81552,8 +81543,8 @@ { "id": 15064, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -81562,7 +81553,7 @@ "id": 15065, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -81571,7 +81562,7 @@ "id": 15066, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -81580,7 +81571,7 @@ "id": 15067, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -81589,7 +81580,7 @@ "id": 15068, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -81598,7 +81589,7 @@ "id": 15069, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -81607,7 +81598,7 @@ "id": 15070, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -81616,7 +81607,7 @@ "id": 15071, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -81625,7 +81616,7 @@ "id": 15072, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -81634,7 +81625,7 @@ "id": 15073, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -81643,7 +81634,7 @@ "id": 15074, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -81651,8 +81642,8 @@ { "id": 15075, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -81660,8 +81651,8 @@ { "id": 15076, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -81669,8 +81660,8 @@ { "id": 15077, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -81678,8 +81669,8 @@ { "id": 15078, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -81687,8 +81678,8 @@ { "id": 15079, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -81696,8 +81687,8 @@ { "id": 15080, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -81705,8 +81696,8 @@ { "id": 15081, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -81714,8 +81705,8 @@ { "id": 15082, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -81723,8 +81714,8 @@ { "id": 15083, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -81732,8 +81723,8 @@ { "id": 15084, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -81742,7 +81733,7 @@ "id": 15085, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -81751,7 +81742,7 @@ "id": 15086, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -81760,7 +81751,7 @@ "id": 15087, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -81769,7 +81760,7 @@ "id": 15088, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -81778,7 +81769,7 @@ "id": 15089, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -81787,7 +81778,7 @@ "id": 15090, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -81796,7 +81787,7 @@ "id": 15091, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -81805,7 +81796,7 @@ "id": 15092, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -81814,13 +81805,103 @@ "id": 15093, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 15094, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15095, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15096, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15097, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15098, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15099, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15100, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15101, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15102, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15103, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15104, "properties": { "facing": "east", "half": "bottom", @@ -81867,7 +81948,7 @@ }, "states": [ { - "id": 19061, + "id": 19071, "properties": { "east": "none", "north": "none", @@ -81878,7 +81959,7 @@ } }, { - "id": 19062, + "id": 19072, "properties": { "east": "none", "north": "none", @@ -81889,7 +81970,7 @@ } }, { - "id": 19063, + "id": 19073, "properties": { "east": "none", "north": "none", @@ -81901,124 +81982,14 @@ }, { "default": true, - "id": 19064, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19065, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19066, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19067, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19068, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19069, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19070, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19071, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19072, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19073, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { "id": 19074, "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -82026,10 +81997,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -82037,10 +82008,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -82048,10 +82019,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -82059,10 +82030,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -82070,10 +82041,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -82081,10 +82052,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -82092,10 +82063,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -82103,10 +82074,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -82115,9 +82086,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -82126,9 +82097,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -82136,10 +82107,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -82147,10 +82118,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -82158,10 +82129,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -82169,10 +82140,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -82180,10 +82151,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -82191,10 +82162,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -82202,10 +82173,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -82213,10 +82184,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -82224,10 +82195,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -82235,10 +82206,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -82247,9 +82218,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -82258,130 +82229,130 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 19097, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 19098, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 19099, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 19100, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 19101, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 19102, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19103, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19104, - "properties": { - "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 19105, + "id": 19103, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 19106, + "id": 19104, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 19105, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19106, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 19107, "properties": { "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -82390,9 +82361,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -82400,10 +82371,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -82411,10 +82382,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -82422,10 +82393,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -82433,10 +82404,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -82444,10 +82415,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -82455,10 +82426,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -82466,10 +82437,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -82477,10 +82448,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -82488,10 +82459,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -82499,10 +82470,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -82511,9 +82482,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -82522,9 +82493,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -82532,10 +82503,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -82543,10 +82514,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -82554,10 +82525,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -82565,10 +82536,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -82576,10 +82547,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -82587,10 +82558,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -82598,10 +82569,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -82609,10 +82580,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -82620,10 +82591,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -82631,10 +82602,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -82643,9 +82614,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -82654,130 +82625,130 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 19133, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 19134, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 19135, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 19136, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 19137, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 19138, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19139, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19140, - "properties": { - "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 19141, + "id": 19139, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 19142, + "id": 19140, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 19141, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19142, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 19143, "properties": { "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -82786,9 +82757,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -82796,10 +82767,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -82807,10 +82778,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -82818,10 +82789,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -82829,10 +82800,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -82840,10 +82811,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -82851,10 +82822,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -82862,10 +82833,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -82873,10 +82844,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -82884,10 +82855,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -82895,10 +82866,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -82907,9 +82878,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -82918,9 +82889,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -82928,10 +82899,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -82939,10 +82910,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -82950,10 +82921,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -82961,10 +82932,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -82972,10 +82943,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -82983,10 +82954,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -82994,10 +82965,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -83005,10 +82976,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -83016,10 +82987,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -83027,14 +82998,124 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 19167, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19168, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19169, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19170, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19171, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19172, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19173, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19174, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19175, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19176, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19177, "properties": { "east": "none", "north": "tall", @@ -83045,7 +83126,7 @@ } }, { - "id": 19168, + "id": 19178, "properties": { "east": "none", "north": "tall", @@ -83055,125 +83136,15 @@ "west": "tall" } }, - { - "id": 19169, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19170, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19171, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19172, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19173, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19174, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19175, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19176, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19177, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19178, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 19179, "properties": { "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -83182,9 +83153,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -83192,10 +83163,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -83203,10 +83174,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -83214,10 +83185,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -83225,10 +83196,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -83236,10 +83207,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -83247,10 +83218,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -83258,10 +83229,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -83269,10 +83240,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -83280,10 +83251,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -83291,10 +83262,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -83303,9 +83274,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -83314,9 +83285,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -83324,10 +83295,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -83335,10 +83306,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -83346,10 +83317,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -83357,10 +83328,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -83368,10 +83339,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -83379,10 +83350,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -83390,10 +83361,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -83401,10 +83372,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -83412,10 +83383,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -83423,10 +83394,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -83435,9 +83406,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -83446,130 +83417,130 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 19205, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 19206, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 19207, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 19208, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 19209, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 19210, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19211, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19212, - "properties": { - "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 19213, + "id": 19211, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 19214, + "id": 19212, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 19213, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19214, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 19215, "properties": { "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -83578,9 +83549,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -83588,10 +83559,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -83599,10 +83570,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -83610,10 +83581,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -83621,10 +83592,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -83632,10 +83603,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -83643,10 +83614,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -83654,10 +83625,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -83665,10 +83636,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -83676,10 +83647,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -83687,10 +83658,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -83699,9 +83670,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -83710,9 +83681,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -83720,10 +83691,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -83731,10 +83702,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -83742,10 +83713,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -83753,10 +83724,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -83764,10 +83735,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -83775,10 +83746,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -83786,10 +83757,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -83797,10 +83768,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -83808,10 +83779,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -83819,10 +83790,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -83831,9 +83802,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -83842,130 +83813,130 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 19241, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 19242, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 19243, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 19244, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 19245, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 19246, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19247, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19248, - "properties": { - "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 19249, + "id": 19247, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 19250, + "id": 19248, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 19249, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19250, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 19251, "properties": { "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -83974,9 +83945,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -83984,10 +83955,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -83995,10 +83966,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -84006,10 +83977,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -84017,10 +83988,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -84028,10 +83999,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -84039,10 +84010,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -84050,10 +84021,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -84061,10 +84032,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -84072,10 +84043,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -84083,10 +84054,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -84095,9 +84066,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -84106,9 +84077,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -84116,10 +84087,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -84127,10 +84098,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -84138,10 +84109,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -84149,10 +84120,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -84160,10 +84131,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -84171,10 +84142,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -84182,10 +84153,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -84193,10 +84164,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -84204,10 +84175,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -84215,14 +84186,124 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 19275, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19276, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19277, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19278, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19279, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19280, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19281, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19282, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19283, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19284, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19285, "properties": { "east": "low", "north": "tall", @@ -84233,7 +84314,7 @@ } }, { - "id": 19276, + "id": 19286, "properties": { "east": "low", "north": "tall", @@ -84243,125 +84324,15 @@ "west": "tall" } }, - { - "id": 19277, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19278, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19279, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19280, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19281, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19282, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19283, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19284, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19285, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19286, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 19287, "properties": { "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -84370,9 +84341,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -84380,10 +84351,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -84391,10 +84362,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -84402,10 +84373,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -84413,10 +84384,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -84424,10 +84395,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -84435,10 +84406,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -84446,10 +84417,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -84457,10 +84428,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -84468,10 +84439,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -84479,10 +84450,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -84491,9 +84462,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -84502,9 +84473,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -84512,10 +84483,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -84523,10 +84494,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -84534,10 +84505,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -84545,10 +84516,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -84556,10 +84527,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -84567,10 +84538,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -84578,10 +84549,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -84589,10 +84560,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -84600,10 +84571,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -84611,14 +84582,124 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 19311, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19312, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19313, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19314, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19315, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19316, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19317, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19318, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19319, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19320, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19321, "properties": { "east": "tall", "north": "none", @@ -84629,7 +84710,7 @@ } }, { - "id": 19312, + "id": 19322, "properties": { "east": "tall", "north": "none", @@ -84639,125 +84720,15 @@ "west": "tall" } }, - { - "id": 19313, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19314, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19315, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19316, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19317, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19318, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19319, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19320, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19321, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19322, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 19323, "properties": { "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -84766,9 +84737,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -84776,10 +84747,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -84787,10 +84758,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -84798,10 +84769,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -84809,10 +84780,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -84820,10 +84791,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -84831,10 +84802,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -84842,10 +84813,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -84853,10 +84824,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -84864,10 +84835,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -84875,10 +84846,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -84887,9 +84858,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -84898,9 +84869,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -84908,10 +84879,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -84919,10 +84890,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -84930,10 +84901,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -84941,10 +84912,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -84952,10 +84923,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -84963,10 +84934,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -84974,10 +84945,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -84985,10 +84956,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -84996,10 +84967,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -85007,14 +84978,124 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 19347, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19348, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19349, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19350, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19351, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19352, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19353, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19354, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19355, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19356, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19357, "properties": { "east": "tall", "north": "low", @@ -85025,7 +85106,7 @@ } }, { - "id": 19348, + "id": 19358, "properties": { "east": "tall", "north": "low", @@ -85035,125 +85116,15 @@ "west": "tall" } }, - { - "id": 19349, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19350, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19351, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19352, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19353, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19354, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19355, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19356, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19357, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19358, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 19359, "properties": { "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -85162,9 +85133,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -85172,10 +85143,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -85183,10 +85154,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -85194,10 +85165,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -85205,10 +85176,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -85216,10 +85187,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -85227,10 +85198,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -85238,10 +85209,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -85249,10 +85220,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -85260,10 +85231,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -85271,14 +85242,124 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 19371, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19372, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19373, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19374, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19375, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19376, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19377, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19378, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19379, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19380, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19381, "properties": { "east": "tall", "north": "tall", @@ -85289,7 +85370,7 @@ } }, { - "id": 19372, + "id": 19382, "properties": { "east": "tall", "north": "tall", @@ -85299,118 +85380,118 @@ "west": "tall" } }, - { - "id": 19373, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19374, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19375, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19376, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19377, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19378, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19379, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19380, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19381, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19382, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 19383, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19384, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19385, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19386, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19387, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19388, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19389, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19390, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19391, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19392, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19393, "properties": { "east": "tall", "north": "tall", @@ -85421,7 +85502,7 @@ } }, { - "id": 19384, + "id": 19394, "properties": { "east": "tall", "north": "tall", @@ -85453,7 +85534,7 @@ "states": [ { "default": true, - "id": 13526 + "id": 13536 } ] }, @@ -85572,7 +85653,7 @@ "states": [ { "default": true, - "id": 8190 + "id": 8200 } ] }, @@ -85608,112 +85689,112 @@ }, "states": [ { - "id": 9826, + "id": 9836, "properties": { "powered": "true", "rotation": "0" } }, { - "id": 9827, + "id": 9837, "properties": { "powered": "true", "rotation": "1" } }, { - "id": 9828, + "id": 9838, "properties": { "powered": "true", "rotation": "2" } }, { - "id": 9829, + "id": 9839, "properties": { "powered": "true", "rotation": "3" } }, { - "id": 9830, + "id": 9840, "properties": { "powered": "true", "rotation": "4" } }, { - "id": 9831, + "id": 9841, "properties": { "powered": "true", "rotation": "5" } }, { - "id": 9832, + "id": 9842, "properties": { "powered": "true", "rotation": "6" } }, { - "id": 9833, + "id": 9843, "properties": { "powered": "true", "rotation": "7" } }, { - "id": 9834, + "id": 9844, "properties": { "powered": "true", "rotation": "8" } }, { - "id": 9835, + "id": 9845, "properties": { "powered": "true", "rotation": "9" } }, { - "id": 9836, + "id": 9846, "properties": { "powered": "true", "rotation": "10" } }, { - "id": 9837, + "id": 9847, "properties": { "powered": "true", "rotation": "11" } }, { - "id": 9838, + "id": 9848, "properties": { "powered": "true", "rotation": "12" } }, { - "id": 9839, + "id": 9849, "properties": { "powered": "true", "rotation": "13" } }, { - "id": 9840, + "id": 9850, "properties": { "powered": "true", "rotation": "14" } }, { - "id": 9841, + "id": 9851, "properties": { "powered": "true", "rotation": "15" @@ -85721,112 +85802,112 @@ }, { "default": true, - "id": 9842, + "id": 9852, "properties": { "powered": "false", "rotation": "0" } }, { - "id": 9843, + "id": 9853, "properties": { "powered": "false", "rotation": "1" } }, { - "id": 9844, + "id": 9854, "properties": { "powered": "false", "rotation": "2" } }, { - "id": 9845, + "id": 9855, "properties": { "powered": "false", "rotation": "3" } }, { - "id": 9846, + "id": 9856, "properties": { "powered": "false", "rotation": "4" } }, { - "id": 9847, + "id": 9857, "properties": { "powered": "false", "rotation": "5" } }, { - "id": 9848, + "id": 9858, "properties": { "powered": "false", "rotation": "6" } }, { - "id": 9849, + "id": 9859, "properties": { "powered": "false", "rotation": "7" } }, { - "id": 9850, + "id": 9860, "properties": { "powered": "false", "rotation": "8" } }, { - "id": 9851, + "id": 9861, "properties": { "powered": "false", "rotation": "9" } }, { - "id": 9852, + "id": 9862, "properties": { "powered": "false", "rotation": "10" } }, { - "id": 9853, + "id": 9863, "properties": { "powered": "false", "rotation": "11" } }, { - "id": 9854, + "id": 9864, "properties": { "powered": "false", "rotation": "12" } }, { - "id": 9855, + "id": 9865, "properties": { "powered": "false", "rotation": "13" } }, { - "id": 9856, + "id": 9866, "properties": { "powered": "false", "rotation": "14" } }, { - "id": 9857, + "id": 9867, "properties": { "powered": "false", "rotation": "15" @@ -85854,7 +85935,7 @@ }, "states": [ { - "id": 9858, + "id": 9868, "properties": { "facing": "north", "powered": "true" @@ -85862,49 +85943,49 @@ }, { "default": true, - "id": 9859, + "id": 9869, "properties": { "facing": "north", "powered": "false" } }, { - "id": 9860, + "id": 9870, "properties": { "facing": "south", "powered": "true" } }, { - "id": 9861, + "id": 9871, "properties": { "facing": "south", "powered": "false" } }, { - "id": 9862, + "id": 9872, "properties": { "facing": "west", "powered": "true" } }, { - "id": 9863, + "id": 9873, "properties": { "facing": "west", "powered": "false" } }, { - "id": 9864, + "id": 9874, "properties": { "facing": "east", "powered": "true" } }, { - "id": 9865, + "id": 9875, "properties": { "facing": "east", "powered": "false" @@ -85920,7 +86001,7 @@ "states": [ { "default": true, - "id": 13800 + "id": 13810 } ] }, @@ -85932,7 +86013,7 @@ "states": [ { "default": true, - "id": 25781 + "id": 25796 } ] }, @@ -85957,7 +86038,7 @@ }, "states": [ { - "id": 10143, + "id": 10153, "properties": { "facing": "north", "triggered": "true" @@ -85965,77 +86046,77 @@ }, { "default": true, - "id": 10144, + "id": 10154, "properties": { "facing": "north", "triggered": "false" } }, { - "id": 10145, + "id": 10155, "properties": { "facing": "east", "triggered": "true" } }, { - "id": 10146, + "id": 10156, "properties": { "facing": "east", "triggered": "false" } }, { - "id": 10147, + "id": 10157, "properties": { "facing": "south", "triggered": "true" } }, { - "id": 10148, + "id": 10158, "properties": { "facing": "south", "triggered": "false" } }, { - "id": 10149, + "id": 10159, "properties": { "facing": "west", "triggered": "true" } }, { - "id": 10150, + "id": 10160, "properties": { "facing": "west", "triggered": "false" } }, { - "id": 10151, + "id": 10161, "properties": { "facing": "up", "triggered": "true" } }, { - "id": 10152, + "id": 10162, "properties": { "facing": "up", "triggered": "false" } }, { - "id": 10153, + "id": 10163, "properties": { "facing": "down", "triggered": "true" } }, { - "id": 10154, + "id": 10164, "properties": { "facing": "down", "triggered": "false" @@ -86051,7 +86132,7 @@ "states": [ { "default": true, - "id": 8439 + "id": 8449 } ] }, @@ -86068,7 +86149,7 @@ "states": [ { "default": true, - "id": 8285 + "id": 8295 } ] }, @@ -86080,7 +86161,7 @@ "states": [ { "default": true, - "id": 8163 + "id": 8173 } ] }, @@ -86092,7 +86173,7 @@ "states": [ { "default": true, - "id": 13527 + "id": 13537 } ] }, @@ -86104,7 +86185,7 @@ "states": [ { "default": true, - "id": 8180 + "id": 8190 } ] }, @@ -86127,28 +86208,28 @@ }, "states": [ { - "id": 8181, + "id": 8191, "properties": { "eye": "true", "facing": "north" } }, { - "id": 8182, + "id": 8192, "properties": { "eye": "true", "facing": "south" } }, { - "id": 8183, + "id": 8193, "properties": { "eye": "true", "facing": "west" } }, { - "id": 8184, + "id": 8194, "properties": { "eye": "true", "facing": "east" @@ -86156,28 +86237,28 @@ }, { "default": true, - "id": 8185, + "id": 8195, "properties": { "eye": "false", "facing": "north" } }, { - "id": 8186, + "id": 8196, "properties": { "eye": "false", "facing": "south" } }, { - "id": 8187, + "id": 8197, "properties": { "eye": "false", "facing": "west" } }, { - "id": 8188, + "id": 8198, "properties": { "eye": "false", "facing": "east" @@ -86202,38 +86283,38 @@ }, "states": [ { - "id": 13347, + "id": 13357, "properties": { "facing": "north" } }, { - "id": 13348, + "id": 13358, "properties": { "facing": "east" } }, { - "id": 13349, + "id": 13359, "properties": { "facing": "south" } }, { - "id": 13350, + "id": 13360, "properties": { "facing": "west" } }, { "default": true, - "id": 13351, + "id": 13361, "properties": { "facing": "up" } }, { - "id": 13352, + "id": 13362, "properties": { "facing": "down" } @@ -86248,7 +86329,7 @@ "states": [ { "default": true, - "id": 8189 + "id": 8199 } ] }, @@ -86270,21 +86351,21 @@ }, "states": [ { - "id": 15125, + "id": 15135, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 15126, + "id": 15136, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 15127, + "id": 15137, "properties": { "type": "bottom", "waterlogged": "true" @@ -86292,21 +86373,21 @@ }, { "default": true, - "id": 15128, + "id": 15138, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 15129, + "id": 15139, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 15130, + "id": 15140, "properties": { "type": "double", "waterlogged": "false" @@ -86346,98 +86427,98 @@ ] }, "states": [ - { - "id": 14375, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 14376, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14377, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14378, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14379, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14380, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14381, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14382, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14383, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14384, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 14385, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14386, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14387, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14388, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14389, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14390, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14391, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14392, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14393, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14394, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14395, "properties": { "facing": "north", "half": "bottom", @@ -86447,100 +86528,10 @@ }, { "default": true, - "id": 14386, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14387, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14388, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14389, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14390, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14391, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14392, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14393, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14394, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 14395, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 14396, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -86548,8 +86539,8 @@ { "id": 14397, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -86557,8 +86548,8 @@ { "id": 14398, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -86566,8 +86557,8 @@ { "id": 14399, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -86575,8 +86566,8 @@ { "id": 14400, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -86584,8 +86575,8 @@ { "id": 14401, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -86593,8 +86584,8 @@ { "id": 14402, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -86602,8 +86593,8 @@ { "id": 14403, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -86611,8 +86602,8 @@ { "id": 14404, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -86621,7 +86612,7 @@ "id": 14405, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -86630,7 +86621,7 @@ "id": 14406, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -86639,7 +86630,7 @@ "id": 14407, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -86648,7 +86639,7 @@ "id": 14408, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -86657,7 +86648,7 @@ "id": 14409, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -86666,7 +86657,7 @@ "id": 14410, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -86675,7 +86666,7 @@ "id": 14411, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -86684,7 +86675,7 @@ "id": 14412, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -86693,7 +86684,7 @@ "id": 14413, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -86702,7 +86693,7 @@ "id": 14414, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -86710,8 +86701,8 @@ { "id": 14415, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -86719,8 +86710,8 @@ { "id": 14416, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -86728,8 +86719,8 @@ { "id": 14417, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -86737,8 +86728,8 @@ { "id": 14418, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -86746,8 +86737,8 @@ { "id": 14419, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -86755,8 +86746,8 @@ { "id": 14420, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -86764,8 +86755,8 @@ { "id": 14421, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -86773,8 +86764,8 @@ { "id": 14422, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -86782,8 +86773,8 @@ { "id": 14423, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -86791,8 +86782,8 @@ { "id": 14424, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -86801,7 +86792,7 @@ "id": 14425, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -86810,7 +86801,7 @@ "id": 14426, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -86819,7 +86810,7 @@ "id": 14427, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -86828,7 +86819,7 @@ "id": 14428, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -86837,7 +86828,7 @@ "id": 14429, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -86846,7 +86837,7 @@ "id": 14430, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -86855,7 +86846,7 @@ "id": 14431, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -86864,7 +86855,7 @@ "id": 14432, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -86873,7 +86864,7 @@ "id": 14433, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -86882,7 +86873,7 @@ "id": 14434, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -86890,8 +86881,8 @@ { "id": 14435, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -86899,8 +86890,8 @@ { "id": 14436, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -86908,8 +86899,8 @@ { "id": 14437, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -86917,8 +86908,8 @@ { "id": 14438, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -86926,8 +86917,8 @@ { "id": 14439, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -86935,8 +86926,8 @@ { "id": 14440, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -86944,8 +86935,8 @@ { "id": 14441, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -86953,8 +86944,8 @@ { "id": 14442, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -86962,8 +86953,8 @@ { "id": 14443, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -86971,8 +86962,8 @@ { "id": 14444, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -86981,7 +86972,7 @@ "id": 14445, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -86990,7 +86981,7 @@ "id": 14446, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -86999,7 +86990,7 @@ "id": 14447, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -87008,7 +86999,7 @@ "id": 14448, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -87017,7 +87008,7 @@ "id": 14449, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -87026,7 +87017,7 @@ "id": 14450, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -87035,7 +87026,7 @@ "id": 14451, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -87044,7 +87035,7 @@ "id": 14452, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -87053,13 +87044,103 @@ "id": 14453, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 14454, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14455, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14456, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14457, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14458, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14459, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14460, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14461, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14462, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14463, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14464, "properties": { "facing": "east", "half": "bottom", @@ -87106,7 +87187,7 @@ }, "states": [ { - "id": 18737, + "id": 18747, "properties": { "east": "none", "north": "none", @@ -87117,7 +87198,7 @@ } }, { - "id": 18738, + "id": 18748, "properties": { "east": "none", "north": "none", @@ -87128,7 +87209,7 @@ } }, { - "id": 18739, + "id": 18749, "properties": { "east": "none", "north": "none", @@ -87140,124 +87221,14 @@ }, { "default": true, - "id": 18740, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18741, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18742, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18743, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18744, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18745, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18746, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18747, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18748, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18749, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { "id": 18750, "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -87265,10 +87236,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -87276,10 +87247,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -87287,10 +87258,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -87298,10 +87269,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -87309,10 +87280,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -87320,10 +87291,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -87331,10 +87302,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -87342,10 +87313,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -87354,9 +87325,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -87365,9 +87336,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -87375,10 +87346,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -87386,10 +87357,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -87397,10 +87368,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -87408,10 +87379,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -87419,10 +87390,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -87430,10 +87401,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -87441,10 +87412,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -87452,10 +87423,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -87463,10 +87434,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -87474,10 +87445,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -87486,9 +87457,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -87497,130 +87468,130 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 18773, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 18774, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 18775, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 18776, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18777, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 18778, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18779, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18780, - "properties": { - "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 18781, + "id": 18779, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 18782, + "id": 18780, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 18781, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18782, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 18783, "properties": { "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -87629,9 +87600,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -87639,10 +87610,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -87650,10 +87621,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -87661,10 +87632,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -87672,10 +87643,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -87683,10 +87654,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -87694,10 +87665,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -87705,10 +87676,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -87716,10 +87687,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -87727,10 +87698,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -87738,10 +87709,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -87750,9 +87721,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -87761,9 +87732,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -87771,10 +87742,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -87782,10 +87753,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -87793,10 +87764,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -87804,10 +87775,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -87815,10 +87786,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -87826,10 +87797,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -87837,10 +87808,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -87848,10 +87819,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -87859,10 +87830,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -87870,10 +87841,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -87882,9 +87853,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -87893,130 +87864,130 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 18809, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 18810, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 18811, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 18812, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18813, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 18814, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18815, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18816, - "properties": { - "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 18817, + "id": 18815, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 18818, + "id": 18816, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 18817, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18818, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 18819, "properties": { "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -88025,9 +87996,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -88035,10 +88006,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -88046,10 +88017,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -88057,10 +88028,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -88068,10 +88039,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -88079,10 +88050,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -88090,10 +88061,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -88101,10 +88072,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -88112,10 +88083,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -88123,10 +88094,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -88134,10 +88105,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -88146,9 +88117,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -88157,9 +88128,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -88167,10 +88138,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -88178,10 +88149,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -88189,10 +88160,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -88200,10 +88171,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -88211,10 +88182,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -88222,10 +88193,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -88233,10 +88204,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -88244,10 +88215,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -88255,10 +88226,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -88266,14 +88237,124 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18843, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18844, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18845, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18846, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18847, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18848, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18849, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18850, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18851, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18852, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18853, "properties": { "east": "none", "north": "tall", @@ -88284,7 +88365,7 @@ } }, { - "id": 18844, + "id": 18854, "properties": { "east": "none", "north": "tall", @@ -88294,125 +88375,15 @@ "west": "tall" } }, - { - "id": 18845, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18846, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18847, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18848, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18849, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18850, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18851, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18852, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18853, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18854, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 18855, "properties": { "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -88421,9 +88392,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -88431,10 +88402,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -88442,10 +88413,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -88453,10 +88424,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -88464,10 +88435,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -88475,10 +88446,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -88486,10 +88457,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -88497,10 +88468,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -88508,10 +88479,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -88519,10 +88490,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -88530,10 +88501,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -88542,9 +88513,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -88553,9 +88524,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -88563,10 +88534,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -88574,10 +88545,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -88585,10 +88556,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -88596,10 +88567,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -88607,10 +88578,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -88618,10 +88589,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -88629,10 +88600,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -88640,10 +88611,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -88651,10 +88622,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -88662,10 +88633,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -88674,9 +88645,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -88685,130 +88656,130 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 18881, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 18882, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 18883, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 18884, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18885, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 18886, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18887, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18888, - "properties": { - "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 18889, + "id": 18887, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 18890, + "id": 18888, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 18889, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18890, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 18891, "properties": { "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -88817,9 +88788,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -88827,10 +88798,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -88838,10 +88809,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -88849,10 +88820,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -88860,10 +88831,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -88871,10 +88842,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -88882,10 +88853,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -88893,10 +88864,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -88904,10 +88875,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -88915,10 +88886,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -88926,10 +88897,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -88938,9 +88909,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -88949,9 +88920,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -88959,10 +88930,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -88970,10 +88941,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -88981,10 +88952,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -88992,10 +88963,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -89003,10 +88974,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -89014,10 +88985,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -89025,10 +88996,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -89036,10 +89007,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -89047,10 +89018,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -89058,10 +89029,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -89070,9 +89041,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -89081,130 +89052,130 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 18917, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 18918, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 18919, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 18920, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18921, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 18922, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18923, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18924, - "properties": { - "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 18925, + "id": 18923, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 18926, + "id": 18924, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 18925, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18926, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 18927, "properties": { "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -89213,9 +89184,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -89223,10 +89194,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -89234,10 +89205,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -89245,10 +89216,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -89256,10 +89227,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -89267,10 +89238,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -89278,10 +89249,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -89289,10 +89260,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -89300,10 +89271,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -89311,10 +89282,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -89322,10 +89293,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -89334,9 +89305,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -89345,9 +89316,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -89355,10 +89326,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -89366,10 +89337,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -89377,10 +89348,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -89388,10 +89359,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -89399,10 +89370,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -89410,10 +89381,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -89421,10 +89392,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -89432,10 +89403,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -89443,10 +89414,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -89454,14 +89425,124 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18951, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18952, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18953, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18954, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18955, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18956, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18957, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18958, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18959, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18960, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18961, "properties": { "east": "low", "north": "tall", @@ -89472,7 +89553,7 @@ } }, { - "id": 18952, + "id": 18962, "properties": { "east": "low", "north": "tall", @@ -89482,125 +89563,15 @@ "west": "tall" } }, - { - "id": 18953, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18954, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18955, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18956, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18957, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18958, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18959, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18960, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18961, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18962, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 18963, "properties": { "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -89609,9 +89580,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -89619,10 +89590,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -89630,10 +89601,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -89641,10 +89612,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -89652,10 +89623,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -89663,10 +89634,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -89674,10 +89645,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -89685,10 +89656,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -89696,10 +89667,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -89707,10 +89678,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -89718,10 +89689,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -89730,9 +89701,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -89741,9 +89712,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -89751,10 +89722,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -89762,10 +89733,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -89773,10 +89744,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -89784,10 +89755,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -89795,10 +89766,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -89806,10 +89777,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -89817,10 +89788,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -89828,10 +89799,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -89839,10 +89810,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -89850,14 +89821,124 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18987, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18988, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18989, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18990, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18991, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18992, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18993, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18994, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18995, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18996, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18997, "properties": { "east": "tall", "north": "none", @@ -89868,7 +89949,7 @@ } }, { - "id": 18988, + "id": 18998, "properties": { "east": "tall", "north": "none", @@ -89878,125 +89959,15 @@ "west": "tall" } }, - { - "id": 18989, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18990, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18991, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18992, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18993, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18994, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18995, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18996, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18997, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18998, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 18999, "properties": { "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -90005,9 +89976,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -90015,10 +89986,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -90026,10 +89997,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -90037,10 +90008,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -90048,10 +90019,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -90059,10 +90030,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -90070,10 +90041,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -90081,10 +90052,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -90092,10 +90063,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -90103,10 +90074,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -90114,10 +90085,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -90126,9 +90097,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -90137,9 +90108,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -90147,10 +90118,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -90158,10 +90129,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -90169,10 +90140,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -90180,10 +90151,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -90191,10 +90162,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -90202,10 +90173,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -90213,10 +90184,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -90224,10 +90195,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -90235,10 +90206,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -90246,14 +90217,124 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 19023, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19024, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19025, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19026, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19027, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19028, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19029, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19030, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19031, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19032, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19033, "properties": { "east": "tall", "north": "low", @@ -90264,7 +90345,7 @@ } }, { - "id": 19024, + "id": 19034, "properties": { "east": "tall", "north": "low", @@ -90274,125 +90355,15 @@ "west": "tall" } }, - { - "id": 19025, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19026, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19027, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19028, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19029, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19030, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19031, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19032, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19033, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19034, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 19035, "properties": { "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -90401,9 +90372,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -90411,10 +90382,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -90422,10 +90393,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -90433,10 +90404,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -90444,10 +90415,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -90455,10 +90426,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -90466,10 +90437,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -90477,10 +90448,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -90488,10 +90459,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -90499,10 +90470,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -90510,14 +90481,124 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 19047, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19048, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19049, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19050, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19051, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19052, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19053, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19054, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19055, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19056, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19057, "properties": { "east": "tall", "north": "tall", @@ -90528,7 +90609,7 @@ } }, { - "id": 19048, + "id": 19058, "properties": { "east": "tall", "north": "tall", @@ -90538,118 +90619,118 @@ "west": "tall" } }, - { - "id": 19049, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19050, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19051, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19052, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19053, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19054, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19055, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19056, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19057, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19058, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 19059, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19060, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19061, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19062, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19063, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19064, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19065, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19066, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19067, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19068, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19069, "properties": { "east": "tall", "north": "tall", @@ -90660,7 +90741,7 @@ } }, { - "id": 19060, + "id": 19070, "properties": { "east": "tall", "north": "tall", @@ -90680,7 +90761,7 @@ "states": [ { "default": true, - "id": 13507 + "id": 13517 } ] }, @@ -90703,7 +90784,7 @@ }, "states": [ { - "id": 8287, + "id": 8297, "properties": { "facing": "north", "waterlogged": "true" @@ -90711,49 +90792,49 @@ }, { "default": true, - "id": 8288, + "id": 8298, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 8289, + "id": 8299, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 8290, + "id": 8300, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 8291, + "id": 8301, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 8292, + "id": 8302, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 8293, + "id": 8303, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 8294, + "id": 8304, "properties": { "facing": "east", "waterlogged": "false" @@ -90770,7 +90851,7 @@ "states": [ { "default": true, - "id": 23963 + "id": 23978 } ] }, @@ -90783,7 +90864,7 @@ "states": [ { "default": true, - "id": 23952 + "id": 23967 } ] }, @@ -90805,21 +90886,21 @@ }, "states": [ { - "id": 25709, + "id": 25724, "properties": { "lit": "true", "powered": "true" } }, { - "id": 25710, + "id": 25725, "properties": { "lit": "true", "powered": "false" } }, { - "id": 25711, + "id": 25726, "properties": { "lit": "false", "powered": "true" @@ -90827,7 +90908,7 @@ }, { "default": true, - "id": 25712, + "id": 25727, "properties": { "lit": "false", "powered": "false" @@ -90868,7 +90949,7 @@ }, "states": [ { - "id": 24729, + "id": 24744, "properties": { "facing": "north", "half": "upper", @@ -90878,7 +90959,7 @@ } }, { - "id": 24730, + "id": 24745, "properties": { "facing": "north", "half": "upper", @@ -90888,7 +90969,7 @@ } }, { - "id": 24731, + "id": 24746, "properties": { "facing": "north", "half": "upper", @@ -90898,7 +90979,7 @@ } }, { - "id": 24732, + "id": 24747, "properties": { "facing": "north", "half": "upper", @@ -90908,7 +90989,7 @@ } }, { - "id": 24733, + "id": 24748, "properties": { "facing": "north", "half": "upper", @@ -90918,7 +90999,7 @@ } }, { - "id": 24734, + "id": 24749, "properties": { "facing": "north", "half": "upper", @@ -90928,7 +91009,7 @@ } }, { - "id": 24735, + "id": 24750, "properties": { "facing": "north", "half": "upper", @@ -90938,7 +91019,7 @@ } }, { - "id": 24736, + "id": 24751, "properties": { "facing": "north", "half": "upper", @@ -90948,7 +91029,7 @@ } }, { - "id": 24737, + "id": 24752, "properties": { "facing": "north", "half": "lower", @@ -90958,7 +91039,7 @@ } }, { - "id": 24738, + "id": 24753, "properties": { "facing": "north", "half": "lower", @@ -90968,7 +91049,7 @@ } }, { - "id": 24739, + "id": 24754, "properties": { "facing": "north", "half": "lower", @@ -90979,189 +91060,29 @@ }, { "default": true, - "id": 24740, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 24741, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24742, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 24743, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 24744, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 24745, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 24746, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 24747, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 24748, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 24749, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24750, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 24751, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 24752, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 24753, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 24754, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { "id": 24755, "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24756, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24757, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24758, - "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "right", "open": "true", @@ -91169,159 +91090,159 @@ } }, { - "id": 24759, + "id": 24758, "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true" } }, + { + "id": 24759, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { "id": 24760, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 24761, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24762, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24763, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24764, "properties": { - "facing": "west", + "facing": "south", "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24765, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24766, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24767, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24768, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 24769, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24770, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24771, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24772, "properties": { - "facing": "west", + "facing": "south", "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24773, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24774, - "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "right", "open": "true", @@ -91329,97 +91250,257 @@ } }, { - "id": 24775, + "id": 24774, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true" } }, + { + "id": 24775, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { "id": 24776, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 24777, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24778, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24779, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24780, "properties": { - "facing": "east", + "facing": "west", "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24781, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24782, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24783, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24784, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24785, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24786, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24787, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24788, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24789, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24790, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24791, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24792, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24793, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24794, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24795, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24796, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24797, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24798, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24799, "properties": { "facing": "east", "half": "upper", @@ -91429,7 +91510,7 @@ } }, { - "id": 24785, + "id": 24800, "properties": { "facing": "east", "half": "lower", @@ -91439,7 +91520,7 @@ } }, { - "id": 24786, + "id": 24801, "properties": { "facing": "east", "half": "lower", @@ -91449,7 +91530,7 @@ } }, { - "id": 24787, + "id": 24802, "properties": { "facing": "east", "half": "lower", @@ -91459,7 +91540,7 @@ } }, { - "id": 24788, + "id": 24803, "properties": { "facing": "east", "half": "lower", @@ -91469,7 +91550,7 @@ } }, { - "id": 24789, + "id": 24804, "properties": { "facing": "east", "half": "lower", @@ -91479,7 +91560,7 @@ } }, { - "id": 24790, + "id": 24805, "properties": { "facing": "east", "half": "lower", @@ -91489,7 +91570,7 @@ } }, { - "id": 24791, + "id": 24806, "properties": { "facing": "east", "half": "lower", @@ -91499,7 +91580,7 @@ } }, { - "id": 24792, + "id": 24807, "properties": { "facing": "east", "half": "lower", @@ -91524,14 +91605,14 @@ }, "states": [ { - "id": 25691, + "id": 25706, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 25692, + "id": 25707, "properties": { "waterlogged": "false" } @@ -91571,7 +91652,7 @@ }, "states": [ { - "id": 25241, + "id": 25256, "properties": { "facing": "north", "half": "top", @@ -91581,7 +91662,7 @@ } }, { - "id": 25242, + "id": 25257, "properties": { "facing": "north", "half": "top", @@ -91591,7 +91672,7 @@ } }, { - "id": 25243, + "id": 25258, "properties": { "facing": "north", "half": "top", @@ -91601,7 +91682,7 @@ } }, { - "id": 25244, + "id": 25259, "properties": { "facing": "north", "half": "top", @@ -91611,7 +91692,7 @@ } }, { - "id": 25245, + "id": 25260, "properties": { "facing": "north", "half": "top", @@ -91621,7 +91702,7 @@ } }, { - "id": 25246, + "id": 25261, "properties": { "facing": "north", "half": "top", @@ -91631,7 +91712,7 @@ } }, { - "id": 25247, + "id": 25262, "properties": { "facing": "north", "half": "top", @@ -91641,7 +91722,7 @@ } }, { - "id": 25248, + "id": 25263, "properties": { "facing": "north", "half": "top", @@ -91651,7 +91732,7 @@ } }, { - "id": 25249, + "id": 25264, "properties": { "facing": "north", "half": "bottom", @@ -91661,7 +91742,7 @@ } }, { - "id": 25250, + "id": 25265, "properties": { "facing": "north", "half": "bottom", @@ -91671,7 +91752,7 @@ } }, { - "id": 25251, + "id": 25266, "properties": { "facing": "north", "half": "bottom", @@ -91681,7 +91762,7 @@ } }, { - "id": 25252, + "id": 25267, "properties": { "facing": "north", "half": "bottom", @@ -91691,7 +91772,7 @@ } }, { - "id": 25253, + "id": 25268, "properties": { "facing": "north", "half": "bottom", @@ -91701,7 +91782,7 @@ } }, { - "id": 25254, + "id": 25269, "properties": { "facing": "north", "half": "bottom", @@ -91711,7 +91792,7 @@ } }, { - "id": 25255, + "id": 25270, "properties": { "facing": "north", "half": "bottom", @@ -91722,7 +91803,7 @@ }, { "default": true, - "id": 25256, + "id": 25271, "properties": { "facing": "north", "half": "bottom", @@ -91731,300 +91812,140 @@ "waterlogged": "false" } }, - { - "id": 25257, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25258, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25259, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25260, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25261, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25262, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25263, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25264, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25265, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25266, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25267, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25268, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25269, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25270, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25271, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, { "id": 25272, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25273, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25274, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25275, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25276, "properties": { - "facing": "west", + "facing": "south", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25277, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25278, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25279, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25280, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25281, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25282, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25283, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25284, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25285, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25286, - "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "false", "powered": "true", @@ -92032,97 +91953,257 @@ } }, { - "id": 25287, + "id": 25286, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true" } }, + { + "id": 25287, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, { "id": 25288, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25289, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25290, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25291, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25292, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25293, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25294, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25295, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25296, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25297, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25298, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25299, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25300, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25301, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25302, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25303, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25304, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25305, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25306, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25307, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25308, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25309, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25310, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25311, "properties": { "facing": "east", "half": "top", @@ -92132,7 +92213,7 @@ } }, { - "id": 25297, + "id": 25312, "properties": { "facing": "east", "half": "bottom", @@ -92142,7 +92223,7 @@ } }, { - "id": 25298, + "id": 25313, "properties": { "facing": "east", "half": "bottom", @@ -92152,7 +92233,7 @@ } }, { - "id": 25299, + "id": 25314, "properties": { "facing": "east", "half": "bottom", @@ -92162,7 +92243,7 @@ } }, { - "id": 25300, + "id": 25315, "properties": { "facing": "east", "half": "bottom", @@ -92172,7 +92253,7 @@ } }, { - "id": 25301, + "id": 25316, "properties": { "facing": "east", "half": "bottom", @@ -92182,7 +92263,7 @@ } }, { - "id": 25302, + "id": 25317, "properties": { "facing": "east", "half": "bottom", @@ -92192,7 +92273,7 @@ } }, { - "id": 25303, + "id": 25318, "properties": { "facing": "east", "half": "bottom", @@ -92202,7 +92283,7 @@ } }, { - "id": 25304, + "id": 25319, "properties": { "facing": "east", "half": "bottom", @@ -92222,7 +92303,7 @@ "states": [ { "default": true, - "id": 23959 + "id": 23974 } ] }, @@ -92245,21 +92326,21 @@ }, "states": [ { - "id": 24301, + "id": 24316, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 24302, + "id": 24317, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 24303, + "id": 24318, "properties": { "type": "bottom", "waterlogged": "true" @@ -92267,21 +92348,21 @@ }, { "default": true, - "id": 24304, + "id": 24319, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 24305, + "id": 24320, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 24306, + "id": 24321, "properties": { "type": "double", "waterlogged": "false" @@ -92323,7 +92404,7 @@ }, "states": [ { - "id": 24129, + "id": 24144, "properties": { "facing": "north", "half": "top", @@ -92332,7 +92413,7 @@ } }, { - "id": 24130, + "id": 24145, "properties": { "facing": "north", "half": "top", @@ -92341,7 +92422,7 @@ } }, { - "id": 24131, + "id": 24146, "properties": { "facing": "north", "half": "top", @@ -92350,7 +92431,7 @@ } }, { - "id": 24132, + "id": 24147, "properties": { "facing": "north", "half": "top", @@ -92359,7 +92440,7 @@ } }, { - "id": 24133, + "id": 24148, "properties": { "facing": "north", "half": "top", @@ -92368,7 +92449,7 @@ } }, { - "id": 24134, + "id": 24149, "properties": { "facing": "north", "half": "top", @@ -92377,7 +92458,7 @@ } }, { - "id": 24135, + "id": 24150, "properties": { "facing": "north", "half": "top", @@ -92386,7 +92467,7 @@ } }, { - "id": 24136, + "id": 24151, "properties": { "facing": "north", "half": "top", @@ -92395,7 +92476,7 @@ } }, { - "id": 24137, + "id": 24152, "properties": { "facing": "north", "half": "top", @@ -92404,7 +92485,7 @@ } }, { - "id": 24138, + "id": 24153, "properties": { "facing": "north", "half": "top", @@ -92413,7 +92494,7 @@ } }, { - "id": 24139, + "id": 24154, "properties": { "facing": "north", "half": "bottom", @@ -92423,250 +92504,250 @@ }, { "default": true, - "id": 24140, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24141, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24142, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24143, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24144, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24145, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24146, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24147, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24148, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24149, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24150, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24151, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24152, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24153, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24154, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { "id": 24155, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24156, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24157, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { "id": 24158, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 24159, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "shape": "inner_right", + "waterlogged": "false" } }, { "id": 24160, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 24161, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "shape": "outer_left", + "waterlogged": "false" } }, { "id": 24162, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "shape": "outer_right", + "waterlogged": "true" } }, { "id": 24163, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "shape": "outer_right", + "waterlogged": "false" } }, { "id": 24164, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24165, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24166, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24167, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24168, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24169, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24170, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24171, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24172, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24173, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24174, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24175, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24176, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24177, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24178, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24179, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24180, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24181, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24182, "properties": { "facing": "south", "half": "bottom", @@ -92675,7 +92756,7 @@ } }, { - "id": 24168, + "id": 24183, "properties": { "facing": "south", "half": "bottom", @@ -92683,170 +92764,170 @@ "waterlogged": "false" } }, - { - "id": 24169, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24170, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24171, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24172, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24173, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24174, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24175, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24176, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24177, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24178, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24179, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24180, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24181, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24182, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24183, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 24184, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24185, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24186, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24187, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24188, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24189, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24190, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24191, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24192, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24193, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24194, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24195, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24196, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24197, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24198, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24199, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24200, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24201, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24202, "properties": { "facing": "west", "half": "bottom", @@ -92855,7 +92936,7 @@ } }, { - "id": 24188, + "id": 24203, "properties": { "facing": "west", "half": "bottom", @@ -92863,152 +92944,152 @@ "waterlogged": "false" } }, - { - "id": 24189, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24190, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24191, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24192, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24193, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24194, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24195, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24196, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24197, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24198, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24199, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24200, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24201, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24202, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24203, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 24204, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24205, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24206, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24207, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24208, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24209, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24210, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24211, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24212, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24213, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24214, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24215, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24216, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24217, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24218, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24219, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24220, "properties": { "facing": "east", "half": "bottom", @@ -93017,7 +93098,7 @@ } }, { - "id": 24206, + "id": 24221, "properties": { "facing": "east", "half": "bottom", @@ -93026,7 +93107,7 @@ } }, { - "id": 24207, + "id": 24222, "properties": { "facing": "east", "half": "bottom", @@ -93035,7 +93116,7 @@ } }, { - "id": 24208, + "id": 24223, "properties": { "facing": "east", "half": "bottom", @@ -93065,49 +93146,49 @@ "states": [ { "default": true, - "id": 4341, + "id": 4350, "properties": { "moisture": "0" } }, { - "id": 4342, + "id": 4351, "properties": { "moisture": "1" } }, { - "id": 4343, + "id": 4352, "properties": { "moisture": "2" } }, { - "id": 4344, + "id": 4353, "properties": { "moisture": "3" } }, { - "id": 4345, + "id": 4354, "properties": { "moisture": "4" } }, { - "id": 4346, + "id": 4355, "properties": { "moisture": "5" } }, { - "id": 4347, + "id": 4356, "properties": { "moisture": "6" } }, { - "id": 4348, + "id": 4357, "properties": { "moisture": "7" } @@ -93172,39 +93253,6 @@ ] }, "states": [ - { - "id": 2403, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2404, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2405, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, { "id": 2406, "properties": { @@ -93212,8 +93260,8 @@ "east": "true", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -93222,9 +93270,9 @@ "age": "0", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -93233,9 +93281,9 @@ "age": "0", "east": "true", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -93244,9 +93292,9 @@ "age": "0", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -93256,8 +93304,8 @@ "east": "true", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -93265,10 +93313,10 @@ "properties": { "age": "0", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -93276,10 +93324,10 @@ "properties": { "age": "0", "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -93287,10 +93335,10 @@ "properties": { "age": "0", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -93300,8 +93348,8 @@ "east": "true", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -93310,9 +93358,9 @@ "age": "0", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -93321,9 +93369,9 @@ "age": "0", "east": "true", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -93332,9 +93380,9 @@ "age": "0", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -93344,41 +93392,41 @@ "east": "true", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2419, "properties": { "age": "0", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { "id": 2420, "properties": { "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { "id": 2421, "properties": { "age": "0", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -93388,8 +93436,8 @@ "east": "false", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -93398,9 +93446,9 @@ "age": "0", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -93409,9 +93457,9 @@ "age": "0", "east": "false", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -93420,9 +93468,9 @@ "age": "0", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -93432,8 +93480,8 @@ "east": "false", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -93441,10 +93489,10 @@ "properties": { "age": "0", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -93452,10 +93500,10 @@ "properties": { "age": "0", "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -93463,14 +93511,47 @@ "properties": { "age": "0", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { "id": 2430, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2431, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2432, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2433, "properties": { "age": "0", "east": "false", @@ -93481,7 +93562,7 @@ } }, { - "id": 2431, + "id": 2434, "properties": { "age": "0", "east": "false", @@ -93492,7 +93573,7 @@ } }, { - "id": 2432, + "id": 2435, "properties": { "age": "0", "east": "false", @@ -93503,7 +93584,7 @@ } }, { - "id": 2433, + "id": 2436, "properties": { "age": "0", "east": "false", @@ -93515,7 +93596,7 @@ }, { "default": true, - "id": 2434, + "id": 2437, "properties": { "age": "0", "east": "false", @@ -93525,39 +93606,6 @@ "west": "false" } }, - { - "id": 2435, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2436, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2437, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, { "id": 2438, "properties": { @@ -93565,8 +93613,8 @@ "east": "true", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -93575,9 +93623,9 @@ "age": "1", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -93586,9 +93634,9 @@ "age": "1", "east": "true", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -93597,9 +93645,9 @@ "age": "1", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -93609,8 +93657,8 @@ "east": "true", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -93618,10 +93666,10 @@ "properties": { "age": "1", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -93629,10 +93677,10 @@ "properties": { "age": "1", "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -93640,10 +93688,10 @@ "properties": { "age": "1", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -93653,8 +93701,8 @@ "east": "true", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -93663,9 +93711,9 @@ "age": "1", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -93674,9 +93722,9 @@ "age": "1", "east": "true", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -93685,9 +93733,9 @@ "age": "1", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -93697,41 +93745,41 @@ "east": "true", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2451, "properties": { "age": "1", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { "id": 2452, "properties": { "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { "id": 2453, "properties": { "age": "1", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -93741,8 +93789,8 @@ "east": "false", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -93751,9 +93799,9 @@ "age": "1", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -93762,9 +93810,9 @@ "age": "1", "east": "false", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -93773,9 +93821,9 @@ "age": "1", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -93785,8 +93833,8 @@ "east": "false", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -93794,10 +93842,10 @@ "properties": { "age": "1", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -93805,10 +93853,10 @@ "properties": { "age": "1", "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -93816,10 +93864,10 @@ "properties": { "age": "1", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -93829,8 +93877,8 @@ "east": "false", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -93839,9 +93887,9 @@ "age": "1", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -93850,9 +93898,9 @@ "age": "1", "east": "false", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -93861,9 +93909,9 @@ "age": "1", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -93873,43 +93921,43 @@ "east": "false", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2467, "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2468, - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", + "age": "1", + "east": "false", + "north": "false", + "south": "false", "up": "true", "west": "false" } }, { - "id": 2469, + "id": 2468, "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", + "age": "1", + "east": "false", + "north": "false", + "south": "false", "up": "false", "west": "true" } }, + { + "id": 2469, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, { "id": 2470, "properties": { @@ -93917,8 +93965,8 @@ "east": "true", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -93927,9 +93975,9 @@ "age": "2", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -93938,9 +93986,9 @@ "age": "2", "east": "true", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -93949,9 +93997,9 @@ "age": "2", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -93961,8 +94009,8 @@ "east": "true", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -93970,10 +94018,10 @@ "properties": { "age": "2", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -93981,10 +94029,10 @@ "properties": { "age": "2", "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -93992,10 +94040,10 @@ "properties": { "age": "2", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94005,8 +94053,8 @@ "east": "true", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -94015,9 +94063,9 @@ "age": "2", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -94026,9 +94074,9 @@ "age": "2", "east": "true", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -94037,9 +94085,9 @@ "age": "2", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94049,41 +94097,41 @@ "east": "true", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2483, "properties": { "age": "2", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { "id": 2484, "properties": { "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { "id": 2485, "properties": { "age": "2", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94093,8 +94141,8 @@ "east": "false", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -94103,9 +94151,9 @@ "age": "2", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -94114,9 +94162,9 @@ "age": "2", "east": "false", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -94125,9 +94173,9 @@ "age": "2", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94137,8 +94185,8 @@ "east": "false", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -94146,10 +94194,10 @@ "properties": { "age": "2", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -94157,10 +94205,10 @@ "properties": { "age": "2", "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -94168,10 +94216,10 @@ "properties": { "age": "2", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94181,8 +94229,8 @@ "east": "false", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -94191,9 +94239,9 @@ "age": "2", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -94202,9 +94250,9 @@ "age": "2", "east": "false", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -94213,9 +94261,9 @@ "age": "2", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94225,43 +94273,43 @@ "east": "false", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2499, "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2500, - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", + "age": "2", + "east": "false", + "north": "false", + "south": "false", "up": "true", "west": "false" } }, { - "id": 2501, + "id": 2500, "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", + "age": "2", + "east": "false", + "north": "false", + "south": "false", "up": "false", "west": "true" } }, + { + "id": 2501, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, { "id": 2502, "properties": { @@ -94269,8 +94317,8 @@ "east": "true", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -94279,9 +94327,9 @@ "age": "3", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -94290,9 +94338,9 @@ "age": "3", "east": "true", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -94301,9 +94349,9 @@ "age": "3", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94313,8 +94361,8 @@ "east": "true", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -94322,10 +94370,10 @@ "properties": { "age": "3", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -94333,10 +94381,10 @@ "properties": { "age": "3", "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -94344,10 +94392,10 @@ "properties": { "age": "3", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94357,8 +94405,8 @@ "east": "true", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -94367,9 +94415,9 @@ "age": "3", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -94378,9 +94426,9 @@ "age": "3", "east": "true", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -94389,9 +94437,9 @@ "age": "3", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94401,41 +94449,41 @@ "east": "true", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2515, "properties": { "age": "3", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { "id": 2516, "properties": { "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { "id": 2517, "properties": { "age": "3", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94445,8 +94493,8 @@ "east": "false", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -94455,9 +94503,9 @@ "age": "3", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -94466,9 +94514,9 @@ "age": "3", "east": "false", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -94477,9 +94525,9 @@ "age": "3", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94489,8 +94537,8 @@ "east": "false", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -94498,10 +94546,10 @@ "properties": { "age": "3", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -94509,10 +94557,10 @@ "properties": { "age": "3", "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -94520,10 +94568,10 @@ "properties": { "age": "3", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94533,8 +94581,8 @@ "east": "false", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -94543,9 +94591,9 @@ "age": "3", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -94554,9 +94602,9 @@ "age": "3", "east": "false", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -94565,9 +94613,9 @@ "age": "3", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94577,43 +94625,43 @@ "east": "false", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2531, "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2532, - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", + "age": "3", + "east": "false", + "north": "false", + "south": "false", "up": "true", "west": "false" } }, { - "id": 2533, + "id": 2532, "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", + "age": "3", + "east": "false", + "north": "false", + "south": "false", "up": "false", "west": "true" } }, + { + "id": 2533, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, { "id": 2534, "properties": { @@ -94621,8 +94669,8 @@ "east": "true", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -94631,9 +94679,9 @@ "age": "4", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -94642,9 +94690,9 @@ "age": "4", "east": "true", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -94653,9 +94701,9 @@ "age": "4", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94665,8 +94713,8 @@ "east": "true", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -94674,10 +94722,10 @@ "properties": { "age": "4", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -94685,10 +94733,10 @@ "properties": { "age": "4", "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -94696,10 +94744,10 @@ "properties": { "age": "4", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94709,8 +94757,8 @@ "east": "true", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -94719,9 +94767,9 @@ "age": "4", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -94730,9 +94778,9 @@ "age": "4", "east": "true", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -94741,9 +94789,9 @@ "age": "4", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94753,41 +94801,41 @@ "east": "true", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2547, "properties": { "age": "4", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { "id": 2548, "properties": { "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { "id": 2549, "properties": { "age": "4", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94797,8 +94845,8 @@ "east": "false", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -94807,9 +94855,9 @@ "age": "4", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -94818,9 +94866,9 @@ "age": "4", "east": "false", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -94829,9 +94877,9 @@ "age": "4", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94841,8 +94889,8 @@ "east": "false", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -94850,10 +94898,10 @@ "properties": { "age": "4", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -94861,10 +94909,10 @@ "properties": { "age": "4", "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -94872,10 +94920,10 @@ "properties": { "age": "4", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94885,8 +94933,8 @@ "east": "false", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -94895,9 +94943,9 @@ "age": "4", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -94906,9 +94954,9 @@ "age": "4", "east": "false", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -94917,9 +94965,9 @@ "age": "4", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -94929,43 +94977,43 @@ "east": "false", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2563, "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2564, - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", + "age": "4", + "east": "false", + "north": "false", + "south": "false", "up": "true", "west": "false" } }, { - "id": 2565, + "id": 2564, "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", + "age": "4", + "east": "false", + "north": "false", + "south": "false", "up": "false", "west": "true" } }, + { + "id": 2565, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, { "id": 2566, "properties": { @@ -94973,8 +95021,8 @@ "east": "true", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -94983,9 +95031,9 @@ "age": "5", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -94994,9 +95042,9 @@ "age": "5", "east": "true", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -95005,9 +95053,9 @@ "age": "5", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95017,8 +95065,8 @@ "east": "true", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -95026,10 +95074,10 @@ "properties": { "age": "5", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -95037,10 +95085,10 @@ "properties": { "age": "5", "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -95048,10 +95096,10 @@ "properties": { "age": "5", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95061,8 +95109,8 @@ "east": "true", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -95071,9 +95119,9 @@ "age": "5", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -95082,9 +95130,9 @@ "age": "5", "east": "true", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -95093,9 +95141,9 @@ "age": "5", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95105,41 +95153,41 @@ "east": "true", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2579, "properties": { "age": "5", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { "id": 2580, "properties": { "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { "id": 2581, "properties": { "age": "5", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95149,8 +95197,8 @@ "east": "false", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -95159,9 +95207,9 @@ "age": "5", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -95170,9 +95218,9 @@ "age": "5", "east": "false", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -95181,9 +95229,9 @@ "age": "5", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95193,8 +95241,8 @@ "east": "false", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -95202,10 +95250,10 @@ "properties": { "age": "5", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -95213,10 +95261,10 @@ "properties": { "age": "5", "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -95224,10 +95272,10 @@ "properties": { "age": "5", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95237,8 +95285,8 @@ "east": "false", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -95247,9 +95295,9 @@ "age": "5", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -95258,9 +95306,9 @@ "age": "5", "east": "false", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -95269,9 +95317,9 @@ "age": "5", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95281,43 +95329,43 @@ "east": "false", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2595, "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2596, - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", + "age": "5", + "east": "false", + "north": "false", + "south": "false", "up": "true", "west": "false" } }, { - "id": 2597, + "id": 2596, "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", + "age": "5", + "east": "false", + "north": "false", + "south": "false", "up": "false", "west": "true" } }, + { + "id": 2597, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, { "id": 2598, "properties": { @@ -95325,8 +95373,8 @@ "east": "true", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -95335,9 +95383,9 @@ "age": "6", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -95346,9 +95394,9 @@ "age": "6", "east": "true", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -95357,9 +95405,9 @@ "age": "6", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95369,8 +95417,8 @@ "east": "true", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -95378,10 +95426,10 @@ "properties": { "age": "6", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -95389,10 +95437,10 @@ "properties": { "age": "6", "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -95400,10 +95448,10 @@ "properties": { "age": "6", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95413,8 +95461,8 @@ "east": "true", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -95423,9 +95471,9 @@ "age": "6", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -95434,9 +95482,9 @@ "age": "6", "east": "true", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -95445,9 +95493,9 @@ "age": "6", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95457,41 +95505,41 @@ "east": "true", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2611, "properties": { "age": "6", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { "id": 2612, "properties": { "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { "id": 2613, "properties": { "age": "6", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95501,8 +95549,8 @@ "east": "false", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -95511,9 +95559,9 @@ "age": "6", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -95522,9 +95570,9 @@ "age": "6", "east": "false", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -95533,9 +95581,9 @@ "age": "6", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95545,8 +95593,8 @@ "east": "false", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -95554,10 +95602,10 @@ "properties": { "age": "6", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -95565,10 +95613,10 @@ "properties": { "age": "6", "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -95576,10 +95624,10 @@ "properties": { "age": "6", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95589,8 +95637,8 @@ "east": "false", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -95599,9 +95647,9 @@ "age": "6", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -95610,9 +95658,9 @@ "age": "6", "east": "false", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -95621,9 +95669,9 @@ "age": "6", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95633,43 +95681,43 @@ "east": "false", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2627, "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2628, - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", + "age": "6", + "east": "false", + "north": "false", + "south": "false", "up": "true", "west": "false" } }, { - "id": 2629, + "id": 2628, "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", + "age": "6", + "east": "false", + "north": "false", + "south": "false", "up": "false", "west": "true" } }, + { + "id": 2629, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, { "id": 2630, "properties": { @@ -95677,8 +95725,8 @@ "east": "true", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -95687,9 +95735,9 @@ "age": "7", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -95698,9 +95746,9 @@ "age": "7", "east": "true", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -95709,9 +95757,9 @@ "age": "7", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95721,8 +95769,8 @@ "east": "true", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -95730,10 +95778,10 @@ "properties": { "age": "7", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -95741,10 +95789,10 @@ "properties": { "age": "7", "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -95752,10 +95800,10 @@ "properties": { "age": "7", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95765,8 +95813,8 @@ "east": "true", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -95775,9 +95823,9 @@ "age": "7", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -95786,9 +95834,9 @@ "age": "7", "east": "true", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -95797,9 +95845,9 @@ "age": "7", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95809,41 +95857,41 @@ "east": "true", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2643, "properties": { "age": "7", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { "id": 2644, "properties": { "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { "id": 2645, "properties": { "age": "7", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95853,8 +95901,8 @@ "east": "false", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -95863,9 +95911,9 @@ "age": "7", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -95874,9 +95922,9 @@ "age": "7", "east": "false", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -95885,9 +95933,9 @@ "age": "7", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95897,8 +95945,8 @@ "east": "false", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -95906,10 +95954,10 @@ "properties": { "age": "7", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -95917,10 +95965,10 @@ "properties": { "age": "7", "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -95928,10 +95976,10 @@ "properties": { "age": "7", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95941,8 +95989,8 @@ "east": "false", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -95951,9 +95999,9 @@ "age": "7", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -95962,9 +96010,9 @@ "age": "7", "east": "false", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -95973,9 +96021,9 @@ "age": "7", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -95985,43 +96033,43 @@ "east": "false", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2659, "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2660, - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", + "age": "7", + "east": "false", + "north": "false", + "south": "false", "up": "true", "west": "false" } }, { - "id": 2661, + "id": 2660, "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", + "age": "7", + "east": "false", + "north": "false", + "south": "false", "up": "false", "west": "true" } }, + { + "id": 2661, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, { "id": 2662, "properties": { @@ -96029,8 +96077,8 @@ "east": "true", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -96039,9 +96087,9 @@ "age": "8", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -96050,9 +96098,9 @@ "age": "8", "east": "true", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -96061,9 +96109,9 @@ "age": "8", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96073,8 +96121,8 @@ "east": "true", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -96082,10 +96130,10 @@ "properties": { "age": "8", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -96093,10 +96141,10 @@ "properties": { "age": "8", "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -96104,10 +96152,10 @@ "properties": { "age": "8", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96117,8 +96165,8 @@ "east": "true", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -96127,9 +96175,9 @@ "age": "8", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -96138,9 +96186,9 @@ "age": "8", "east": "true", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -96149,9 +96197,9 @@ "age": "8", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96161,41 +96209,41 @@ "east": "true", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2675, "properties": { "age": "8", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { "id": 2676, "properties": { "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { "id": 2677, "properties": { "age": "8", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96205,8 +96253,8 @@ "east": "false", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -96215,9 +96263,9 @@ "age": "8", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -96226,9 +96274,9 @@ "age": "8", "east": "false", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -96237,9 +96285,9 @@ "age": "8", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96249,8 +96297,8 @@ "east": "false", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -96258,10 +96306,10 @@ "properties": { "age": "8", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -96269,10 +96317,10 @@ "properties": { "age": "8", "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -96280,10 +96328,10 @@ "properties": { "age": "8", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96293,8 +96341,8 @@ "east": "false", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -96303,9 +96351,9 @@ "age": "8", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -96314,9 +96362,9 @@ "age": "8", "east": "false", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -96325,9 +96373,9 @@ "age": "8", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96337,43 +96385,43 @@ "east": "false", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2691, "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2692, - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", + "age": "8", + "east": "false", + "north": "false", + "south": "false", "up": "true", "west": "false" } }, { - "id": 2693, + "id": 2692, "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", + "age": "8", + "east": "false", + "north": "false", + "south": "false", "up": "false", "west": "true" } }, + { + "id": 2693, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, { "id": 2694, "properties": { @@ -96381,8 +96429,8 @@ "east": "true", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -96391,9 +96439,9 @@ "age": "9", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -96402,9 +96450,9 @@ "age": "9", "east": "true", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -96413,9 +96461,9 @@ "age": "9", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96425,8 +96473,8 @@ "east": "true", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -96434,10 +96482,10 @@ "properties": { "age": "9", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -96445,10 +96493,10 @@ "properties": { "age": "9", "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -96456,10 +96504,10 @@ "properties": { "age": "9", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96469,8 +96517,8 @@ "east": "true", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -96479,9 +96527,9 @@ "age": "9", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -96490,9 +96538,9 @@ "age": "9", "east": "true", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -96501,9 +96549,9 @@ "age": "9", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96513,41 +96561,41 @@ "east": "true", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2707, "properties": { "age": "9", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { "id": 2708, "properties": { "age": "9", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { "id": 2709, "properties": { "age": "9", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96557,8 +96605,8 @@ "east": "false", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -96567,9 +96615,9 @@ "age": "9", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -96578,9 +96626,9 @@ "age": "9", "east": "false", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -96589,9 +96637,9 @@ "age": "9", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96601,8 +96649,8 @@ "east": "false", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -96610,10 +96658,10 @@ "properties": { "age": "9", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -96621,10 +96669,10 @@ "properties": { "age": "9", "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -96632,10 +96680,10 @@ "properties": { "age": "9", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96645,8 +96693,8 @@ "east": "false", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -96655,9 +96703,9 @@ "age": "9", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -96666,9 +96714,9 @@ "age": "9", "east": "false", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -96677,9 +96725,9 @@ "age": "9", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96689,43 +96737,43 @@ "east": "false", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2723, "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2724, - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", + "age": "9", + "east": "false", + "north": "false", + "south": "false", "up": "true", "west": "false" } }, { - "id": 2725, + "id": 2724, "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", + "age": "9", + "east": "false", + "north": "false", + "south": "false", "up": "false", "west": "true" } }, + { + "id": 2725, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, { "id": 2726, "properties": { @@ -96733,8 +96781,8 @@ "east": "true", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -96743,9 +96791,9 @@ "age": "10", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -96754,9 +96802,9 @@ "age": "10", "east": "true", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -96765,9 +96813,9 @@ "age": "10", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96777,8 +96825,8 @@ "east": "true", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -96786,10 +96834,10 @@ "properties": { "age": "10", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -96797,10 +96845,10 @@ "properties": { "age": "10", "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -96808,10 +96856,10 @@ "properties": { "age": "10", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96821,8 +96869,8 @@ "east": "true", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -96831,9 +96879,9 @@ "age": "10", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -96842,9 +96890,9 @@ "age": "10", "east": "true", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -96853,9 +96901,9 @@ "age": "10", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96865,41 +96913,41 @@ "east": "true", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2739, "properties": { "age": "10", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { "id": 2740, "properties": { "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { "id": 2741, "properties": { "age": "10", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96909,8 +96957,8 @@ "east": "false", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -96919,9 +96967,9 @@ "age": "10", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -96930,9 +96978,9 @@ "age": "10", "east": "false", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -96941,9 +96989,9 @@ "age": "10", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96953,8 +97001,8 @@ "east": "false", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -96962,10 +97010,10 @@ "properties": { "age": "10", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -96973,10 +97021,10 @@ "properties": { "age": "10", "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -96984,10 +97032,10 @@ "properties": { "age": "10", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -96997,8 +97045,8 @@ "east": "false", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -97007,9 +97055,9 @@ "age": "10", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -97018,9 +97066,9 @@ "age": "10", "east": "false", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -97029,9 +97077,9 @@ "age": "10", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97041,43 +97089,43 @@ "east": "false", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2755, "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2756, - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", + "age": "10", + "east": "false", + "north": "false", + "south": "false", "up": "true", "west": "false" } }, { - "id": 2757, + "id": 2756, "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", + "age": "10", + "east": "false", + "north": "false", + "south": "false", "up": "false", "west": "true" } }, + { + "id": 2757, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, { "id": 2758, "properties": { @@ -97085,8 +97133,8 @@ "east": "true", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -97095,9 +97143,9 @@ "age": "11", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -97106,9 +97154,9 @@ "age": "11", "east": "true", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -97117,9 +97165,9 @@ "age": "11", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97129,8 +97177,8 @@ "east": "true", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -97138,10 +97186,10 @@ "properties": { "age": "11", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -97149,10 +97197,10 @@ "properties": { "age": "11", "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -97160,10 +97208,10 @@ "properties": { "age": "11", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97173,8 +97221,8 @@ "east": "true", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -97183,9 +97231,9 @@ "age": "11", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -97194,9 +97242,9 @@ "age": "11", "east": "true", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -97205,9 +97253,9 @@ "age": "11", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97217,41 +97265,41 @@ "east": "true", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2771, "properties": { "age": "11", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { "id": 2772, "properties": { "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { "id": 2773, "properties": { "age": "11", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97261,8 +97309,8 @@ "east": "false", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -97271,9 +97319,9 @@ "age": "11", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -97282,9 +97330,9 @@ "age": "11", "east": "false", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -97293,9 +97341,9 @@ "age": "11", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97305,8 +97353,8 @@ "east": "false", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -97314,10 +97362,10 @@ "properties": { "age": "11", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -97325,10 +97373,10 @@ "properties": { "age": "11", "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -97336,10 +97384,10 @@ "properties": { "age": "11", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97349,8 +97397,8 @@ "east": "false", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -97359,9 +97407,9 @@ "age": "11", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -97370,9 +97418,9 @@ "age": "11", "east": "false", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -97381,9 +97429,9 @@ "age": "11", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97393,43 +97441,43 @@ "east": "false", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2787, "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2788, - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", + "age": "11", + "east": "false", + "north": "false", + "south": "false", "up": "true", "west": "false" } }, { - "id": 2789, + "id": 2788, "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", + "age": "11", + "east": "false", + "north": "false", + "south": "false", "up": "false", "west": "true" } }, + { + "id": 2789, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, { "id": 2790, "properties": { @@ -97437,8 +97485,8 @@ "east": "true", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -97447,9 +97495,9 @@ "age": "12", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -97458,9 +97506,9 @@ "age": "12", "east": "true", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -97469,9 +97517,9 @@ "age": "12", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97481,8 +97529,8 @@ "east": "true", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -97490,10 +97538,10 @@ "properties": { "age": "12", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -97501,10 +97549,10 @@ "properties": { "age": "12", "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -97512,10 +97560,10 @@ "properties": { "age": "12", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97525,8 +97573,8 @@ "east": "true", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -97535,9 +97583,9 @@ "age": "12", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -97546,9 +97594,9 @@ "age": "12", "east": "true", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -97557,9 +97605,9 @@ "age": "12", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97569,41 +97617,41 @@ "east": "true", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2803, "properties": { "age": "12", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { "id": 2804, "properties": { "age": "12", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { "id": 2805, "properties": { "age": "12", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97613,8 +97661,8 @@ "east": "false", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -97623,9 +97671,9 @@ "age": "12", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -97634,9 +97682,9 @@ "age": "12", "east": "false", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -97645,9 +97693,9 @@ "age": "12", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97657,8 +97705,8 @@ "east": "false", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -97666,10 +97714,10 @@ "properties": { "age": "12", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -97677,10 +97725,10 @@ "properties": { "age": "12", "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -97688,10 +97736,10 @@ "properties": { "age": "12", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97701,8 +97749,8 @@ "east": "false", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -97711,9 +97759,9 @@ "age": "12", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -97722,9 +97770,9 @@ "age": "12", "east": "false", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -97733,9 +97781,9 @@ "age": "12", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97745,43 +97793,43 @@ "east": "false", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2819, "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2820, - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", + "age": "12", + "east": "false", + "north": "false", + "south": "false", "up": "true", "west": "false" } }, { - "id": 2821, + "id": 2820, "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", + "age": "12", + "east": "false", + "north": "false", + "south": "false", "up": "false", "west": "true" } }, + { + "id": 2821, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, { "id": 2822, "properties": { @@ -97789,8 +97837,8 @@ "east": "true", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -97799,9 +97847,9 @@ "age": "13", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -97810,9 +97858,9 @@ "age": "13", "east": "true", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -97821,9 +97869,9 @@ "age": "13", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97833,8 +97881,8 @@ "east": "true", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -97842,10 +97890,10 @@ "properties": { "age": "13", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -97853,10 +97901,10 @@ "properties": { "age": "13", "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -97864,10 +97912,10 @@ "properties": { "age": "13", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97877,8 +97925,8 @@ "east": "true", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -97887,9 +97935,9 @@ "age": "13", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -97898,9 +97946,9 @@ "age": "13", "east": "true", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -97909,9 +97957,9 @@ "age": "13", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97921,41 +97969,41 @@ "east": "true", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2835, "properties": { "age": "13", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { "id": 2836, "properties": { "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { "id": 2837, "properties": { "age": "13", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -97965,8 +98013,8 @@ "east": "false", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -97975,9 +98023,9 @@ "age": "13", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -97986,9 +98034,9 @@ "age": "13", "east": "false", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -97997,9 +98045,9 @@ "age": "13", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -98009,8 +98057,8 @@ "east": "false", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -98018,10 +98066,10 @@ "properties": { "age": "13", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -98029,10 +98077,10 @@ "properties": { "age": "13", "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -98040,10 +98088,10 @@ "properties": { "age": "13", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -98053,8 +98101,8 @@ "east": "false", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -98063,9 +98111,9 @@ "age": "13", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -98074,9 +98122,9 @@ "age": "13", "east": "false", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -98085,9 +98133,9 @@ "age": "13", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -98097,43 +98145,43 @@ "east": "false", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2851, "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2852, - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", + "age": "13", + "east": "false", + "north": "false", + "south": "false", "up": "true", "west": "false" } }, { - "id": 2853, + "id": 2852, "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", + "age": "13", + "east": "false", + "north": "false", + "south": "false", "up": "false", "west": "true" } }, + { + "id": 2853, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, { "id": 2854, "properties": { @@ -98141,8 +98189,8 @@ "east": "true", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -98151,9 +98199,9 @@ "age": "14", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -98162,9 +98210,9 @@ "age": "14", "east": "true", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -98173,9 +98221,9 @@ "age": "14", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -98185,8 +98233,8 @@ "east": "true", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -98194,10 +98242,10 @@ "properties": { "age": "14", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -98205,10 +98253,10 @@ "properties": { "age": "14", "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -98216,10 +98264,10 @@ "properties": { "age": "14", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -98229,8 +98277,8 @@ "east": "true", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -98239,9 +98287,9 @@ "age": "14", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -98250,9 +98298,9 @@ "age": "14", "east": "true", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -98261,9 +98309,9 @@ "age": "14", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -98273,41 +98321,41 @@ "east": "true", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2867, "properties": { "age": "14", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { "id": 2868, "properties": { "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { "id": 2869, "properties": { "age": "14", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -98317,8 +98365,8 @@ "east": "false", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -98327,9 +98375,9 @@ "age": "14", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -98338,9 +98386,9 @@ "age": "14", "east": "false", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -98349,9 +98397,9 @@ "age": "14", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -98361,8 +98409,8 @@ "east": "false", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -98370,10 +98418,10 @@ "properties": { "age": "14", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -98381,10 +98429,10 @@ "properties": { "age": "14", "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -98392,10 +98440,10 @@ "properties": { "age": "14", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -98405,8 +98453,8 @@ "east": "false", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -98415,9 +98463,9 @@ "age": "14", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -98426,9 +98474,9 @@ "age": "14", "east": "false", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -98437,9 +98485,9 @@ "age": "14", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -98449,43 +98497,43 @@ "east": "false", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2883, "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2884, - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", + "age": "14", + "east": "false", + "north": "false", + "south": "false", "up": "true", "west": "false" } }, { - "id": 2885, + "id": 2884, "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", + "age": "14", + "east": "false", + "north": "false", + "south": "false", "up": "false", "west": "true" } }, + { + "id": 2885, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, { "id": 2886, "properties": { @@ -98493,8 +98541,8 @@ "east": "true", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -98503,9 +98551,9 @@ "age": "15", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -98514,9 +98562,9 @@ "age": "15", "east": "true", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -98525,9 +98573,9 @@ "age": "15", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -98537,8 +98585,8 @@ "east": "true", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -98546,10 +98594,10 @@ "properties": { "age": "15", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -98557,10 +98605,10 @@ "properties": { "age": "15", "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -98568,10 +98616,10 @@ "properties": { "age": "15", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -98581,8 +98629,8 @@ "east": "true", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -98591,9 +98639,9 @@ "age": "15", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -98602,9 +98650,9 @@ "age": "15", "east": "true", "north": "false", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -98613,9 +98661,9 @@ "age": "15", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -98625,41 +98673,41 @@ "east": "true", "north": "false", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2899, "properties": { "age": "15", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { "id": 2900, "properties": { "age": "15", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { "id": 2901, "properties": { "age": "15", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -98669,8 +98717,8 @@ "east": "false", "north": "true", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -98679,9 +98727,9 @@ "age": "15", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -98690,9 +98738,9 @@ "age": "15", "east": "false", "north": "true", - "south": "false", - "up": "true", - "west": "false" + "south": "true", + "up": "false", + "west": "true" } }, { @@ -98701,9 +98749,9 @@ "age": "15", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -98713,8 +98761,8 @@ "east": "false", "north": "true", "south": "false", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { @@ -98722,10 +98770,10 @@ "properties": { "age": "15", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -98733,10 +98781,10 @@ "properties": { "age": "15", "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { @@ -98744,10 +98792,10 @@ "properties": { "age": "15", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -98757,12 +98805,45 @@ "east": "false", "north": "false", "south": "true", - "up": "false", - "west": "false" + "up": "true", + "west": "true" } }, { "id": 2911, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2912, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2913, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2914, "properties": { "age": "15", "east": "false", @@ -98773,7 +98854,7 @@ } }, { - "id": 2912, + "id": 2915, "properties": { "age": "15", "east": "false", @@ -98784,7 +98865,7 @@ } }, { - "id": 2913, + "id": 2916, "properties": { "age": "15", "east": "false", @@ -98795,7 +98876,7 @@ } }, { - "id": 2914, + "id": 2917, "properties": { "age": "15", "east": "false", @@ -98822,13 +98903,13 @@ "states": [ { "default": true, - "id": 13842, + "id": 13852, "properties": { "waterlogged": "true" } }, { - "id": 13843, + "id": 13853, "properties": { "waterlogged": "false" } @@ -98844,7 +98925,7 @@ "states": [ { "default": true, - "id": 13824 + "id": 13834 } ] }, @@ -98863,13 +98944,13 @@ "states": [ { "default": true, - "id": 13862, + "id": 13872, "properties": { "waterlogged": "true" } }, { - "id": 13863, + "id": 13873, "properties": { "waterlogged": "false" } @@ -98897,56 +98978,56 @@ "states": [ { "default": true, - "id": 13930, + "id": 13940, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 13931, + "id": 13941, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 13932, + "id": 13942, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 13933, + "id": 13943, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 13934, + "id": 13944, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 13935, + "id": 13945, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 13936, + "id": 13946, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 13937, + "id": 13947, "properties": { "facing": "east", "waterlogged": "false" @@ -98954,6 +99035,18 @@ } ] }, + "minecraft:firefly_bush": { + "definition": { + "type": "minecraft:firefly_bush", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27913 + } + ] + }, "minecraft:fletching_table": { "definition": { "type": "minecraft:fletching_table", @@ -98962,7 +99055,7 @@ "states": [ { "default": true, - "id": 19450 + "id": 19460 } ] }, @@ -98975,7 +99068,7 @@ "states": [ { "default": true, - "id": 9341 + "id": 9351 } ] }, @@ -98987,13 +99080,18 @@ "states": [ { "default": true, - "id": 25838 + "id": 25853 } ] }, "minecraft:flowering_azalea_leaves": { "definition": { - "type": "minecraft:leaves", + "type": "minecraft:untinted_particle_leaves", + "leaf_particle": { + "type": "minecraft:tinted_leaves", + "color": -9399763 + }, + "leaf_particle_chance": 0.01, "properties": {} }, "properties": { @@ -99251,7 +99349,7 @@ "states": [ { "default": true, - "id": 27585 + "id": 27632 } ] }, @@ -99271,25 +99369,25 @@ "states": [ { "default": true, - "id": 13552, + "id": 13562, "properties": { "age": "0" } }, { - "id": 13553, + "id": 13563, "properties": { "age": "1" } }, { - "id": 13554, + "id": 13564, "properties": { "age": "2" } }, { - "id": 13555, + "id": 13565, "properties": { "age": "3" } @@ -99315,7 +99413,7 @@ }, "states": [ { - "id": 4349, + "id": 4358, "properties": { "facing": "north", "lit": "true" @@ -99323,49 +99421,49 @@ }, { "default": true, - "id": 4350, + "id": 4359, "properties": { "facing": "north", "lit": "false" } }, { - "id": 4351, + "id": 4360, "properties": { "facing": "south", "lit": "true" } }, { - "id": 4352, + "id": 4361, "properties": { "facing": "south", "lit": "false" } }, { - "id": 4353, + "id": 4362, "properties": { "facing": "west", "lit": "true" } }, { - "id": 4354, + "id": 4363, "properties": { "facing": "west", "lit": "false" } }, { - "id": 4355, + "id": 4364, "properties": { "facing": "east", "lit": "true" } }, { - "id": 4356, + "id": 4365, "properties": { "facing": "east", "lit": "false" @@ -99381,7 +99479,7 @@ "states": [ { "default": true, - "id": 21298 + "id": 21313 } ] }, @@ -99425,113 +99523,13 @@ ] }, "states": [ - { - "id": 7012, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7013, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7014, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7015, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7016, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7017, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7018, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7019, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7020, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7021, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 7022, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -99539,9 +99537,9 @@ "id": 7023, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -99549,9 +99547,9 @@ "id": 7024, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -99559,14 +99557,114 @@ "id": 7025, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 7026, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7027, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7028, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7029, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7030, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7031, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7032, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7033, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7034, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7035, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7036, "properties": { "east": "true", "north": "false", @@ -99576,7 +99674,7 @@ } }, { - "id": 7027, + "id": 7037, "properties": { "east": "true", "north": "false", @@ -99585,118 +99683,118 @@ "west": "false" } }, - { - "id": 7028, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7029, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7030, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7031, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7032, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7033, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7034, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7035, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7036, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7037, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 7038, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 7039, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7040, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7041, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7042, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7043, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7044, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7045, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7046, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7047, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7048, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7049, "properties": { "east": "false", "north": "false", @@ -99706,7 +99804,7 @@ } }, { - "id": 7040, + "id": 7050, "properties": { "east": "false", "north": "false", @@ -99716,7 +99814,7 @@ } }, { - "id": 7041, + "id": 7051, "properties": { "east": "false", "north": "false", @@ -99726,7 +99824,7 @@ } }, { - "id": 7042, + "id": 7052, "properties": { "east": "false", "north": "false", @@ -99737,7 +99835,7 @@ }, { "default": true, - "id": 7043, + "id": 7053, "properties": { "east": "false", "north": "false", @@ -99784,135 +99882,15 @@ ] }, "states": [ - { - "id": 7102, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7103, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7104, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7105, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7106, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7107, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7108, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7109, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7110, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7111, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 7112, "properties": { "down": "true", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -99922,9 +99900,9 @@ "down": "true", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -99934,9 +99912,9 @@ "down": "true", "east": "true", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -99946,9 +99924,9 @@ "down": "true", "east": "true", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "false" } }, @@ -99958,9 +99936,9 @@ "down": "true", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -99970,9 +99948,9 @@ "down": "true", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -99981,10 +99959,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "true" } }, @@ -99993,10 +99971,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "false" } }, @@ -100005,10 +99983,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -100017,10 +99995,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -100029,10 +100007,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -100041,10 +100019,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", "west": "false" } }, @@ -100053,10 +100031,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -100065,10 +100043,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -100077,10 +100055,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "true" } }, @@ -100089,10 +100067,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "false" } }, @@ -100102,9 +100080,9 @@ "down": "true", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -100114,9 +100092,9 @@ "down": "true", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -100126,9 +100104,9 @@ "down": "true", "east": "true", "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -100138,9 +100116,9 @@ "down": "true", "east": "true", "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "false" } }, @@ -100150,9 +100128,9 @@ "down": "true", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -100162,9 +100140,9 @@ "down": "true", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -100172,11 +100150,11 @@ "id": 7134, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "true" } }, @@ -100184,11 +100162,11 @@ "id": 7135, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "false" } }, @@ -100196,11 +100174,11 @@ "id": 7136, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -100208,11 +100186,11 @@ "id": 7137, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -100220,11 +100198,11 @@ "id": 7138, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -100232,11 +100210,11 @@ "id": 7139, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", "west": "false" } }, @@ -100244,11 +100222,11 @@ "id": 7140, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -100256,11 +100234,11 @@ "id": 7141, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -100268,11 +100246,11 @@ "id": 7142, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "true" } }, @@ -100280,11 +100258,11 @@ "id": 7143, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "false" } }, @@ -100294,9 +100272,9 @@ "down": "true", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -100306,9 +100284,9 @@ "down": "true", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -100318,9 +100296,9 @@ "down": "true", "east": "false", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -100330,9 +100308,9 @@ "down": "true", "east": "false", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "false" } }, @@ -100342,9 +100320,9 @@ "down": "true", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -100354,9 +100332,9 @@ "down": "true", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -100365,10 +100343,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "true" } }, @@ -100377,10 +100355,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "false" } }, @@ -100389,10 +100367,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -100401,10 +100379,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -100413,10 +100391,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -100425,10 +100403,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", "west": "false" } }, @@ -100437,10 +100415,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -100449,10 +100427,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -100461,10 +100439,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "false", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "true" } }, @@ -100473,10 +100451,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "false", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "false" } }, @@ -100486,9 +100464,9 @@ "down": "true", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -100498,9 +100476,9 @@ "down": "true", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -100510,9 +100488,9 @@ "down": "true", "east": "false", "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -100522,14 +100500,134 @@ "down": "true", "east": "false", "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "false" } }, { "id": 7164, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7165, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7166, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7167, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7168, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7169, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7170, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7171, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7172, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7173, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7174, "properties": { "down": "true", "east": "false", @@ -100541,7 +100639,7 @@ } }, { - "id": 7165, + "id": 7175, "properties": { "down": "true", "east": "false", @@ -100552,135 +100650,15 @@ "west": "false" } }, - { - "id": 7166, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7167, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7168, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7169, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7170, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7171, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7172, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7173, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7174, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7175, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 7176, "properties": { "down": "false", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -100690,9 +100668,9 @@ "down": "false", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -100702,9 +100680,9 @@ "down": "false", "east": "true", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -100714,9 +100692,9 @@ "down": "false", "east": "true", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "false" } }, @@ -100726,9 +100704,9 @@ "down": "false", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -100738,9 +100716,9 @@ "down": "false", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -100749,10 +100727,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "true" } }, @@ -100761,10 +100739,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "false" } }, @@ -100773,10 +100751,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -100785,10 +100763,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -100797,10 +100775,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -100809,10 +100787,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", "west": "false" } }, @@ -100821,10 +100799,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -100833,10 +100811,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -100845,10 +100823,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "false", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "true" } }, @@ -100857,10 +100835,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "false", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "false" } }, @@ -100870,9 +100848,9 @@ "down": "false", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -100882,9 +100860,9 @@ "down": "false", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -100894,9 +100872,9 @@ "down": "false", "east": "true", "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -100906,14 +100884,134 @@ "down": "false", "east": "true", "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "false" } }, { "id": 7196, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7197, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7198, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7199, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7200, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7201, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7202, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7203, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7204, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7205, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7206, "properties": { "down": "false", "east": "true", @@ -100925,7 +101023,7 @@ } }, { - "id": 7197, + "id": 7207, "properties": { "down": "false", "east": "true", @@ -100936,135 +101034,15 @@ "west": "false" } }, - { - "id": 7198, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7199, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7200, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7201, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7202, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7203, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7204, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7205, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7206, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7207, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 7208, "properties": { "down": "false", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -101074,9 +101052,9 @@ "down": "false", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -101086,9 +101064,9 @@ "down": "false", "east": "false", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -101098,14 +101076,134 @@ "down": "false", "east": "false", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "false" } }, { "id": 7212, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7213, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7214, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7215, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7216, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7217, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7218, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7219, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7220, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7221, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7222, "properties": { "down": "false", "east": "false", @@ -101117,7 +101215,7 @@ } }, { - "id": 7213, + "id": 7223, "properties": { "down": "false", "east": "false", @@ -101128,140 +101226,140 @@ "west": "false" } }, - { - "id": 7214, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7215, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7216, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7217, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7218, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7219, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7220, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7221, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7222, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7223, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 7224, "properties": { "down": "false", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 7225, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7226, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7227, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7228, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7229, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7230, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7231, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7232, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7233, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7234, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7235, "properties": { "down": "false", "east": "false", @@ -101273,7 +101371,7 @@ } }, { - "id": 7226, + "id": 7236, "properties": { "down": "false", "east": "false", @@ -101285,7 +101383,7 @@ } }, { - "id": 7227, + "id": 7237, "properties": { "down": "false", "east": "false", @@ -101297,7 +101395,7 @@ } }, { - "id": 7228, + "id": 7238, "properties": { "down": "false", "east": "false", @@ -101310,7 +101408,7 @@ }, { "default": true, - "id": 7229, + "id": 7239, "properties": { "down": "false", "east": "false", @@ -101331,7 +101429,7 @@ "states": [ { "default": true, - "id": 6032 + "id": 6042 } ] }, @@ -101343,7 +101441,7 @@ "states": [ { "default": true, - "id": 2134 + "id": 2137 } ] }, @@ -101390,21 +101488,21 @@ }, "states": [ { - "id": 15143, + "id": 15153, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 15144, + "id": 15154, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 15145, + "id": 15155, "properties": { "type": "bottom", "waterlogged": "true" @@ -101412,21 +101510,21 @@ }, { "default": true, - "id": 15146, + "id": 15156, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 15147, + "id": 15157, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 15148, + "id": 15158, "properties": { "type": "double", "waterlogged": "false" @@ -101466,98 +101564,98 @@ ] }, "states": [ - { - "id": 14695, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 14696, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14697, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14698, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14699, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14700, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14701, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14702, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14703, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14704, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 14705, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14706, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14707, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14708, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14709, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14710, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14711, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14712, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14713, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14714, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14715, "properties": { "facing": "north", "half": "bottom", @@ -101567,100 +101665,10 @@ }, { "default": true, - "id": 14706, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14707, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14708, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14709, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14710, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14711, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14712, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14713, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14714, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 14715, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 14716, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -101668,8 +101676,8 @@ { "id": 14717, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -101677,8 +101685,8 @@ { "id": 14718, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -101686,8 +101694,8 @@ { "id": 14719, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -101695,8 +101703,8 @@ { "id": 14720, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -101704,8 +101712,8 @@ { "id": 14721, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -101713,8 +101721,8 @@ { "id": 14722, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -101722,8 +101730,8 @@ { "id": 14723, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -101731,8 +101739,8 @@ { "id": 14724, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -101741,7 +101749,7 @@ "id": 14725, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -101750,7 +101758,7 @@ "id": 14726, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -101759,7 +101767,7 @@ "id": 14727, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -101768,7 +101776,7 @@ "id": 14728, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -101777,7 +101785,7 @@ "id": 14729, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -101786,7 +101794,7 @@ "id": 14730, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -101795,7 +101803,7 @@ "id": 14731, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -101804,7 +101812,7 @@ "id": 14732, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -101813,7 +101821,7 @@ "id": 14733, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -101822,7 +101830,7 @@ "id": 14734, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -101830,8 +101838,8 @@ { "id": 14735, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -101839,8 +101847,8 @@ { "id": 14736, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -101848,8 +101856,8 @@ { "id": 14737, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -101857,8 +101865,8 @@ { "id": 14738, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -101866,8 +101874,8 @@ { "id": 14739, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -101875,8 +101883,8 @@ { "id": 14740, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -101884,8 +101892,8 @@ { "id": 14741, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -101893,8 +101901,8 @@ { "id": 14742, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -101902,8 +101910,8 @@ { "id": 14743, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -101911,8 +101919,8 @@ { "id": 14744, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -101921,7 +101929,7 @@ "id": 14745, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -101930,7 +101938,7 @@ "id": 14746, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -101939,7 +101947,7 @@ "id": 14747, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -101948,7 +101956,7 @@ "id": 14748, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -101957,7 +101965,7 @@ "id": 14749, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -101966,7 +101974,7 @@ "id": 14750, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -101975,7 +101983,7 @@ "id": 14751, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -101984,7 +101992,7 @@ "id": 14752, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -101993,7 +102001,7 @@ "id": 14753, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -102002,7 +102010,7 @@ "id": 14754, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -102010,8 +102018,8 @@ { "id": 14755, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -102019,8 +102027,8 @@ { "id": 14756, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -102028,8 +102036,8 @@ { "id": 14757, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -102037,8 +102045,8 @@ { "id": 14758, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -102046,8 +102054,8 @@ { "id": 14759, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -102055,8 +102063,8 @@ { "id": 14760, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -102064,8 +102072,8 @@ { "id": 14761, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -102073,8 +102081,8 @@ { "id": 14762, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -102082,8 +102090,8 @@ { "id": 14763, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -102091,8 +102099,8 @@ { "id": 14764, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -102101,7 +102109,7 @@ "id": 14765, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -102110,7 +102118,7 @@ "id": 14766, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -102119,7 +102127,7 @@ "id": 14767, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -102128,7 +102136,7 @@ "id": 14768, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -102137,7 +102145,7 @@ "id": 14769, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -102146,7 +102154,7 @@ "id": 14770, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -102155,7 +102163,7 @@ "id": 14771, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -102164,7 +102172,7 @@ "id": 14772, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -102173,13 +102181,103 @@ "id": 14773, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 14774, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14775, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14776, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14777, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14778, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14779, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14780, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14781, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14782, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14783, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14784, "properties": { "facing": "east", "half": "bottom", @@ -102226,7 +102324,7 @@ }, "states": [ { - "id": 16469, + "id": 16479, "properties": { "east": "none", "north": "none", @@ -102237,7 +102335,7 @@ } }, { - "id": 16470, + "id": 16480, "properties": { "east": "none", "north": "none", @@ -102248,7 +102346,7 @@ } }, { - "id": 16471, + "id": 16481, "properties": { "east": "none", "north": "none", @@ -102260,124 +102358,14 @@ }, { "default": true, - "id": 16472, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16473, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16474, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16475, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16476, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16477, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16478, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16479, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16480, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16481, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { "id": 16482, "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -102385,10 +102373,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -102396,10 +102384,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -102407,10 +102395,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -102418,10 +102406,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -102429,10 +102417,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -102440,10 +102428,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -102451,10 +102439,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -102462,10 +102450,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -102474,9 +102462,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -102485,9 +102473,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -102495,10 +102483,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -102506,10 +102494,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -102517,10 +102505,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -102528,10 +102516,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -102539,10 +102527,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -102550,10 +102538,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -102561,10 +102549,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -102572,10 +102560,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -102583,10 +102571,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -102594,10 +102582,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -102606,9 +102594,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -102617,130 +102605,130 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 16505, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 16506, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 16507, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 16508, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16509, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 16510, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16511, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16512, - "properties": { - "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 16513, + "id": 16511, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 16514, + "id": 16512, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 16513, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16514, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 16515, "properties": { "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -102749,9 +102737,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -102759,10 +102747,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -102770,10 +102758,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -102781,10 +102769,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -102792,10 +102780,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -102803,10 +102791,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -102814,10 +102802,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -102825,10 +102813,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -102836,10 +102824,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -102847,10 +102835,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -102858,10 +102846,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -102870,9 +102858,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -102881,9 +102869,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -102891,10 +102879,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -102902,10 +102890,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -102913,10 +102901,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -102924,10 +102912,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -102935,10 +102923,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -102946,10 +102934,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -102957,10 +102945,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -102968,10 +102956,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -102979,10 +102967,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -102990,10 +102978,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -103002,9 +102990,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -103013,130 +103001,130 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 16541, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 16542, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 16543, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 16544, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16545, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 16546, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16547, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16548, - "properties": { - "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 16549, + "id": 16547, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 16550, + "id": 16548, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 16549, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16550, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 16551, "properties": { "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -103145,9 +103133,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -103155,10 +103143,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -103166,10 +103154,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -103177,10 +103165,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -103188,10 +103176,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -103199,10 +103187,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -103210,10 +103198,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -103221,10 +103209,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -103232,10 +103220,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -103243,10 +103231,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -103254,10 +103242,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -103266,9 +103254,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -103277,9 +103265,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -103287,10 +103275,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -103298,10 +103286,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -103309,10 +103297,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -103320,10 +103308,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -103331,10 +103319,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -103342,10 +103330,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -103353,10 +103341,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -103364,10 +103352,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -103375,10 +103363,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -103386,14 +103374,124 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16575, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16576, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16577, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16578, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16579, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16580, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16581, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16582, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16583, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16584, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16585, "properties": { "east": "none", "north": "tall", @@ -103404,7 +103502,7 @@ } }, { - "id": 16576, + "id": 16586, "properties": { "east": "none", "north": "tall", @@ -103414,125 +103512,15 @@ "west": "tall" } }, - { - "id": 16577, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16578, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16579, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16580, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16581, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16582, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16583, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16584, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16585, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16586, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 16587, "properties": { "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -103541,9 +103529,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -103551,10 +103539,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -103562,10 +103550,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -103573,10 +103561,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -103584,10 +103572,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -103595,10 +103583,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -103606,10 +103594,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -103617,10 +103605,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -103628,10 +103616,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -103639,10 +103627,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -103650,10 +103638,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -103662,9 +103650,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -103673,9 +103661,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -103683,10 +103671,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -103694,10 +103682,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -103705,10 +103693,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -103716,10 +103704,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -103727,10 +103715,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -103738,10 +103726,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -103749,10 +103737,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -103760,10 +103748,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -103771,10 +103759,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -103782,10 +103770,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -103794,9 +103782,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -103805,130 +103793,130 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 16613, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 16614, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 16615, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 16616, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16617, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 16618, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16619, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16620, - "properties": { - "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 16621, + "id": 16619, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 16622, + "id": 16620, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 16621, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16622, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 16623, "properties": { "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -103937,9 +103925,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -103947,10 +103935,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -103958,10 +103946,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -103969,10 +103957,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -103980,10 +103968,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -103991,10 +103979,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -104002,10 +103990,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -104013,10 +104001,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -104024,10 +104012,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -104035,10 +104023,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -104046,10 +104034,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -104058,9 +104046,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -104069,9 +104057,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -104079,10 +104067,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -104090,10 +104078,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -104101,10 +104089,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -104112,10 +104100,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -104123,10 +104111,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -104134,10 +104122,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -104145,10 +104133,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -104156,10 +104144,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -104167,10 +104155,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -104178,10 +104166,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -104190,9 +104178,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -104201,130 +104189,130 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 16649, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 16650, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 16651, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 16652, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16653, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 16654, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16655, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16656, - "properties": { - "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 16657, + "id": 16655, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 16658, + "id": 16656, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 16657, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16658, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 16659, "properties": { "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -104333,9 +104321,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -104343,10 +104331,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -104354,10 +104342,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -104365,10 +104353,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -104376,10 +104364,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -104387,10 +104375,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -104398,10 +104386,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -104409,10 +104397,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -104420,10 +104408,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -104431,10 +104419,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -104442,10 +104430,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -104454,9 +104442,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -104465,9 +104453,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -104475,10 +104463,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -104486,10 +104474,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -104497,10 +104485,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -104508,10 +104496,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -104519,10 +104507,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -104530,10 +104518,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -104541,10 +104529,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -104552,10 +104540,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -104563,10 +104551,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -104574,14 +104562,124 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16683, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16684, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16685, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16686, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16687, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16688, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16689, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16690, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16691, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16692, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16693, "properties": { "east": "low", "north": "tall", @@ -104592,7 +104690,7 @@ } }, { - "id": 16684, + "id": 16694, "properties": { "east": "low", "north": "tall", @@ -104602,125 +104700,15 @@ "west": "tall" } }, - { - "id": 16685, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16686, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16687, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16688, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16689, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16690, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16691, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16692, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16693, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16694, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 16695, "properties": { "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -104729,9 +104717,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -104739,10 +104727,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -104750,10 +104738,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -104761,10 +104749,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -104772,10 +104760,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -104783,10 +104771,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -104794,10 +104782,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -104805,10 +104793,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -104816,10 +104804,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -104827,10 +104815,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -104838,10 +104826,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -104850,9 +104838,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -104861,9 +104849,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -104871,10 +104859,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -104882,10 +104870,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -104893,10 +104881,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -104904,10 +104892,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -104915,10 +104903,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -104926,10 +104914,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -104937,10 +104925,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -104948,10 +104936,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -104959,10 +104947,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -104970,14 +104958,124 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16719, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16720, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16721, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16722, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16723, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16724, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16725, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16726, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16727, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16728, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16729, "properties": { "east": "tall", "north": "none", @@ -104988,7 +105086,7 @@ } }, { - "id": 16720, + "id": 16730, "properties": { "east": "tall", "north": "none", @@ -104998,125 +105096,15 @@ "west": "tall" } }, - { - "id": 16721, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16722, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16723, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16724, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16725, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16726, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16727, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16728, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16729, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16730, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 16731, "properties": { "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -105125,9 +105113,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -105135,10 +105123,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -105146,10 +105134,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -105157,10 +105145,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -105168,10 +105156,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -105179,10 +105167,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -105190,10 +105178,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -105201,10 +105189,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -105212,10 +105200,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -105223,10 +105211,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -105234,10 +105222,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -105246,9 +105234,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -105257,9 +105245,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -105267,10 +105255,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -105278,10 +105266,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -105289,10 +105277,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -105300,10 +105288,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -105311,10 +105299,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -105322,10 +105310,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -105333,10 +105321,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -105344,10 +105332,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -105355,10 +105343,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -105366,14 +105354,124 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16755, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16756, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16757, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16758, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16759, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16760, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16761, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16762, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16763, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16764, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16765, "properties": { "east": "tall", "north": "low", @@ -105384,7 +105482,7 @@ } }, { - "id": 16756, + "id": 16766, "properties": { "east": "tall", "north": "low", @@ -105394,125 +105492,15 @@ "west": "tall" } }, - { - "id": 16757, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16758, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16759, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16760, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16761, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16762, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16763, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16764, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16765, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16766, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 16767, "properties": { "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -105521,9 +105509,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -105531,10 +105519,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -105542,10 +105530,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -105553,10 +105541,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -105564,10 +105552,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -105575,10 +105563,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -105586,10 +105574,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -105597,10 +105585,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -105608,10 +105596,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -105619,10 +105607,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -105630,14 +105618,124 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16779, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16780, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16781, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16782, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16783, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16784, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16785, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16786, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16787, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16788, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16789, "properties": { "east": "tall", "north": "tall", @@ -105648,7 +105746,7 @@ } }, { - "id": 16780, + "id": 16790, "properties": { "east": "tall", "north": "tall", @@ -105658,118 +105756,118 @@ "west": "tall" } }, - { - "id": 16781, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16782, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16783, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16784, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16785, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16786, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16787, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16788, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16789, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16790, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 16791, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16792, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16793, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16794, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16795, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16796, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16797, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16798, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16799, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16800, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16801, "properties": { "east": "tall", "north": "tall", @@ -105780,7 +105878,7 @@ } }, { - "id": 16792, + "id": 16802, "properties": { "east": "tall", "north": "tall", @@ -105861,97 +105959,97 @@ "states": [ { "default": true, - "id": 11750, + "id": 11760, "properties": { "rotation": "0" } }, { - "id": 11751, + "id": 11761, "properties": { "rotation": "1" } }, { - "id": 11752, + "id": 11762, "properties": { "rotation": "2" } }, { - "id": 11753, + "id": 11763, "properties": { "rotation": "3" } }, { - "id": 11754, + "id": 11764, "properties": { "rotation": "4" } }, { - "id": 11755, + "id": 11765, "properties": { "rotation": "5" } }, { - "id": 11756, + "id": 11766, "properties": { "rotation": "6" } }, { - "id": 11757, + "id": 11767, "properties": { "rotation": "7" } }, { - "id": 11758, + "id": 11768, "properties": { "rotation": "8" } }, { - "id": 11759, + "id": 11769, "properties": { "rotation": "9" } }, { - "id": 11760, + "id": 11770, "properties": { "rotation": "10" } }, { - "id": 11761, + "id": 11771, "properties": { "rotation": "11" } }, { - "id": 11762, + "id": 11772, "properties": { "rotation": "12" } }, { - "id": 11763, + "id": 11773, "properties": { "rotation": "13" } }, { - "id": 11764, + "id": 11774, "properties": { "rotation": "14" } }, { - "id": 11765, + "id": 11775, "properties": { "rotation": "15" } @@ -106135,7 +106233,7 @@ }, "states": [ { - "id": 21866, + "id": 21881, "properties": { "candles": "1", "lit": "true", @@ -106143,7 +106241,7 @@ } }, { - "id": 21867, + "id": 21882, "properties": { "candles": "1", "lit": "true", @@ -106151,7 +106249,7 @@ } }, { - "id": 21868, + "id": 21883, "properties": { "candles": "1", "lit": "false", @@ -106160,7 +106258,7 @@ }, { "default": true, - "id": 21869, + "id": 21884, "properties": { "candles": "1", "lit": "false", @@ -106168,7 +106266,7 @@ } }, { - "id": 21870, + "id": 21885, "properties": { "candles": "2", "lit": "true", @@ -106176,7 +106274,7 @@ } }, { - "id": 21871, + "id": 21886, "properties": { "candles": "2", "lit": "true", @@ -106184,7 +106282,7 @@ } }, { - "id": 21872, + "id": 21887, "properties": { "candles": "2", "lit": "false", @@ -106192,7 +106290,7 @@ } }, { - "id": 21873, + "id": 21888, "properties": { "candles": "2", "lit": "false", @@ -106200,7 +106298,7 @@ } }, { - "id": 21874, + "id": 21889, "properties": { "candles": "3", "lit": "true", @@ -106208,7 +106306,7 @@ } }, { - "id": 21875, + "id": 21890, "properties": { "candles": "3", "lit": "true", @@ -106216,7 +106314,7 @@ } }, { - "id": 21876, + "id": 21891, "properties": { "candles": "3", "lit": "false", @@ -106224,7 +106322,7 @@ } }, { - "id": 21877, + "id": 21892, "properties": { "candles": "3", "lit": "false", @@ -106232,7 +106330,7 @@ } }, { - "id": 21878, + "id": 21893, "properties": { "candles": "4", "lit": "true", @@ -106240,7 +106338,7 @@ } }, { - "id": 21879, + "id": 21894, "properties": { "candles": "4", "lit": "true", @@ -106248,7 +106346,7 @@ } }, { - "id": 21880, + "id": 21895, "properties": { "candles": "4", "lit": "false", @@ -106256,7 +106354,7 @@ } }, { - "id": 21881, + "id": 21896, "properties": { "candles": "4", "lit": "false", @@ -106279,14 +106377,14 @@ }, "states": [ { - "id": 22026, + "id": 22041, "properties": { "lit": "true" } }, { "default": true, - "id": 22027, + "id": 22042, "properties": { "lit": "false" } @@ -106302,7 +106400,7 @@ "states": [ { "default": true, - "id": 11614 + "id": 11624 } ] }, @@ -106314,7 +106412,7 @@ "states": [ { "default": true, - "id": 13748 + "id": 13758 } ] }, @@ -106327,7 +106425,7 @@ "states": [ { "default": true, - "id": 13764 + "id": 13774 } ] }, @@ -106347,25 +106445,25 @@ "states": [ { "default": true, - "id": 13705, + "id": 13715, "properties": { "facing": "north" } }, { - "id": 13706, + "id": 13716, "properties": { "facing": "south" } }, { - "id": 13707, + "id": 13717, "properties": { "facing": "west" } }, { - "id": 13708, + "id": 13718, "properties": { "facing": "east" } @@ -106390,38 +106488,38 @@ }, "states": [ { - "id": 13623, + "id": 13633, "properties": { "facing": "north" } }, { - "id": 13624, + "id": 13634, "properties": { "facing": "east" } }, { - "id": 13625, + "id": 13635, "properties": { "facing": "south" } }, { - "id": 13626, + "id": 13636, "properties": { "facing": "west" } }, { "default": true, - "id": 13627, + "id": 13637, "properties": { "facing": "up" } }, { - "id": 13628, + "id": 13638, "properties": { "facing": "down" } @@ -106437,7 +106535,7 @@ "states": [ { "default": true, - "id": 6121 + "id": 6131 } ] }, @@ -106470,113 +106568,13 @@ ] }, "states": [ - { - "id": 10395, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10396, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10397, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10398, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10399, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10400, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10401, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10402, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10403, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10404, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10405, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -106584,9 +106582,9 @@ "id": 10406, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -106594,9 +106592,9 @@ "id": 10407, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -106604,14 +106602,114 @@ "id": 10408, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 10409, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10410, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10411, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10412, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10413, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10414, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10415, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10416, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10417, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10418, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10419, "properties": { "east": "true", "north": "false", @@ -106621,7 +106719,7 @@ } }, { - "id": 10410, + "id": 10420, "properties": { "east": "true", "north": "false", @@ -106630,118 +106728,118 @@ "west": "false" } }, - { - "id": 10411, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10412, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10413, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10414, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10415, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10416, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10417, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10418, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10419, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10420, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10421, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 10422, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10423, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10424, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10425, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10426, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10427, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10428, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10429, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10430, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10431, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10432, "properties": { "east": "false", "north": "false", @@ -106751,7 +106849,7 @@ } }, { - "id": 10423, + "id": 10433, "properties": { "east": "false", "north": "false", @@ -106761,7 +106859,7 @@ } }, { - "id": 10424, + "id": 10434, "properties": { "east": "false", "north": "false", @@ -106771,7 +106869,7 @@ } }, { - "id": 10425, + "id": 10435, "properties": { "east": "false", "north": "false", @@ -106782,7 +106880,7 @@ }, { "default": true, - "id": 10426, + "id": 10436, "properties": { "east": "false", "north": "false", @@ -106795,13 +106893,13 @@ }, "minecraft:gray_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 10162 + "id": 10172 } ] }, @@ -106822,25 +106920,25 @@ "states": [ { "default": true, - "id": 11922, + "id": 11932, "properties": { "facing": "north" } }, { - "id": 11923, + "id": 11933, "properties": { "facing": "south" } }, { - "id": 11924, + "id": 11934, "properties": { "facing": "west" } }, { - "id": 11925, + "id": 11935, "properties": { "facing": "east" } @@ -106855,7 +106953,7 @@ "states": [ { "default": true, - "id": 2097 + "id": 2100 } ] }, @@ -106888,97 +106986,97 @@ "states": [ { "default": true, - "id": 11846, + "id": 11856, "properties": { "rotation": "0" } }, { - "id": 11847, + "id": 11857, "properties": { "rotation": "1" } }, { - "id": 11848, + "id": 11858, "properties": { "rotation": "2" } }, { - "id": 11849, + "id": 11859, "properties": { "rotation": "3" } }, { - "id": 11850, + "id": 11860, "properties": { "rotation": "4" } }, { - "id": 11851, + "id": 11861, "properties": { "rotation": "5" } }, { - "id": 11852, + "id": 11862, "properties": { "rotation": "6" } }, { - "id": 11853, + "id": 11863, "properties": { "rotation": "7" } }, { - "id": 11854, + "id": 11864, "properties": { "rotation": "8" } }, { - "id": 11855, + "id": 11865, "properties": { "rotation": "9" } }, { - "id": 11856, + "id": 11866, "properties": { "rotation": "10" } }, { - "id": 11857, + "id": 11867, "properties": { "rotation": "11" } }, { - "id": 11858, + "id": 11868, "properties": { "rotation": "12" } }, { - "id": 11859, + "id": 11869, "properties": { "rotation": "13" } }, { - "id": 11860, + "id": 11870, "properties": { "rotation": "14" } }, { - "id": 11861, + "id": 11871, "properties": { "rotation": "15" } @@ -107162,7 +107260,7 @@ }, "states": [ { - "id": 21962, + "id": 21977, "properties": { "candles": "1", "lit": "true", @@ -107170,7 +107268,7 @@ } }, { - "id": 21963, + "id": 21978, "properties": { "candles": "1", "lit": "true", @@ -107178,7 +107276,7 @@ } }, { - "id": 21964, + "id": 21979, "properties": { "candles": "1", "lit": "false", @@ -107187,7 +107285,7 @@ }, { "default": true, - "id": 21965, + "id": 21980, "properties": { "candles": "1", "lit": "false", @@ -107195,7 +107293,7 @@ } }, { - "id": 21966, + "id": 21981, "properties": { "candles": "2", "lit": "true", @@ -107203,7 +107301,7 @@ } }, { - "id": 21967, + "id": 21982, "properties": { "candles": "2", "lit": "true", @@ -107211,7 +107309,7 @@ } }, { - "id": 21968, + "id": 21983, "properties": { "candles": "2", "lit": "false", @@ -107219,7 +107317,7 @@ } }, { - "id": 21969, + "id": 21984, "properties": { "candles": "2", "lit": "false", @@ -107227,7 +107325,7 @@ } }, { - "id": 21970, + "id": 21985, "properties": { "candles": "3", "lit": "true", @@ -107235,7 +107333,7 @@ } }, { - "id": 21971, + "id": 21986, "properties": { "candles": "3", "lit": "true", @@ -107243,7 +107341,7 @@ } }, { - "id": 21972, + "id": 21987, "properties": { "candles": "3", "lit": "false", @@ -107251,7 +107349,7 @@ } }, { - "id": 21973, + "id": 21988, "properties": { "candles": "3", "lit": "false", @@ -107259,7 +107357,7 @@ } }, { - "id": 21974, + "id": 21989, "properties": { "candles": "4", "lit": "true", @@ -107267,7 +107365,7 @@ } }, { - "id": 21975, + "id": 21990, "properties": { "candles": "4", "lit": "true", @@ -107275,7 +107373,7 @@ } }, { - "id": 21976, + "id": 21991, "properties": { "candles": "4", "lit": "false", @@ -107283,7 +107381,7 @@ } }, { - "id": 21977, + "id": 21992, "properties": { "candles": "4", "lit": "false", @@ -107306,14 +107404,14 @@ }, "states": [ { - "id": 22038, + "id": 22053, "properties": { "lit": "true" } }, { "default": true, - "id": 22039, + "id": 22054, "properties": { "lit": "false" } @@ -107329,7 +107427,7 @@ "states": [ { "default": true, - "id": 11620 + "id": 11630 } ] }, @@ -107341,7 +107439,7 @@ "states": [ { "default": true, - "id": 13754 + "id": 13764 } ] }, @@ -107354,7 +107452,7 @@ "states": [ { "default": true, - "id": 13770 + "id": 13780 } ] }, @@ -107374,25 +107472,25 @@ "states": [ { "default": true, - "id": 13729, + "id": 13739, "properties": { "facing": "north" } }, { - "id": 13730, + "id": 13740, "properties": { "facing": "south" } }, { - "id": 13731, + "id": 13741, "properties": { "facing": "west" } }, { - "id": 13732, + "id": 13742, "properties": { "facing": "east" } @@ -107417,38 +107515,38 @@ }, "states": [ { - "id": 13659, + "id": 13669, "properties": { "facing": "north" } }, { - "id": 13660, + "id": 13670, "properties": { "facing": "east" } }, { - "id": 13661, + "id": 13671, "properties": { "facing": "south" } }, { - "id": 13662, + "id": 13672, "properties": { "facing": "west" } }, { "default": true, - "id": 13663, + "id": 13673, "properties": { "facing": "up" } }, { - "id": 13664, + "id": 13674, "properties": { "facing": "down" } @@ -107464,7 +107562,7 @@ "states": [ { "default": true, - "id": 6127 + "id": 6137 } ] }, @@ -107497,113 +107595,13 @@ ] }, "states": [ - { - "id": 10587, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10588, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10589, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10590, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10591, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10592, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10593, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10594, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10595, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10596, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10597, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -107611,9 +107609,9 @@ "id": 10598, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -107621,9 +107619,9 @@ "id": 10599, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -107631,14 +107629,114 @@ "id": 10600, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 10601, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10602, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10603, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10604, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10605, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10606, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10607, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10608, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10609, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10610, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10611, "properties": { "east": "true", "north": "false", @@ -107648,7 +107746,7 @@ } }, { - "id": 10602, + "id": 10612, "properties": { "east": "true", "north": "false", @@ -107657,118 +107755,118 @@ "west": "false" } }, - { - "id": 10603, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10604, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10605, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10606, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10607, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10608, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10609, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10610, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10611, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10612, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10613, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 10614, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10615, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10616, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10617, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10618, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10619, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10620, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10621, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10622, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10623, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10624, "properties": { "east": "false", "north": "false", @@ -107778,7 +107876,7 @@ } }, { - "id": 10615, + "id": 10625, "properties": { "east": "false", "north": "false", @@ -107788,7 +107886,7 @@ } }, { - "id": 10616, + "id": 10626, "properties": { "east": "false", "north": "false", @@ -107798,7 +107896,7 @@ } }, { - "id": 10617, + "id": 10627, "properties": { "east": "false", "north": "false", @@ -107809,7 +107907,7 @@ }, { "default": true, - "id": 10618, + "id": 10628, "properties": { "east": "false", "north": "false", @@ -107822,13 +107920,13 @@ }, "minecraft:green_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 10168 + "id": 10178 } ] }, @@ -107849,25 +107947,25 @@ "states": [ { "default": true, - "id": 11946, + "id": 11956, "properties": { "facing": "north" } }, { - "id": 11947, + "id": 11957, "properties": { "facing": "south" } }, { - "id": 11948, + "id": 11958, "properties": { "facing": "west" } }, { - "id": 11949, + "id": 11959, "properties": { "facing": "east" } @@ -107882,7 +107980,7 @@ "states": [ { "default": true, - "id": 2103 + "id": 2106 } ] }, @@ -107906,28 +108004,28 @@ }, "states": [ { - "id": 19451, + "id": 19461, "properties": { "face": "floor", "facing": "north" } }, { - "id": 19452, + "id": 19462, "properties": { "face": "floor", "facing": "south" } }, { - "id": 19453, + "id": 19463, "properties": { "face": "floor", "facing": "west" } }, { - "id": 19454, + "id": 19464, "properties": { "face": "floor", "facing": "east" @@ -107935,56 +108033,56 @@ }, { "default": true, - "id": 19455, + "id": 19465, "properties": { "face": "wall", "facing": "north" } }, { - "id": 19456, + "id": 19466, "properties": { "face": "wall", "facing": "south" } }, { - "id": 19457, + "id": 19467, "properties": { "face": "wall", "facing": "west" } }, { - "id": 19458, + "id": 19468, "properties": { "face": "wall", "facing": "east" } }, { - "id": 19459, + "id": 19469, "properties": { "face": "ceiling", "facing": "north" } }, { - "id": 19460, + "id": 19470, "properties": { "face": "ceiling", "facing": "south" } }, { - "id": 19461, + "id": 19471, "properties": { "face": "ceiling", "facing": "west" } }, { - "id": 19462, + "id": 19472, "properties": { "face": "ceiling", "facing": "east" @@ -108005,14 +108103,14 @@ }, "states": [ { - "id": 25913, + "id": 25960, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 25914, + "id": 25961, "properties": { "waterlogged": "false" } @@ -108033,20 +108131,20 @@ }, "states": [ { - "id": 11604, + "id": 11614, "properties": { "axis": "x" } }, { "default": true, - "id": 11605, + "id": 11615, "properties": { "axis": "y" } }, { - "id": 11606, + "id": 11616, "properties": { "axis": "z" } @@ -108066,14 +108164,14 @@ }, "states": [ { - "id": 27695, + "id": 27742, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 27696, + "id": 27743, "properties": { "waterlogged": "false" } @@ -108110,97 +108208,97 @@ "states": [ { "default": true, - "id": 9958, + "id": 9968, "properties": { "power": "0" } }, { - "id": 9959, + "id": 9969, "properties": { "power": "1" } }, { - "id": 9960, + "id": 9970, "properties": { "power": "2" } }, { - "id": 9961, + "id": 9971, "properties": { "power": "3" } }, { - "id": 9962, + "id": 9972, "properties": { "power": "4" } }, { - "id": 9963, + "id": 9973, "properties": { "power": "5" } }, { - "id": 9964, + "id": 9974, "properties": { "power": "6" } }, { - "id": 9965, + "id": 9975, "properties": { "power": "7" } }, { - "id": 9966, + "id": 9976, "properties": { "power": "8" } }, { - "id": 9967, + "id": 9977, "properties": { "power": "9" } }, { - "id": 9968, + "id": 9978, "properties": { "power": "10" } }, { - "id": 9969, + "id": 9979, "properties": { "power": "11" } }, { - "id": 9970, + "id": 9980, "properties": { "power": "12" } }, { - "id": 9971, + "id": 9981, "properties": { "power": "13" } }, { - "id": 9972, + "id": 9982, "properties": { "power": "14" } }, { - "id": 9973, + "id": 9983, "properties": { "power": "15" } @@ -108215,7 +108313,7 @@ "states": [ { "default": true, - "id": 20458 + "id": 20473 } ] }, @@ -108227,7 +108325,7 @@ "states": [ { "default": true, - "id": 20459 + "id": 20474 } ] }, @@ -108252,70 +108350,70 @@ "states": [ { "default": true, - "id": 10024, + "id": 10034, "properties": { "enabled": "true", "facing": "down" } }, { - "id": 10025, + "id": 10035, "properties": { "enabled": "true", "facing": "north" } }, { - "id": 10026, + "id": 10036, "properties": { "enabled": "true", "facing": "south" } }, { - "id": 10027, + "id": 10037, "properties": { "enabled": "true", "facing": "west" } }, { - "id": 10028, + "id": 10038, "properties": { "enabled": "true", "facing": "east" } }, { - "id": 10029, + "id": 10039, "properties": { "enabled": "false", "facing": "down" } }, { - "id": 10030, + "id": 10040, "properties": { "enabled": "false", "facing": "north" } }, { - "id": 10031, + "id": 10041, "properties": { "enabled": "false", "facing": "south" } }, { - "id": 10032, + "id": 10042, "properties": { "enabled": "false", "facing": "west" } }, { - "id": 10033, + "id": 10043, "properties": { "enabled": "false", "facing": "east" @@ -108338,13 +108436,13 @@ "states": [ { "default": true, - "id": 13844, + "id": 13854, "properties": { "waterlogged": "true" } }, { - "id": 13845, + "id": 13855, "properties": { "waterlogged": "false" } @@ -108360,7 +108458,7 @@ "states": [ { "default": true, - "id": 13825 + "id": 13835 } ] }, @@ -108379,13 +108477,13 @@ "states": [ { "default": true, - "id": 13864, + "id": 13874, "properties": { "waterlogged": "true" } }, { - "id": 13865, + "id": 13875, "properties": { "waterlogged": "false" } @@ -108413,56 +108511,56 @@ "states": [ { "default": true, - "id": 13938, + "id": 13948, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 13939, + "id": 13949, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 13940, + "id": 13950, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 13941, + "id": 13951, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 13942, + "id": 13952, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 13943, + "id": 13953, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 13944, + "id": 13954, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 13945, + "id": 13955, "properties": { "facing": "east", "waterlogged": "false" @@ -108478,7 +108576,7 @@ "states": [ { "default": true, - "id": 5949 + "id": 5958 } ] }, @@ -108491,7 +108589,7 @@ "states": [ { "default": true, - "id": 6781 + "id": 6791 } ] }, @@ -108504,7 +108602,7 @@ "states": [ { "default": true, - "id": 6777 + "id": 6787 } ] }, @@ -108517,7 +108615,7 @@ "states": [ { "default": true, - "id": 6780 + "id": 6790 } ] }, @@ -108536,20 +108634,20 @@ }, "states": [ { - "id": 27567, + "id": 27614, "properties": { "axis": "x" } }, { "default": true, - "id": 27568, + "id": 27615, "properties": { "axis": "y" } }, { - "id": 27569, + "id": 27616, "properties": { "axis": "z" } @@ -108565,7 +108663,7 @@ "states": [ { "default": true, - "id": 6779 + "id": 6789 } ] }, @@ -108578,7 +108676,7 @@ "states": [ { "default": true, - "id": 6776 + "id": 6786 } ] }, @@ -108591,7 +108689,7 @@ "states": [ { "default": true, - "id": 6778 + "id": 6788 } ] }, @@ -108623,113 +108721,13 @@ ] }, "states": [ - { - "id": 6974, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6975, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6976, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6977, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6978, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6979, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6980, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6981, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6982, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6983, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 6984, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -108737,9 +108735,9 @@ "id": 6985, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -108747,9 +108745,9 @@ "id": 6986, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -108757,14 +108755,114 @@ "id": 6987, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 6988, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6989, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6990, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6991, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6992, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6993, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6994, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6995, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6996, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6997, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6998, "properties": { "east": "true", "north": "false", @@ -108774,7 +108872,7 @@ } }, { - "id": 6989, + "id": 6999, "properties": { "east": "true", "north": "false", @@ -108783,118 +108881,118 @@ "west": "false" } }, - { - "id": 6990, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6991, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6992, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6993, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6994, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6995, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6996, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6997, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6998, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6999, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 7000, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 7001, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7002, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7003, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7004, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7005, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7006, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7007, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7008, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7009, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7010, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7011, "properties": { "east": "false", "north": "false", @@ -108904,7 +109002,7 @@ } }, { - "id": 7002, + "id": 7012, "properties": { "east": "false", "north": "false", @@ -108914,7 +109012,7 @@ } }, { - "id": 7003, + "id": 7013, "properties": { "east": "false", "north": "false", @@ -108924,7 +109022,7 @@ } }, { - "id": 7004, + "id": 7014, "properties": { "east": "false", "north": "false", @@ -108935,7 +109033,7 @@ }, { "default": true, - "id": 7005, + "id": 7015, "properties": { "east": "false", "north": "false", @@ -108954,7 +109052,7 @@ "states": [ { "default": true, - "id": 2135 + "id": 2138 } ] }, @@ -108989,108 +109087,108 @@ ] }, "states": [ - { - "id": 5819, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 5820, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 5821, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 5822, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 5823, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 5824, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 5825, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 5826, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 5827, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, { "id": 5828, "properties": { "facing": "north", - "half": "lower", + "half": "upper", "hinge": "left", "open": "true", - "powered": "false" + "powered": "true" } }, { "id": 5829, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5830, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5831, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5832, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5833, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5834, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5835, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5836, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5837, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5838, "properties": { "facing": "north", "half": "lower", @@ -109101,197 +109199,197 @@ }, { "default": true, - "id": 5830, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 5831, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 5832, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 5833, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 5834, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 5835, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 5836, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 5837, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 5838, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { "id": 5839, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { "id": 5840, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", "open": "true", - "powered": "false" + "powered": "true" } }, { "id": 5841, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", - "powered": "true" + "open": "true", + "powered": "false" } }, { "id": 5842, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", "open": "false", - "powered": "false" + "powered": "true" } }, { "id": 5843, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" + "hinge": "right", + "open": "false", + "powered": "false" } }, { "id": 5844, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", "open": "true", - "powered": "false" + "powered": "true" } }, { "id": 5845, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", - "powered": "true" + "open": "true", + "powered": "false" } }, { "id": 5846, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", "open": "false", - "powered": "false" + "powered": "true" } }, { "id": 5847, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { "id": 5848, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "right", "open": "true", - "powered": "false" + "powered": "true" } }, { "id": 5849, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5850, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5851, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5852, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5853, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5854, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5855, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5856, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5857, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5858, "properties": { "facing": "south", "half": "lower", @@ -109301,7 +109399,7 @@ } }, { - "id": 5850, + "id": 5859, "properties": { "facing": "south", "half": "lower", @@ -109310,148 +109408,148 @@ "powered": "false" } }, - { - "id": 5851, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 5852, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 5853, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 5854, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 5855, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 5856, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 5857, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 5858, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 5859, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, { "id": 5860, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", "open": "true", - "powered": "false" + "powered": "true" } }, { "id": 5861, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", - "powered": "true" + "open": "true", + "powered": "false" } }, { "id": 5862, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", "open": "false", - "powered": "false" + "powered": "true" } }, { "id": 5863, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { "id": 5864, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "right", "open": "true", - "powered": "false" + "powered": "true" } }, { "id": 5865, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5866, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5867, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5868, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5869, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5870, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5871, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5872, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5873, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5874, "properties": { "facing": "west", "half": "lower", @@ -109461,7 +109559,7 @@ } }, { - "id": 5866, + "id": 5875, "properties": { "facing": "west", "half": "lower", @@ -109470,118 +109568,118 @@ "powered": "false" } }, - { - "id": 5867, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 5868, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 5869, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 5870, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 5871, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 5872, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 5873, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 5874, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 5875, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, { "id": 5876, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", "open": "true", - "powered": "false" + "powered": "true" } }, { "id": 5877, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", - "powered": "true" + "open": "true", + "powered": "false" } }, { "id": 5878, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5879, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5880, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5881, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5882, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5883, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5884, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5885, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5886, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5887, "properties": { "facing": "east", "half": "lower", @@ -109591,7 +109689,7 @@ } }, { - "id": 5879, + "id": 5888, "properties": { "facing": "east", "half": "lower", @@ -109601,7 +109699,7 @@ } }, { - "id": 5880, + "id": 5889, "properties": { "facing": "east", "half": "lower", @@ -109611,7 +109709,7 @@ } }, { - "id": 5881, + "id": 5890, "properties": { "facing": "east", "half": "lower", @@ -109621,7 +109719,7 @@ } }, { - "id": 5882, + "id": 5891, "properties": { "facing": "east", "half": "lower", @@ -109676,118 +109774,118 @@ ] }, "states": [ - { - "id": 11278, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 11279, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 11280, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 11281, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 11282, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 11283, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 11284, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 11285, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 11286, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 11287, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 11288, "properties": { "facing": "north", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, { "id": 11289, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 11290, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 11291, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 11292, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 11293, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 11294, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 11295, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 11296, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 11297, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 11298, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 11299, "properties": { "facing": "north", "half": "bottom", @@ -109797,7 +109895,7 @@ } }, { - "id": 11290, + "id": 11300, "properties": { "facing": "north", "half": "bottom", @@ -109807,7 +109905,7 @@ } }, { - "id": 11291, + "id": 11301, "properties": { "facing": "north", "half": "bottom", @@ -109817,7 +109915,7 @@ } }, { - "id": 11292, + "id": 11302, "properties": { "facing": "north", "half": "bottom", @@ -109828,7 +109926,7 @@ }, { "default": true, - "id": 11293, + "id": 11303, "properties": { "facing": "north", "half": "bottom", @@ -109837,113 +109935,13 @@ "waterlogged": "false" } }, - { - "id": 11294, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 11295, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 11296, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 11297, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 11298, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 11299, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 11300, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 11301, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 11302, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 11303, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 11304, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -109951,9 +109949,9 @@ "id": 11305, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -109961,9 +109959,9 @@ "id": 11306, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -109971,14 +109969,114 @@ "id": 11307, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 11308, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 11309, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 11310, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 11311, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 11312, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 11313, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 11314, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 11315, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 11316, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 11317, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 11318, "properties": { "facing": "south", "half": "bottom", @@ -109988,7 +110086,7 @@ } }, { - "id": 11309, + "id": 11319, "properties": { "facing": "south", "half": "bottom", @@ -109997,113 +110095,13 @@ "waterlogged": "false" } }, - { - "id": 11310, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 11311, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 11312, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 11313, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 11314, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 11315, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 11316, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 11317, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 11318, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 11319, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 11320, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -110111,9 +110109,9 @@ "id": 11321, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -110121,9 +110119,9 @@ "id": 11322, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -110131,14 +110129,114 @@ "id": 11323, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 11324, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 11325, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 11326, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 11327, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 11328, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 11329, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 11330, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 11331, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 11332, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 11333, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 11334, "properties": { "facing": "west", "half": "bottom", @@ -110148,7 +110246,7 @@ } }, { - "id": 11325, + "id": 11335, "properties": { "facing": "west", "half": "bottom", @@ -110157,113 +110255,13 @@ "waterlogged": "false" } }, - { - "id": 11326, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 11327, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 11328, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 11329, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 11330, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 11331, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 11332, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 11333, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 11334, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 11335, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 11336, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -110271,14 +110269,114 @@ "id": 11337, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, { "id": 11338, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 11339, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 11340, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 11341, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 11342, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 11343, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 11344, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 11345, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 11346, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 11347, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 11348, "properties": { "facing": "east", "half": "bottom", @@ -110288,7 +110386,7 @@ } }, { - "id": 11339, + "id": 11349, "properties": { "facing": "east", "half": "bottom", @@ -110298,7 +110396,7 @@ } }, { - "id": 11340, + "id": 11350, "properties": { "facing": "east", "half": "bottom", @@ -110308,7 +110406,7 @@ } }, { - "id": 11341, + "id": 11351, "properties": { "facing": "east", "half": "bottom", @@ -110335,25 +110433,25 @@ "states": [ { "default": true, - "id": 6039, + "id": 6049, "properties": { "facing": "north" } }, { - "id": 6040, + "id": 6050, "properties": { "facing": "south" } }, { - "id": 6041, + "id": 6051, "properties": { "facing": "west" } }, { - "id": 6042, + "id": 6052, "properties": { "facing": "east" } @@ -110383,74 +110481,74 @@ }, "states": [ { - "id": 20373, + "id": 20383, "properties": { "orientation": "down_east" } }, { - "id": 20374, + "id": 20384, "properties": { "orientation": "down_north" } }, { - "id": 20375, + "id": 20385, "properties": { "orientation": "down_south" } }, { - "id": 20376, + "id": 20386, "properties": { "orientation": "down_west" } }, { - "id": 20377, + "id": 20387, "properties": { "orientation": "up_east" } }, { - "id": 20378, + "id": 20388, "properties": { "orientation": "up_north" } }, { - "id": 20379, + "id": 20389, "properties": { "orientation": "up_south" } }, { - "id": 20380, + "id": 20390, "properties": { "orientation": "up_west" } }, { - "id": 20381, + "id": 20391, "properties": { "orientation": "west_up" } }, { - "id": 20382, + "id": 20392, "properties": { "orientation": "east_up" } }, { "default": true, - "id": 20383, + "id": 20393, "properties": { "orientation": "north_up" } }, { - "id": 20384, + "id": 20394, "properties": { "orientation": "south_up" } @@ -110470,14 +110568,14 @@ }, "states": [ { - "id": 5984, + "id": 5994, "properties": { "has_record": "true" } }, { "default": true, - "id": 5985, + "id": 5995, "properties": { "has_record": "false" } @@ -110510,7 +110608,7 @@ }, "states": [ { - "id": 9458, + "id": 9468, "properties": { "face": "floor", "facing": "north", @@ -110518,7 +110616,7 @@ } }, { - "id": 9459, + "id": 9469, "properties": { "face": "floor", "facing": "north", @@ -110526,7 +110624,7 @@ } }, { - "id": 9460, + "id": 9470, "properties": { "face": "floor", "facing": "south", @@ -110534,7 +110632,7 @@ } }, { - "id": 9461, + "id": 9471, "properties": { "face": "floor", "facing": "south", @@ -110542,7 +110640,7 @@ } }, { - "id": 9462, + "id": 9472, "properties": { "face": "floor", "facing": "west", @@ -110550,7 +110648,7 @@ } }, { - "id": 9463, + "id": 9473, "properties": { "face": "floor", "facing": "west", @@ -110558,7 +110656,7 @@ } }, { - "id": 9464, + "id": 9474, "properties": { "face": "floor", "facing": "east", @@ -110566,7 +110664,7 @@ } }, { - "id": 9465, + "id": 9475, "properties": { "face": "floor", "facing": "east", @@ -110574,7 +110672,7 @@ } }, { - "id": 9466, + "id": 9476, "properties": { "face": "wall", "facing": "north", @@ -110583,95 +110681,95 @@ }, { "default": true, - "id": 9467, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9468, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 9469, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 9470, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 9471, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 9472, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 9473, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 9474, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 9475, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9476, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { "id": 9477, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "north", "powered": "false" } }, { "id": 9478, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9479, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9480, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 9481, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 9482, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 9483, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 9484, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 9485, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 9486, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9487, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9488, "properties": { "face": "ceiling", "facing": "west", @@ -110679,7 +110777,7 @@ } }, { - "id": 9479, + "id": 9489, "properties": { "face": "ceiling", "facing": "west", @@ -110687,7 +110785,7 @@ } }, { - "id": 9480, + "id": 9490, "properties": { "face": "ceiling", "facing": "east", @@ -110695,7 +110793,7 @@ } }, { - "id": 9481, + "id": 9491, "properties": { "face": "ceiling", "facing": "east", @@ -110735,108 +110833,108 @@ ] }, "states": [ - { - "id": 12899, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12900, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12901, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12902, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12903, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12904, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12905, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12906, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12907, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12908, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 12909, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12910, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12911, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12912, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12913, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12914, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12915, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12916, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12917, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12918, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12919, "properties": { "facing": "north", "half": "lower", @@ -110847,152 +110945,52 @@ }, { "default": true, - "id": 12910, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12911, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12912, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12913, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12914, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12915, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12916, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12917, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12918, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12919, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { "id": 12920, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 12921, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12922, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 12923, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "true" } }, { "id": 12924, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "false" } }, @@ -111000,9 +110998,9 @@ "id": 12925, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -111010,9 +111008,9 @@ "id": 12926, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -111020,9 +111018,9 @@ "id": 12927, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -111030,14 +111028,114 @@ "id": 12928, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 12929, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12930, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12931, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12932, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12933, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12934, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12935, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12936, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12937, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12938, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12939, "properties": { "facing": "south", "half": "lower", @@ -111047,7 +111145,7 @@ } }, { - "id": 12930, + "id": 12940, "properties": { "facing": "south", "half": "lower", @@ -111056,113 +111154,13 @@ "powered": "false" } }, - { - "id": 12931, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12932, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12933, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12934, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12935, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12936, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12937, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12938, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12939, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12940, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 12941, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -111170,9 +111168,9 @@ "id": 12942, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -111180,9 +111178,9 @@ "id": 12943, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -111190,14 +111188,114 @@ "id": 12944, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 12945, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12946, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12947, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12948, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12949, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12950, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12951, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12952, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12953, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12954, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12955, "properties": { "facing": "west", "half": "lower", @@ -111207,7 +111305,7 @@ } }, { - "id": 12946, + "id": 12956, "properties": { "facing": "west", "half": "lower", @@ -111216,113 +111314,13 @@ "powered": "false" } }, - { - "id": 12947, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12948, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12949, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12950, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12951, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12952, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12953, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12954, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12955, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12956, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 12957, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -111330,14 +111328,114 @@ "id": 12958, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 12959, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12960, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12961, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12962, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12963, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12964, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12965, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12966, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12967, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12968, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12969, "properties": { "facing": "east", "half": "lower", @@ -111347,7 +111445,7 @@ } }, { - "id": 12960, + "id": 12970, "properties": { "facing": "east", "half": "lower", @@ -111357,7 +111455,7 @@ } }, { - "id": 12961, + "id": 12971, "properties": { "facing": "east", "half": "lower", @@ -111367,7 +111465,7 @@ } }, { - "id": 12962, + "id": 12972, "properties": { "facing": "east", "half": "lower", @@ -111406,113 +111504,13 @@ ] }, "states": [ - { - "id": 12547, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12548, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12549, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12550, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12551, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12552, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12553, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12554, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12555, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12556, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 12557, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -111520,9 +111518,9 @@ "id": 12558, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -111530,9 +111528,9 @@ "id": 12559, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -111540,14 +111538,114 @@ "id": 12560, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 12561, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12562, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12563, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12564, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12565, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12566, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12567, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12568, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12569, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12570, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12571, "properties": { "east": "true", "north": "false", @@ -111557,7 +111655,7 @@ } }, { - "id": 12562, + "id": 12572, "properties": { "east": "true", "north": "false", @@ -111566,118 +111664,118 @@ "west": "false" } }, - { - "id": 12563, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12564, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12565, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12566, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12567, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12568, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12569, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12570, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12571, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12572, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 12573, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 12574, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12575, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12576, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12577, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12578, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12579, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12580, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12581, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12582, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12583, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12584, "properties": { "east": "false", "north": "false", @@ -111687,7 +111785,7 @@ } }, { - "id": 12575, + "id": 12585, "properties": { "east": "false", "north": "false", @@ -111697,7 +111795,7 @@ } }, { - "id": 12576, + "id": 12586, "properties": { "east": "false", "north": "false", @@ -111707,7 +111805,7 @@ } }, { - "id": 12577, + "id": 12587, "properties": { "east": "false", "north": "false", @@ -111718,7 +111816,7 @@ }, { "default": true, - "id": 12578, + "id": 12588, "properties": { "east": "false", "north": "false", @@ -111757,7 +111855,7 @@ }, "states": [ { - "id": 12259, + "id": 12269, "properties": { "facing": "north", "in_wall": "true", @@ -111766,7 +111864,7 @@ } }, { - "id": 12260, + "id": 12270, "properties": { "facing": "north", "in_wall": "true", @@ -111775,7 +111873,7 @@ } }, { - "id": 12261, + "id": 12271, "properties": { "facing": "north", "in_wall": "true", @@ -111784,7 +111882,7 @@ } }, { - "id": 12262, + "id": 12272, "properties": { "facing": "north", "in_wall": "true", @@ -111793,7 +111891,7 @@ } }, { - "id": 12263, + "id": 12273, "properties": { "facing": "north", "in_wall": "false", @@ -111802,7 +111900,7 @@ } }, { - "id": 12264, + "id": 12274, "properties": { "facing": "north", "in_wall": "false", @@ -111811,7 +111909,7 @@ } }, { - "id": 12265, + "id": 12275, "properties": { "facing": "north", "in_wall": "false", @@ -111821,7 +111919,7 @@ }, { "default": true, - "id": 12266, + "id": 12276, "properties": { "facing": "north", "in_wall": "false", @@ -111829,143 +111927,143 @@ "powered": "false" } }, - { - "id": 12267, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 12268, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 12269, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 12270, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 12271, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 12272, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 12273, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 12274, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 12275, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 12276, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, { "id": 12277, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12278, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 12279, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "true" } }, { "id": 12280, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "false" } }, { "id": 12281, "properties": { - "facing": "west", + "facing": "south", "in_wall": "false", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12282, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 12283, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 12284, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 12285, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 12286, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 12287, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 12288, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 12289, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 12290, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 12291, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 12292, "properties": { "facing": "west", "in_wall": "false", @@ -111974,7 +112072,7 @@ } }, { - "id": 12283, + "id": 12293, "properties": { "facing": "east", "in_wall": "true", @@ -111983,7 +112081,7 @@ } }, { - "id": 12284, + "id": 12294, "properties": { "facing": "east", "in_wall": "true", @@ -111992,7 +112090,7 @@ } }, { - "id": 12285, + "id": 12295, "properties": { "facing": "east", "in_wall": "true", @@ -112001,7 +112099,7 @@ } }, { - "id": 12286, + "id": 12296, "properties": { "facing": "east", "in_wall": "true", @@ -112010,7 +112108,7 @@ } }, { - "id": 12287, + "id": 12297, "properties": { "facing": "east", "in_wall": "false", @@ -112019,7 +112117,7 @@ } }, { - "id": 12288, + "id": 12298, "properties": { "facing": "east", "in_wall": "false", @@ -112028,7 +112126,7 @@ } }, { - "id": 12289, + "id": 12299, "properties": { "facing": "east", "in_wall": "false", @@ -112037,7 +112135,7 @@ } }, { - "id": 12290, + "id": 12300, "properties": { "facing": "east", "in_wall": "false", @@ -112082,240 +112180,240 @@ ] }, "states": [ - { - "id": 5249, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5250, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5251, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5252, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5253, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5254, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5255, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5256, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5257, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, { "id": 5258, "properties": { "attached": "true", - "rotation": "4", - "waterlogged": "false" + "rotation": "0", + "waterlogged": "true" } }, { "id": 5259, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "true" + "rotation": "0", + "waterlogged": "false" } }, { "id": 5260, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5261, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5262, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5263, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5264, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5265, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5266, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5267, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5268, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5269, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5270, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5271, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5272, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5273, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5274, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5275, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5276, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "false" + "rotation": "9", + "waterlogged": "true" } }, { "id": 5277, "properties": { "attached": "true", - "rotation": "14", - "waterlogged": "true" + "rotation": "9", + "waterlogged": "false" } }, { "id": 5278, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5279, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5280, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5281, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5282, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5283, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5284, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5285, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5286, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5287, "properties": { "attached": "true", "rotation": "14", @@ -112323,7 +112421,7 @@ } }, { - "id": 5279, + "id": 5288, "properties": { "attached": "true", "rotation": "15", @@ -112331,7 +112429,7 @@ } }, { - "id": 5280, + "id": 5289, "properties": { "attached": "true", "rotation": "15", @@ -112339,7 +112437,7 @@ } }, { - "id": 5281, + "id": 5290, "properties": { "attached": "false", "rotation": "0", @@ -112348,215 +112446,215 @@ }, { "default": true, - "id": 5282, + "id": 5291, "properties": { "attached": "false", "rotation": "0", "waterlogged": "false" } }, - { - "id": 5283, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5284, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5285, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5286, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5287, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5288, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5289, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5290, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5291, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 5292, "properties": { "attached": "false", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5293, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5294, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5295, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5296, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5297, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5298, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5299, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5300, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5301, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5302, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5303, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5304, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5305, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5306, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5307, "properties": { "attached": "false", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5308, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5309, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5310, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5311, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5312, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5313, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5314, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5315, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5316, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5317, "properties": { "attached": "false", "rotation": "13", @@ -112564,7 +112662,7 @@ } }, { - "id": 5309, + "id": 5318, "properties": { "attached": "false", "rotation": "14", @@ -112572,7 +112670,7 @@ } }, { - "id": 5310, + "id": 5319, "properties": { "attached": "false", "rotation": "14", @@ -112580,7 +112678,7 @@ } }, { - "id": 5311, + "id": 5320, "properties": { "attached": "false", "rotation": "15", @@ -112588,7 +112686,7 @@ } }, { - "id": 5312, + "id": 5321, "properties": { "attached": "false", "rotation": "15", @@ -112599,7 +112697,8 @@ }, "minecraft:jungle_leaves": { "definition": { - "type": "minecraft:leaves", + "type": "minecraft:tinted_particle_leaves", + "leaf_particle_chance": 0.01, "properties": {} }, "properties": { @@ -112909,14 +113008,14 @@ }, "states": [ { - "id": 5889, + "id": 5898, "properties": { "powered": "true" } }, { "default": true, - "id": 5890, + "id": 5899, "properties": { "powered": "false" } @@ -112983,7 +113082,7 @@ }, "states": [ { - "id": 4517, + "id": 4526, "properties": { "rotation": "0", "waterlogged": "true" @@ -112991,217 +113090,217 @@ }, { "default": true, - "id": 4518, + "id": 4527, "properties": { "rotation": "0", "waterlogged": "false" } }, - { - "id": 4519, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4520, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4521, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4522, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4523, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4524, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4525, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4526, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4527, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 4528, "properties": { - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 4529, "properties": { - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 4530, "properties": { - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 4531, "properties": { - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 4532, "properties": { - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 4533, "properties": { - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 4534, "properties": { - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 4535, "properties": { - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 4536, "properties": { - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 4537, "properties": { - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 4538, "properties": { - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 4539, "properties": { - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 4540, "properties": { - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 4541, "properties": { - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 4542, "properties": { - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 4543, "properties": { - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 4544, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4545, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4546, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4547, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4548, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4549, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4550, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4551, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4552, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4553, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 4545, + "id": 4554, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 4546, + "id": 4555, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 4547, + "id": 4556, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 4548, + "id": 4557, "properties": { "rotation": "15", "waterlogged": "false" @@ -113227,21 +113326,21 @@ }, "states": [ { - "id": 12059, + "id": 12069, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12060, + "id": 12070, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12061, + "id": 12071, "properties": { "type": "bottom", "waterlogged": "true" @@ -113249,21 +113348,21 @@ }, { "default": true, - "id": 12062, + "id": 12072, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12063, + "id": 12073, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12064, + "id": 12074, "properties": { "type": "double", "waterlogged": "false" @@ -113303,98 +113402,98 @@ ] }, "states": [ - { - "id": 8600, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 8601, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 8602, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 8603, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 8604, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 8605, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 8606, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 8607, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 8608, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 8609, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 8610, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8611, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8612, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8613, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8614, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8615, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8616, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8617, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8618, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8619, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8620, "properties": { "facing": "north", "half": "bottom", @@ -113404,100 +113503,10 @@ }, { "default": true, - "id": 8611, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 8612, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 8613, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 8614, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 8615, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 8616, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 8617, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 8618, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 8619, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 8620, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 8621, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -113505,8 +113514,8 @@ { "id": 8622, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -113514,8 +113523,8 @@ { "id": 8623, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -113523,8 +113532,8 @@ { "id": 8624, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -113532,8 +113541,8 @@ { "id": 8625, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -113541,8 +113550,8 @@ { "id": 8626, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -113550,8 +113559,8 @@ { "id": 8627, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -113559,8 +113568,8 @@ { "id": 8628, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -113568,8 +113577,8 @@ { "id": 8629, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -113578,7 +113587,7 @@ "id": 8630, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -113587,7 +113596,7 @@ "id": 8631, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -113596,7 +113605,7 @@ "id": 8632, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -113605,7 +113614,7 @@ "id": 8633, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -113614,7 +113623,7 @@ "id": 8634, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -113623,7 +113632,7 @@ "id": 8635, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -113632,7 +113641,7 @@ "id": 8636, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -113641,7 +113650,7 @@ "id": 8637, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -113650,7 +113659,7 @@ "id": 8638, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -113659,7 +113668,7 @@ "id": 8639, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -113667,8 +113676,8 @@ { "id": 8640, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -113676,8 +113685,8 @@ { "id": 8641, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -113685,8 +113694,8 @@ { "id": 8642, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -113694,8 +113703,8 @@ { "id": 8643, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -113703,8 +113712,8 @@ { "id": 8644, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -113712,8 +113721,8 @@ { "id": 8645, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -113721,8 +113730,8 @@ { "id": 8646, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -113730,8 +113739,8 @@ { "id": 8647, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -113739,8 +113748,8 @@ { "id": 8648, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -113748,8 +113757,8 @@ { "id": 8649, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -113758,7 +113767,7 @@ "id": 8650, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -113767,7 +113776,7 @@ "id": 8651, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -113776,7 +113785,7 @@ "id": 8652, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -113785,7 +113794,7 @@ "id": 8653, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -113794,7 +113803,7 @@ "id": 8654, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -113803,7 +113812,7 @@ "id": 8655, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -113812,7 +113821,7 @@ "id": 8656, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -113821,7 +113830,7 @@ "id": 8657, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -113830,7 +113839,7 @@ "id": 8658, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -113839,7 +113848,7 @@ "id": 8659, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -113847,8 +113856,8 @@ { "id": 8660, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -113856,8 +113865,8 @@ { "id": 8661, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -113865,8 +113874,8 @@ { "id": 8662, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -113874,8 +113883,8 @@ { "id": 8663, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -113883,8 +113892,8 @@ { "id": 8664, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -113892,8 +113901,8 @@ { "id": 8665, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -113901,8 +113910,8 @@ { "id": 8666, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -113910,8 +113919,8 @@ { "id": 8667, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -113919,8 +113928,8 @@ { "id": 8668, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -113928,8 +113937,8 @@ { "id": 8669, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -113938,7 +113947,7 @@ "id": 8670, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -113947,7 +113956,7 @@ "id": 8671, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -113956,7 +113965,7 @@ "id": 8672, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -113965,7 +113974,7 @@ "id": 8673, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -113974,7 +113983,7 @@ "id": 8674, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -113983,7 +113992,7 @@ "id": 8675, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -113992,7 +114001,7 @@ "id": 8676, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -114001,7 +114010,7 @@ "id": 8677, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -114010,13 +114019,103 @@ "id": 8678, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 8679, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8680, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8681, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8682, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8683, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8684, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8685, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8686, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8687, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8688, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8689, "properties": { "facing": "east", "half": "bottom", @@ -114057,118 +114156,118 @@ ] }, "states": [ - { - "id": 6322, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6323, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6324, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6325, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6326, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6327, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6328, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6329, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6330, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6331, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6332, "properties": { "facing": "north", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, { "id": 6333, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6334, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6335, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6336, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6337, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6338, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6339, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6340, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6341, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6342, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6343, "properties": { "facing": "north", "half": "bottom", @@ -114178,7 +114277,7 @@ } }, { - "id": 6334, + "id": 6344, "properties": { "facing": "north", "half": "bottom", @@ -114188,7 +114287,7 @@ } }, { - "id": 6335, + "id": 6345, "properties": { "facing": "north", "half": "bottom", @@ -114198,7 +114297,7 @@ } }, { - "id": 6336, + "id": 6346, "properties": { "facing": "north", "half": "bottom", @@ -114209,7 +114308,7 @@ }, { "default": true, - "id": 6337, + "id": 6347, "properties": { "facing": "north", "half": "bottom", @@ -114218,113 +114317,13 @@ "waterlogged": "false" } }, - { - "id": 6338, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6339, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6340, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6341, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6342, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6343, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6344, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6345, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6346, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6347, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6348, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -114332,9 +114331,9 @@ "id": 6349, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -114342,9 +114341,9 @@ "id": 6350, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -114352,14 +114351,114 @@ "id": 6351, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6352, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6353, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6354, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6355, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6356, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6357, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6358, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6359, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6360, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6361, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6362, "properties": { "facing": "south", "half": "bottom", @@ -114369,7 +114468,7 @@ } }, { - "id": 6353, + "id": 6363, "properties": { "facing": "south", "half": "bottom", @@ -114378,113 +114477,13 @@ "waterlogged": "false" } }, - { - "id": 6354, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6355, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6356, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6357, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6358, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6359, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6360, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6361, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6362, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6363, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6364, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -114492,9 +114491,9 @@ "id": 6365, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -114502,9 +114501,9 @@ "id": 6366, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -114512,14 +114511,114 @@ "id": 6367, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6368, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6369, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6370, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6371, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6372, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6373, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6374, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6375, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6376, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6377, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6378, "properties": { "facing": "west", "half": "bottom", @@ -114529,7 +114628,7 @@ } }, { - "id": 6369, + "id": 6379, "properties": { "facing": "west", "half": "bottom", @@ -114538,113 +114637,13 @@ "waterlogged": "false" } }, - { - "id": 6370, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6371, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6372, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6373, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6374, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6375, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6376, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6377, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6378, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6379, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6380, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -114652,14 +114651,114 @@ "id": 6381, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, { "id": 6382, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6383, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6384, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6385, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6386, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6387, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6388, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6389, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6390, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6391, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6392, "properties": { "facing": "east", "half": "bottom", @@ -114669,7 +114768,7 @@ } }, { - "id": 6383, + "id": 6393, "properties": { "facing": "east", "half": "bottom", @@ -114679,7 +114778,7 @@ } }, { - "id": 6384, + "id": 6394, "properties": { "facing": "east", "half": "bottom", @@ -114689,7 +114788,7 @@ } }, { - "id": 6385, + "id": 6395, "properties": { "facing": "east", "half": "bottom", @@ -114720,7 +114819,7 @@ }, "states": [ { - "id": 5737, + "id": 5746, "properties": { "facing": "north", "waterlogged": "true" @@ -114728,49 +114827,49 @@ }, { "default": true, - "id": 5738, + "id": 5747, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5739, + "id": 5748, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5740, + "id": 5749, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5741, + "id": 5750, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5742, + "id": 5751, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5743, + "id": 5752, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5744, + "id": 5753, "properties": { "facing": "east", "waterlogged": "false" @@ -114798,7 +114897,7 @@ }, "states": [ { - "id": 4889, + "id": 4898, "properties": { "facing": "north", "waterlogged": "true" @@ -114806,49 +114905,49 @@ }, { "default": true, - "id": 4890, + "id": 4899, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 4891, + "id": 4900, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 4892, + "id": 4901, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 4893, + "id": 4902, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 4894, + "id": 4903, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 4895, + "id": 4904, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4896, + "id": 4905, "properties": { "facing": "east", "waterlogged": "false" @@ -114928,157 +115027,157 @@ "states": [ { "default": true, - "id": 13773, + "id": 13783, "properties": { "age": "0" } }, { - "id": 13774, + "id": 13784, "properties": { "age": "1" } }, { - "id": 13775, + "id": 13785, "properties": { "age": "2" } }, { - "id": 13776, + "id": 13786, "properties": { "age": "3" } }, { - "id": 13777, + "id": 13787, "properties": { "age": "4" } }, { - "id": 13778, + "id": 13788, "properties": { "age": "5" } }, { - "id": 13779, + "id": 13789, "properties": { "age": "6" } }, { - "id": 13780, + "id": 13790, "properties": { "age": "7" } }, { - "id": 13781, + "id": 13791, "properties": { "age": "8" } }, { - "id": 13782, + "id": 13792, "properties": { "age": "9" } }, { - "id": 13783, + "id": 13793, "properties": { "age": "10" } }, { - "id": 13784, + "id": 13794, "properties": { "age": "11" } }, { - "id": 13785, + "id": 13795, "properties": { "age": "12" } }, { - "id": 13786, + "id": 13796, "properties": { "age": "13" } }, { - "id": 13787, + "id": 13797, "properties": { "age": "14" } }, { - "id": 13788, + "id": 13798, "properties": { "age": "15" } }, { - "id": 13789, + "id": 13799, "properties": { "age": "16" } }, { - "id": 13790, + "id": 13800, "properties": { "age": "17" } }, { - "id": 13791, + "id": 13801, "properties": { "age": "18" } }, { - "id": 13792, + "id": 13802, "properties": { "age": "19" } }, { - "id": 13793, + "id": 13803, "properties": { "age": "20" } }, { - "id": 13794, + "id": 13804, "properties": { "age": "21" } }, { - "id": 13795, + "id": 13805, "properties": { "age": "22" } }, { - "id": 13796, + "id": 13806, "properties": { "age": "23" } }, { - "id": 13797, + "id": 13807, "properties": { "age": "24" } }, { - "id": 13798, + "id": 13808, "properties": { "age": "25" } @@ -115093,7 +115192,7 @@ "states": [ { "default": true, - "id": 13799 + "id": 13809 } ] }, @@ -115116,7 +115215,7 @@ }, "states": [ { - "id": 4741, + "id": 4750, "properties": { "facing": "north", "waterlogged": "true" @@ -115124,49 +115223,49 @@ }, { "default": true, - "id": 4742, + "id": 4751, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 4743, + "id": 4752, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 4744, + "id": 4753, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 4745, + "id": 4754, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 4746, + "id": 4755, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 4747, + "id": 4756, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4748, + "id": 4757, "properties": { "facing": "east", "waterlogged": "false" @@ -115191,21 +115290,21 @@ }, "states": [ { - "id": 19516, + "id": 19526, "properties": { "hanging": "true", "waterlogged": "true" } }, { - "id": 19517, + "id": 19527, "properties": { "hanging": "true", "waterlogged": "false" } }, { - "id": 19518, + "id": 19528, "properties": { "hanging": "false", "waterlogged": "true" @@ -115213,7 +115312,7 @@ }, { "default": true, - "id": 19519, + "id": 19529, "properties": { "hanging": "false", "waterlogged": "false" @@ -115253,9 +115352,9 @@ "minecraft:large_amethyst_bud": { "definition": { "type": "minecraft:amethyst_cluster", - "aabb_offset": 3.0, "height": 5.0, - "properties": {} + "properties": {}, + "width": 10.0 }, "properties": { "facing": [ @@ -115273,63 +115372,63 @@ }, "states": [ { - "id": 22058, + "id": 22073, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 22059, + "id": 22074, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 22060, + "id": 22075, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 22061, + "id": 22076, "properties": { "facing": "east", "waterlogged": "false" } }, { - "id": 22062, + "id": 22077, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 22063, + "id": 22078, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 22064, + "id": 22079, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 22065, + "id": 22080, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 22066, + "id": 22081, "properties": { "facing": "up", "waterlogged": "true" @@ -115337,21 +115436,21 @@ }, { "default": true, - "id": 22067, + "id": 22082, "properties": { "facing": "up", "waterlogged": "false" } }, { - "id": 22068, + "id": 22083, "properties": { "facing": "down", "waterlogged": "true" } }, { - "id": 22069, + "id": 22084, "properties": { "facing": "down", "waterlogged": "false" @@ -115372,14 +115471,14 @@ }, "states": [ { - "id": 11636, + "id": 11646, "properties": { "half": "upper" } }, { "default": true, - "id": 11637, + "id": 11647, "properties": { "half": "lower" } @@ -115520,7 +115619,142 @@ "states": [ { "default": true, - "id": 8176 + "id": 8186 + } + ] + }, + "minecraft:leaf_litter": { + "definition": { + "type": "minecraft:leaf_litter", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "segment_amount": [ + "1", + "2", + "3", + "4" + ] + }, + "states": [ + { + "default": true, + "id": 25887, + "properties": { + "facing": "north", + "segment_amount": "1" + } + }, + { + "id": 25888, + "properties": { + "facing": "north", + "segment_amount": "2" + } + }, + { + "id": 25889, + "properties": { + "facing": "north", + "segment_amount": "3" + } + }, + { + "id": 25890, + "properties": { + "facing": "north", + "segment_amount": "4" + } + }, + { + "id": 25891, + "properties": { + "facing": "south", + "segment_amount": "1" + } + }, + { + "id": 25892, + "properties": { + "facing": "south", + "segment_amount": "2" + } + }, + { + "id": 25893, + "properties": { + "facing": "south", + "segment_amount": "3" + } + }, + { + "id": 25894, + "properties": { + "facing": "south", + "segment_amount": "4" + } + }, + { + "id": 25895, + "properties": { + "facing": "west", + "segment_amount": "1" + } + }, + { + "id": 25896, + "properties": { + "facing": "west", + "segment_amount": "2" + } + }, + { + "id": 25897, + "properties": { + "facing": "west", + "segment_amount": "3" + } + }, + { + "id": 25898, + "properties": { + "facing": "west", + "segment_amount": "4" + } + }, + { + "id": 25899, + "properties": { + "facing": "east", + "segment_amount": "1" + } + }, + { + "id": 25900, + "properties": { + "facing": "east", + "segment_amount": "2" + } + }, + { + "id": 25901, + "properties": { + "facing": "east", + "segment_amount": "3" + } + }, + { + "id": 25902, + "properties": { + "facing": "east", + "segment_amount": "4" + } } ] }, @@ -115547,7 +115781,7 @@ }, "states": [ { - "id": 19463, + "id": 19473, "properties": { "facing": "north", "has_book": "true", @@ -115555,7 +115789,7 @@ } }, { - "id": 19464, + "id": 19474, "properties": { "facing": "north", "has_book": "true", @@ -115563,7 +115797,7 @@ } }, { - "id": 19465, + "id": 19475, "properties": { "facing": "north", "has_book": "false", @@ -115572,103 +115806,103 @@ }, { "default": true, - "id": 19466, + "id": 19476, "properties": { "facing": "north", "has_book": "false", "powered": "false" } }, - { - "id": 19467, - "properties": { - "facing": "south", - "has_book": "true", - "powered": "true" - } - }, - { - "id": 19468, - "properties": { - "facing": "south", - "has_book": "true", - "powered": "false" - } - }, - { - "id": 19469, - "properties": { - "facing": "south", - "has_book": "false", - "powered": "true" - } - }, - { - "id": 19470, - "properties": { - "facing": "south", - "has_book": "false", - "powered": "false" - } - }, - { - "id": 19471, - "properties": { - "facing": "west", - "has_book": "true", - "powered": "true" - } - }, - { - "id": 19472, - "properties": { - "facing": "west", - "has_book": "true", - "powered": "false" - } - }, - { - "id": 19473, - "properties": { - "facing": "west", - "has_book": "false", - "powered": "true" - } - }, - { - "id": 19474, - "properties": { - "facing": "west", - "has_book": "false", - "powered": "false" - } - }, - { - "id": 19475, - "properties": { - "facing": "east", - "has_book": "true", - "powered": "true" - } - }, - { - "id": 19476, - "properties": { - "facing": "east", - "has_book": "true", - "powered": "false" - } - }, { "id": 19477, "properties": { - "facing": "east", - "has_book": "false", + "facing": "south", + "has_book": "true", "powered": "true" } }, { "id": 19478, + "properties": { + "facing": "south", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 19479, + "properties": { + "facing": "south", + "has_book": "false", + "powered": "true" + } + }, + { + "id": 19480, + "properties": { + "facing": "south", + "has_book": "false", + "powered": "false" + } + }, + { + "id": 19481, + "properties": { + "facing": "west", + "has_book": "true", + "powered": "true" + } + }, + { + "id": 19482, + "properties": { + "facing": "west", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 19483, + "properties": { + "facing": "west", + "has_book": "false", + "powered": "true" + } + }, + { + "id": 19484, + "properties": { + "facing": "west", + "has_book": "false", + "powered": "false" + } + }, + { + "id": 19485, + "properties": { + "facing": "east", + "has_book": "true", + "powered": "true" + } + }, + { + "id": 19486, + "properties": { + "facing": "east", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 19487, + "properties": { + "facing": "east", + "has_book": "false", + "powered": "true" + } + }, + { + "id": 19488, "properties": { "facing": "east", "has_book": "false", @@ -115701,7 +115935,7 @@ }, "states": [ { - "id": 5793, + "id": 5802, "properties": { "face": "floor", "facing": "north", @@ -115709,7 +115943,7 @@ } }, { - "id": 5794, + "id": 5803, "properties": { "face": "floor", "facing": "north", @@ -115717,7 +115951,7 @@ } }, { - "id": 5795, + "id": 5804, "properties": { "face": "floor", "facing": "south", @@ -115725,7 +115959,7 @@ } }, { - "id": 5796, + "id": 5805, "properties": { "face": "floor", "facing": "south", @@ -115733,7 +115967,7 @@ } }, { - "id": 5797, + "id": 5806, "properties": { "face": "floor", "facing": "west", @@ -115741,7 +115975,7 @@ } }, { - "id": 5798, + "id": 5807, "properties": { "face": "floor", "facing": "west", @@ -115749,7 +115983,7 @@ } }, { - "id": 5799, + "id": 5808, "properties": { "face": "floor", "facing": "east", @@ -115757,7 +115991,7 @@ } }, { - "id": 5800, + "id": 5809, "properties": { "face": "floor", "facing": "east", @@ -115765,7 +115999,7 @@ } }, { - "id": 5801, + "id": 5810, "properties": { "face": "wall", "facing": "north", @@ -115774,87 +116008,87 @@ }, { "default": true, - "id": 5802, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 5803, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 5804, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 5805, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 5806, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 5807, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 5808, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 5809, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 5810, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { "id": 5811, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" + "face": "wall", + "facing": "north", + "powered": "false" } }, { "id": 5812, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5813, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5814, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5815, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5816, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5817, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 5818, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 5819, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5820, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5821, "properties": { "face": "ceiling", "facing": "south", @@ -115862,7 +116096,7 @@ } }, { - "id": 5813, + "id": 5822, "properties": { "face": "ceiling", "facing": "west", @@ -115870,7 +116104,7 @@ } }, { - "id": 5814, + "id": 5823, "properties": { "face": "ceiling", "facing": "west", @@ -115878,7 +116112,7 @@ } }, { - "id": 5815, + "id": 5824, "properties": { "face": "ceiling", "facing": "east", @@ -115886,7 +116120,7 @@ } }, { - "id": 5816, + "id": 5825, "properties": { "face": "ceiling", "facing": "east", @@ -115925,218 +116159,218 @@ ] }, "states": [ - { - "id": 11246, - "properties": { - "level": "0", - "waterlogged": "true" - } - }, - { - "id": 11247, - "properties": { - "level": "0", - "waterlogged": "false" - } - }, - { - "id": 11248, - "properties": { - "level": "1", - "waterlogged": "true" - } - }, - { - "id": 11249, - "properties": { - "level": "1", - "waterlogged": "false" - } - }, - { - "id": 11250, - "properties": { - "level": "2", - "waterlogged": "true" - } - }, - { - "id": 11251, - "properties": { - "level": "2", - "waterlogged": "false" - } - }, - { - "id": 11252, - "properties": { - "level": "3", - "waterlogged": "true" - } - }, - { - "id": 11253, - "properties": { - "level": "3", - "waterlogged": "false" - } - }, - { - "id": 11254, - "properties": { - "level": "4", - "waterlogged": "true" - } - }, - { - "id": 11255, - "properties": { - "level": "4", - "waterlogged": "false" - } - }, { "id": 11256, "properties": { - "level": "5", + "level": "0", "waterlogged": "true" } }, { "id": 11257, "properties": { - "level": "5", + "level": "0", "waterlogged": "false" } }, { "id": 11258, "properties": { - "level": "6", + "level": "1", "waterlogged": "true" } }, { "id": 11259, "properties": { - "level": "6", + "level": "1", "waterlogged": "false" } }, { "id": 11260, "properties": { - "level": "7", + "level": "2", "waterlogged": "true" } }, { "id": 11261, "properties": { - "level": "7", + "level": "2", "waterlogged": "false" } }, { "id": 11262, "properties": { - "level": "8", + "level": "3", "waterlogged": "true" } }, { "id": 11263, "properties": { - "level": "8", + "level": "3", "waterlogged": "false" } }, { "id": 11264, "properties": { - "level": "9", + "level": "4", "waterlogged": "true" } }, { "id": 11265, "properties": { - "level": "9", + "level": "4", "waterlogged": "false" } }, { "id": 11266, "properties": { - "level": "10", + "level": "5", "waterlogged": "true" } }, { "id": 11267, "properties": { - "level": "10", + "level": "5", "waterlogged": "false" } }, { "id": 11268, "properties": { - "level": "11", + "level": "6", "waterlogged": "true" } }, { "id": 11269, "properties": { - "level": "11", + "level": "6", "waterlogged": "false" } }, { "id": 11270, "properties": { - "level": "12", + "level": "7", "waterlogged": "true" } }, { "id": 11271, "properties": { - "level": "12", + "level": "7", "waterlogged": "false" } }, { "id": 11272, "properties": { - "level": "13", + "level": "8", "waterlogged": "true" } }, { "id": 11273, "properties": { - "level": "13", + "level": "8", "waterlogged": "false" } }, { "id": 11274, "properties": { - "level": "14", + "level": "9", "waterlogged": "true" } }, { "id": 11275, "properties": { - "level": "14", + "level": "9", "waterlogged": "false" } }, { "id": 11276, + "properties": { + "level": "10", + "waterlogged": "true" + } + }, + { + "id": 11277, + "properties": { + "level": "10", + "waterlogged": "false" + } + }, + { + "id": 11278, + "properties": { + "level": "11", + "waterlogged": "true" + } + }, + { + "id": 11279, + "properties": { + "level": "11", + "waterlogged": "false" + } + }, + { + "id": 11280, + "properties": { + "level": "12", + "waterlogged": "true" + } + }, + { + "id": 11281, + "properties": { + "level": "12", + "waterlogged": "false" + } + }, + { + "id": 11282, + "properties": { + "level": "13", + "waterlogged": "true" + } + }, + { + "id": 11283, + "properties": { + "level": "13", + "waterlogged": "false" + } + }, + { + "id": 11284, + "properties": { + "level": "14", + "waterlogged": "true" + } + }, + { + "id": 11285, + "properties": { + "level": "14", + "waterlogged": "false" + } + }, + { + "id": 11286, "properties": { "level": "15", "waterlogged": "true" @@ -116144,7 +116378,7 @@ }, { "default": true, - "id": 11277, + "id": 11287, "properties": { "level": "15", "waterlogged": "false" @@ -116181,97 +116415,97 @@ "states": [ { "default": true, - "id": 11686, + "id": 11696, "properties": { "rotation": "0" } }, { - "id": 11687, + "id": 11697, "properties": { "rotation": "1" } }, { - "id": 11688, + "id": 11698, "properties": { "rotation": "2" } }, { - "id": 11689, + "id": 11699, "properties": { "rotation": "3" } }, { - "id": 11690, + "id": 11700, "properties": { "rotation": "4" } }, { - "id": 11691, + "id": 11701, "properties": { "rotation": "5" } }, { - "id": 11692, + "id": 11702, "properties": { "rotation": "6" } }, { - "id": 11693, + "id": 11703, "properties": { "rotation": "7" } }, { - "id": 11694, + "id": 11704, "properties": { "rotation": "8" } }, { - "id": 11695, + "id": 11705, "properties": { "rotation": "9" } }, { - "id": 11696, + "id": 11706, "properties": { "rotation": "10" } }, { - "id": 11697, + "id": 11707, "properties": { "rotation": "11" } }, { - "id": 11698, + "id": 11708, "properties": { "rotation": "12" } }, { - "id": 11699, + "id": 11709, "properties": { "rotation": "13" } }, { - "id": 11700, + "id": 11710, "properties": { "rotation": "14" } }, { - "id": 11701, + "id": 11711, "properties": { "rotation": "15" } @@ -116455,7 +116689,7 @@ }, "states": [ { - "id": 21802, + "id": 21817, "properties": { "candles": "1", "lit": "true", @@ -116463,7 +116697,7 @@ } }, { - "id": 21803, + "id": 21818, "properties": { "candles": "1", "lit": "true", @@ -116471,7 +116705,7 @@ } }, { - "id": 21804, + "id": 21819, "properties": { "candles": "1", "lit": "false", @@ -116480,7 +116714,7 @@ }, { "default": true, - "id": 21805, + "id": 21820, "properties": { "candles": "1", "lit": "false", @@ -116488,7 +116722,7 @@ } }, { - "id": 21806, + "id": 21821, "properties": { "candles": "2", "lit": "true", @@ -116496,7 +116730,7 @@ } }, { - "id": 21807, + "id": 21822, "properties": { "candles": "2", "lit": "true", @@ -116504,7 +116738,7 @@ } }, { - "id": 21808, + "id": 21823, "properties": { "candles": "2", "lit": "false", @@ -116512,7 +116746,7 @@ } }, { - "id": 21809, + "id": 21824, "properties": { "candles": "2", "lit": "false", @@ -116520,7 +116754,7 @@ } }, { - "id": 21810, + "id": 21825, "properties": { "candles": "3", "lit": "true", @@ -116528,7 +116762,7 @@ } }, { - "id": 21811, + "id": 21826, "properties": { "candles": "3", "lit": "true", @@ -116536,7 +116770,7 @@ } }, { - "id": 21812, + "id": 21827, "properties": { "candles": "3", "lit": "false", @@ -116544,7 +116778,7 @@ } }, { - "id": 21813, + "id": 21828, "properties": { "candles": "3", "lit": "false", @@ -116552,7 +116786,7 @@ } }, { - "id": 21814, + "id": 21829, "properties": { "candles": "4", "lit": "true", @@ -116560,7 +116794,7 @@ } }, { - "id": 21815, + "id": 21830, "properties": { "candles": "4", "lit": "true", @@ -116568,7 +116802,7 @@ } }, { - "id": 21816, + "id": 21831, "properties": { "candles": "4", "lit": "false", @@ -116576,7 +116810,7 @@ } }, { - "id": 21817, + "id": 21832, "properties": { "candles": "4", "lit": "false", @@ -116599,14 +116833,14 @@ }, "states": [ { - "id": 22018, + "id": 22033, "properties": { "lit": "true" } }, { "default": true, - "id": 22019, + "id": 22034, "properties": { "lit": "false" } @@ -116622,7 +116856,7 @@ "states": [ { "default": true, - "id": 11610 + "id": 11620 } ] }, @@ -116634,7 +116868,7 @@ "states": [ { "default": true, - "id": 13744 + "id": 13754 } ] }, @@ -116647,7 +116881,7 @@ "states": [ { "default": true, - "id": 13760 + "id": 13770 } ] }, @@ -116667,25 +116901,25 @@ "states": [ { "default": true, - "id": 13689, + "id": 13699, "properties": { "facing": "north" } }, { - "id": 13690, + "id": 13700, "properties": { "facing": "south" } }, { - "id": 13691, + "id": 13701, "properties": { "facing": "west" } }, { - "id": 13692, + "id": 13702, "properties": { "facing": "east" } @@ -116710,38 +116944,38 @@ }, "states": [ { - "id": 13599, + "id": 13609, "properties": { "facing": "north" } }, { - "id": 13600, + "id": 13610, "properties": { "facing": "east" } }, { - "id": 13601, + "id": 13611, "properties": { "facing": "south" } }, { - "id": 13602, + "id": 13612, "properties": { "facing": "west" } }, { "default": true, - "id": 13603, + "id": 13613, "properties": { "facing": "up" } }, { - "id": 13604, + "id": 13614, "properties": { "facing": "down" } @@ -116757,7 +116991,7 @@ "states": [ { "default": true, - "id": 6117 + "id": 6127 } ] }, @@ -116790,113 +117024,13 @@ ] }, "states": [ - { - "id": 10267, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10268, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10269, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10270, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10271, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10272, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10273, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10274, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10275, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10276, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10277, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -116904,9 +117038,9 @@ "id": 10278, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -116914,9 +117048,9 @@ "id": 10279, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -116924,14 +117058,114 @@ "id": 10280, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 10281, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10282, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10283, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10284, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10285, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10286, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10287, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10288, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10289, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10290, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10291, "properties": { "east": "true", "north": "false", @@ -116941,7 +117175,7 @@ } }, { - "id": 10282, + "id": 10292, "properties": { "east": "true", "north": "false", @@ -116950,118 +117184,118 @@ "west": "false" } }, - { - "id": 10283, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10284, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10285, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10286, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10287, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10288, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10289, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10290, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10291, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10292, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10293, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 10294, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10295, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10296, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10297, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10298, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10299, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10300, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10301, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10302, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10303, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10304, "properties": { "east": "false", "north": "false", @@ -117071,7 +117305,7 @@ } }, { - "id": 10295, + "id": 10305, "properties": { "east": "false", "north": "false", @@ -117081,7 +117315,7 @@ } }, { - "id": 10296, + "id": 10306, "properties": { "east": "false", "north": "false", @@ -117091,7 +117325,7 @@ } }, { - "id": 10297, + "id": 10307, "properties": { "east": "false", "north": "false", @@ -117102,7 +117336,7 @@ }, { "default": true, - "id": 10298, + "id": 10308, "properties": { "east": "false", "north": "false", @@ -117115,13 +117349,13 @@ }, "minecraft:light_blue_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 10158 + "id": 10168 } ] }, @@ -117142,25 +117376,25 @@ "states": [ { "default": true, - "id": 11906, + "id": 11916, "properties": { "facing": "north" } }, { - "id": 11907, + "id": 11917, "properties": { "facing": "south" } }, { - "id": 11908, + "id": 11918, "properties": { "facing": "west" } }, { - "id": 11909, + "id": 11919, "properties": { "facing": "east" } @@ -117175,7 +117409,7 @@ "states": [ { "default": true, - "id": 2093 + "id": 2096 } ] }, @@ -117208,97 +117442,97 @@ "states": [ { "default": true, - "id": 11766, + "id": 11776, "properties": { "rotation": "0" } }, { - "id": 11767, + "id": 11777, "properties": { "rotation": "1" } }, { - "id": 11768, + "id": 11778, "properties": { "rotation": "2" } }, { - "id": 11769, + "id": 11779, "properties": { "rotation": "3" } }, { - "id": 11770, + "id": 11780, "properties": { "rotation": "4" } }, { - "id": 11771, + "id": 11781, "properties": { "rotation": "5" } }, { - "id": 11772, + "id": 11782, "properties": { "rotation": "6" } }, { - "id": 11773, + "id": 11783, "properties": { "rotation": "7" } }, { - "id": 11774, + "id": 11784, "properties": { "rotation": "8" } }, { - "id": 11775, + "id": 11785, "properties": { "rotation": "9" } }, { - "id": 11776, + "id": 11786, "properties": { "rotation": "10" } }, { - "id": 11777, + "id": 11787, "properties": { "rotation": "11" } }, { - "id": 11778, + "id": 11788, "properties": { "rotation": "12" } }, { - "id": 11779, + "id": 11789, "properties": { "rotation": "13" } }, { - "id": 11780, + "id": 11790, "properties": { "rotation": "14" } }, { - "id": 11781, + "id": 11791, "properties": { "rotation": "15" } @@ -117482,7 +117716,7 @@ }, "states": [ { - "id": 21882, + "id": 21897, "properties": { "candles": "1", "lit": "true", @@ -117490,7 +117724,7 @@ } }, { - "id": 21883, + "id": 21898, "properties": { "candles": "1", "lit": "true", @@ -117498,7 +117732,7 @@ } }, { - "id": 21884, + "id": 21899, "properties": { "candles": "1", "lit": "false", @@ -117507,7 +117741,7 @@ }, { "default": true, - "id": 21885, + "id": 21900, "properties": { "candles": "1", "lit": "false", @@ -117515,7 +117749,7 @@ } }, { - "id": 21886, + "id": 21901, "properties": { "candles": "2", "lit": "true", @@ -117523,7 +117757,7 @@ } }, { - "id": 21887, + "id": 21902, "properties": { "candles": "2", "lit": "true", @@ -117531,7 +117765,7 @@ } }, { - "id": 21888, + "id": 21903, "properties": { "candles": "2", "lit": "false", @@ -117539,7 +117773,7 @@ } }, { - "id": 21889, + "id": 21904, "properties": { "candles": "2", "lit": "false", @@ -117547,7 +117781,7 @@ } }, { - "id": 21890, + "id": 21905, "properties": { "candles": "3", "lit": "true", @@ -117555,7 +117789,7 @@ } }, { - "id": 21891, + "id": 21906, "properties": { "candles": "3", "lit": "true", @@ -117563,7 +117797,7 @@ } }, { - "id": 21892, + "id": 21907, "properties": { "candles": "3", "lit": "false", @@ -117571,7 +117805,7 @@ } }, { - "id": 21893, + "id": 21908, "properties": { "candles": "3", "lit": "false", @@ -117579,7 +117813,7 @@ } }, { - "id": 21894, + "id": 21909, "properties": { "candles": "4", "lit": "true", @@ -117587,7 +117821,7 @@ } }, { - "id": 21895, + "id": 21910, "properties": { "candles": "4", "lit": "true", @@ -117595,7 +117829,7 @@ } }, { - "id": 21896, + "id": 21911, "properties": { "candles": "4", "lit": "false", @@ -117603,7 +117837,7 @@ } }, { - "id": 21897, + "id": 21912, "properties": { "candles": "4", "lit": "false", @@ -117626,14 +117860,14 @@ }, "states": [ { - "id": 22028, + "id": 22043, "properties": { "lit": "true" } }, { "default": true, - "id": 22029, + "id": 22044, "properties": { "lit": "false" } @@ -117649,7 +117883,7 @@ "states": [ { "default": true, - "id": 11615 + "id": 11625 } ] }, @@ -117661,7 +117895,7 @@ "states": [ { "default": true, - "id": 13749 + "id": 13759 } ] }, @@ -117674,7 +117908,7 @@ "states": [ { "default": true, - "id": 13765 + "id": 13775 } ] }, @@ -117694,25 +117928,25 @@ "states": [ { "default": true, - "id": 13709, + "id": 13719, "properties": { "facing": "north" } }, { - "id": 13710, + "id": 13720, "properties": { "facing": "south" } }, { - "id": 13711, + "id": 13721, "properties": { "facing": "west" } }, { - "id": 13712, + "id": 13722, "properties": { "facing": "east" } @@ -117737,38 +117971,38 @@ }, "states": [ { - "id": 13629, + "id": 13639, "properties": { "facing": "north" } }, { - "id": 13630, + "id": 13640, "properties": { "facing": "east" } }, { - "id": 13631, + "id": 13641, "properties": { "facing": "south" } }, { - "id": 13632, + "id": 13642, "properties": { "facing": "west" } }, { "default": true, - "id": 13633, + "id": 13643, "properties": { "facing": "up" } }, { - "id": 13634, + "id": 13644, "properties": { "facing": "down" } @@ -117784,7 +118018,7 @@ "states": [ { "default": true, - "id": 6122 + "id": 6132 } ] }, @@ -117817,113 +118051,13 @@ ] }, "states": [ - { - "id": 10427, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10428, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10429, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10430, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10431, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10432, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10433, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10434, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10435, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10436, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10437, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -117931,9 +118065,9 @@ "id": 10438, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -117941,9 +118075,9 @@ "id": 10439, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -117951,14 +118085,114 @@ "id": 10440, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 10441, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10442, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10443, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10444, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10445, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10446, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10447, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10448, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10449, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10450, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10451, "properties": { "east": "true", "north": "false", @@ -117968,7 +118202,7 @@ } }, { - "id": 10442, + "id": 10452, "properties": { "east": "true", "north": "false", @@ -117977,118 +118211,118 @@ "west": "false" } }, - { - "id": 10443, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10444, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10445, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10446, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10447, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10448, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10449, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10450, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10451, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10452, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10453, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 10454, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10455, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10456, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10457, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10458, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10459, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10460, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10461, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10462, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10463, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10464, "properties": { "east": "false", "north": "false", @@ -118098,7 +118332,7 @@ } }, { - "id": 10455, + "id": 10465, "properties": { "east": "false", "north": "false", @@ -118108,7 +118342,7 @@ } }, { - "id": 10456, + "id": 10466, "properties": { "east": "false", "north": "false", @@ -118118,7 +118352,7 @@ } }, { - "id": 10457, + "id": 10467, "properties": { "east": "false", "north": "false", @@ -118129,7 +118363,7 @@ }, { "default": true, - "id": 10458, + "id": 10468, "properties": { "east": "false", "north": "false", @@ -118142,13 +118376,13 @@ }, "minecraft:light_gray_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 10163 + "id": 10173 } ] }, @@ -118169,25 +118403,25 @@ "states": [ { "default": true, - "id": 11926, + "id": 11936, "properties": { "facing": "north" } }, { - "id": 11927, + "id": 11937, "properties": { "facing": "south" } }, { - "id": 11928, + "id": 11938, "properties": { "facing": "west" } }, { - "id": 11929, + "id": 11939, "properties": { "facing": "east" } @@ -118202,7 +118436,7 @@ "states": [ { "default": true, - "id": 2098 + "id": 2101 } ] }, @@ -118236,97 +118470,97 @@ "states": [ { "default": true, - "id": 9942, + "id": 9952, "properties": { "power": "0" } }, { - "id": 9943, + "id": 9953, "properties": { "power": "1" } }, { - "id": 9944, + "id": 9954, "properties": { "power": "2" } }, { - "id": 9945, + "id": 9955, "properties": { "power": "3" } }, { - "id": 9946, + "id": 9956, "properties": { "power": "4" } }, { - "id": 9947, + "id": 9957, "properties": { "power": "5" } }, { - "id": 9948, + "id": 9958, "properties": { "power": "6" } }, { - "id": 9949, + "id": 9959, "properties": { "power": "7" } }, { - "id": 9950, + "id": 9960, "properties": { "power": "8" } }, { - "id": 9951, + "id": 9961, "properties": { "power": "9" } }, { - "id": 9952, + "id": 9962, "properties": { "power": "10" } }, { - "id": 9953, + "id": 9963, "properties": { "power": "11" } }, { - "id": 9954, + "id": 9964, "properties": { "power": "12" } }, { - "id": 9955, + "id": 9965, "properties": { "power": "13" } }, { - "id": 9956, + "id": 9966, "properties": { "power": "14" } }, { - "id": 9957, + "id": 9967, "properties": { "power": "15" } @@ -118357,136 +118591,136 @@ ] }, "states": [ - { - "id": 25737, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25738, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25739, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25740, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25741, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25742, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25743, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25744, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25745, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25746, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25747, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25748, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25749, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25750, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25751, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "true" - } - }, { "id": 25752, "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "false" + "facing": "north", + "powered": "true", + "waterlogged": "true" } }, { "id": 25753, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25754, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25755, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25756, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25757, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25758, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25759, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25760, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25761, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25762, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25763, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25764, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25765, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25766, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25767, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25768, "properties": { "facing": "up", "powered": "true", @@ -118494,7 +118728,7 @@ } }, { - "id": 25754, + "id": 25769, "properties": { "facing": "up", "powered": "true", @@ -118502,7 +118736,7 @@ } }, { - "id": 25755, + "id": 25770, "properties": { "facing": "up", "powered": "false", @@ -118511,7 +118745,7 @@ }, { "default": true, - "id": 25756, + "id": 25771, "properties": { "facing": "up", "powered": "false", @@ -118519,7 +118753,7 @@ } }, { - "id": 25757, + "id": 25772, "properties": { "facing": "down", "powered": "true", @@ -118527,7 +118761,7 @@ } }, { - "id": 25758, + "id": 25773, "properties": { "facing": "down", "powered": "true", @@ -118535,7 +118769,7 @@ } }, { - "id": 25759, + "id": 25774, "properties": { "facing": "down", "powered": "false", @@ -118543,7 +118777,7 @@ } }, { - "id": 25760, + "id": 25775, "properties": { "facing": "down", "powered": "false", @@ -118565,14 +118799,14 @@ }, "states": [ { - "id": 11628, + "id": 11638, "properties": { "half": "upper" } }, { "default": true, - "id": 11629, + "id": 11639, "properties": { "half": "lower" } @@ -118593,7 +118827,7 @@ "states": [ { "default": true, - "id": 2131 + "id": 2134 } ] }, @@ -118605,7 +118839,7 @@ "states": [ { "default": true, - "id": 7632 + "id": 7642 } ] }, @@ -118638,97 +118872,97 @@ "states": [ { "default": true, - "id": 11718, + "id": 11728, "properties": { "rotation": "0" } }, { - "id": 11719, + "id": 11729, "properties": { "rotation": "1" } }, { - "id": 11720, + "id": 11730, "properties": { "rotation": "2" } }, { - "id": 11721, + "id": 11731, "properties": { "rotation": "3" } }, { - "id": 11722, + "id": 11732, "properties": { "rotation": "4" } }, { - "id": 11723, + "id": 11733, "properties": { "rotation": "5" } }, { - "id": 11724, + "id": 11734, "properties": { "rotation": "6" } }, { - "id": 11725, + "id": 11735, "properties": { "rotation": "7" } }, { - "id": 11726, + "id": 11736, "properties": { "rotation": "8" } }, { - "id": 11727, + "id": 11737, "properties": { "rotation": "9" } }, { - "id": 11728, + "id": 11738, "properties": { "rotation": "10" } }, { - "id": 11729, + "id": 11739, "properties": { "rotation": "11" } }, { - "id": 11730, + "id": 11740, "properties": { "rotation": "12" } }, { - "id": 11731, + "id": 11741, "properties": { "rotation": "13" } }, { - "id": 11732, + "id": 11742, "properties": { "rotation": "14" } }, { - "id": 11733, + "id": 11743, "properties": { "rotation": "15" } @@ -118912,7 +119146,7 @@ }, "states": [ { - "id": 21834, + "id": 21849, "properties": { "candles": "1", "lit": "true", @@ -118920,7 +119154,7 @@ } }, { - "id": 21835, + "id": 21850, "properties": { "candles": "1", "lit": "true", @@ -118928,7 +119162,7 @@ } }, { - "id": 21836, + "id": 21851, "properties": { "candles": "1", "lit": "false", @@ -118937,7 +119171,7 @@ }, { "default": true, - "id": 21837, + "id": 21852, "properties": { "candles": "1", "lit": "false", @@ -118945,7 +119179,7 @@ } }, { - "id": 21838, + "id": 21853, "properties": { "candles": "2", "lit": "true", @@ -118953,7 +119187,7 @@ } }, { - "id": 21839, + "id": 21854, "properties": { "candles": "2", "lit": "true", @@ -118961,7 +119195,7 @@ } }, { - "id": 21840, + "id": 21855, "properties": { "candles": "2", "lit": "false", @@ -118969,7 +119203,7 @@ } }, { - "id": 21841, + "id": 21856, "properties": { "candles": "2", "lit": "false", @@ -118977,7 +119211,7 @@ } }, { - "id": 21842, + "id": 21857, "properties": { "candles": "3", "lit": "true", @@ -118985,7 +119219,7 @@ } }, { - "id": 21843, + "id": 21858, "properties": { "candles": "3", "lit": "true", @@ -118993,7 +119227,7 @@ } }, { - "id": 21844, + "id": 21859, "properties": { "candles": "3", "lit": "false", @@ -119001,7 +119235,7 @@ } }, { - "id": 21845, + "id": 21860, "properties": { "candles": "3", "lit": "false", @@ -119009,7 +119243,7 @@ } }, { - "id": 21846, + "id": 21861, "properties": { "candles": "4", "lit": "true", @@ -119017,7 +119251,7 @@ } }, { - "id": 21847, + "id": 21862, "properties": { "candles": "4", "lit": "true", @@ -119025,7 +119259,7 @@ } }, { - "id": 21848, + "id": 21863, "properties": { "candles": "4", "lit": "false", @@ -119033,7 +119267,7 @@ } }, { - "id": 21849, + "id": 21864, "properties": { "candles": "4", "lit": "false", @@ -119056,14 +119290,14 @@ }, "states": [ { - "id": 22022, + "id": 22037, "properties": { "lit": "true" } }, { "default": true, - "id": 22023, + "id": 22038, "properties": { "lit": "false" } @@ -119079,7 +119313,7 @@ "states": [ { "default": true, - "id": 11612 + "id": 11622 } ] }, @@ -119091,7 +119325,7 @@ "states": [ { "default": true, - "id": 13746 + "id": 13756 } ] }, @@ -119104,7 +119338,7 @@ "states": [ { "default": true, - "id": 13762 + "id": 13772 } ] }, @@ -119124,25 +119358,25 @@ "states": [ { "default": true, - "id": 13697, + "id": 13707, "properties": { "facing": "north" } }, { - "id": 13698, + "id": 13708, "properties": { "facing": "south" } }, { - "id": 13699, + "id": 13709, "properties": { "facing": "west" } }, { - "id": 13700, + "id": 13710, "properties": { "facing": "east" } @@ -119167,38 +119401,38 @@ }, "states": [ { - "id": 13611, + "id": 13621, "properties": { "facing": "north" } }, { - "id": 13612, + "id": 13622, "properties": { "facing": "east" } }, { - "id": 13613, + "id": 13623, "properties": { "facing": "south" } }, { - "id": 13614, + "id": 13624, "properties": { "facing": "west" } }, { "default": true, - "id": 13615, + "id": 13625, "properties": { "facing": "up" } }, { - "id": 13616, + "id": 13626, "properties": { "facing": "down" } @@ -119214,7 +119448,7 @@ "states": [ { "default": true, - "id": 6119 + "id": 6129 } ] }, @@ -119247,113 +119481,13 @@ ] }, "states": [ - { - "id": 10331, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10332, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10333, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10334, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10335, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10336, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10337, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10338, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10339, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10340, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10341, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -119361,9 +119495,9 @@ "id": 10342, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -119371,9 +119505,9 @@ "id": 10343, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -119381,14 +119515,114 @@ "id": 10344, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 10345, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10346, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10347, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10348, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10349, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10350, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10351, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10352, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10353, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10354, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10355, "properties": { "east": "true", "north": "false", @@ -119398,7 +119632,7 @@ } }, { - "id": 10346, + "id": 10356, "properties": { "east": "true", "north": "false", @@ -119407,118 +119641,118 @@ "west": "false" } }, - { - "id": 10347, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10348, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10349, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10350, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10351, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10352, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10353, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10354, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10355, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10356, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10357, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 10358, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10359, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10360, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10361, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10362, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10363, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10364, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10365, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10366, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10367, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10368, "properties": { "east": "false", "north": "false", @@ -119528,7 +119762,7 @@ } }, { - "id": 10359, + "id": 10369, "properties": { "east": "false", "north": "false", @@ -119538,7 +119772,7 @@ } }, { - "id": 10360, + "id": 10370, "properties": { "east": "false", "north": "false", @@ -119548,7 +119782,7 @@ } }, { - "id": 10361, + "id": 10371, "properties": { "east": "false", "north": "false", @@ -119559,7 +119793,7 @@ }, { "default": true, - "id": 10362, + "id": 10372, "properties": { "east": "false", "north": "false", @@ -119572,13 +119806,13 @@ }, "minecraft:lime_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 10160 + "id": 10170 } ] }, @@ -119599,25 +119833,25 @@ "states": [ { "default": true, - "id": 11914, + "id": 11924, "properties": { "facing": "north" } }, { - "id": 11915, + "id": 11925, "properties": { "facing": "south" } }, { - "id": 11916, + "id": 11926, "properties": { "facing": "west" } }, { - "id": 11917, + "id": 11927, "properties": { "facing": "east" } @@ -119632,7 +119866,7 @@ "states": [ { "default": true, - "id": 2095 + "id": 2098 } ] }, @@ -119644,7 +119878,7 @@ "states": [ { "default": true, - "id": 20472 + "id": 20487 } ] }, @@ -119664,25 +119898,25 @@ "states": [ { "default": true, - "id": 19417, + "id": 19427, "properties": { "facing": "north" } }, { - "id": 19418, + "id": 19428, "properties": { "facing": "south" } }, { - "id": 19419, + "id": 19429, "properties": { "facing": "west" } }, { - "id": 19420, + "id": 19430, "properties": { "facing": "east" } @@ -119718,97 +119952,97 @@ "states": [ { "default": true, - "id": 11670, + "id": 11680, "properties": { "rotation": "0" } }, { - "id": 11671, + "id": 11681, "properties": { "rotation": "1" } }, { - "id": 11672, + "id": 11682, "properties": { "rotation": "2" } }, { - "id": 11673, + "id": 11683, "properties": { "rotation": "3" } }, { - "id": 11674, + "id": 11684, "properties": { "rotation": "4" } }, { - "id": 11675, + "id": 11685, "properties": { "rotation": "5" } }, { - "id": 11676, + "id": 11686, "properties": { "rotation": "6" } }, { - "id": 11677, + "id": 11687, "properties": { "rotation": "7" } }, { - "id": 11678, + "id": 11688, "properties": { "rotation": "8" } }, { - "id": 11679, + "id": 11689, "properties": { "rotation": "9" } }, { - "id": 11680, + "id": 11690, "properties": { "rotation": "10" } }, { - "id": 11681, + "id": 11691, "properties": { "rotation": "11" } }, { - "id": 11682, + "id": 11692, "properties": { "rotation": "12" } }, { - "id": 11683, + "id": 11693, "properties": { "rotation": "13" } }, { - "id": 11684, + "id": 11694, "properties": { "rotation": "14" } }, { - "id": 11685, + "id": 11695, "properties": { "rotation": "15" } @@ -119992,7 +120226,7 @@ }, "states": [ { - "id": 21786, + "id": 21801, "properties": { "candles": "1", "lit": "true", @@ -120000,7 +120234,7 @@ } }, { - "id": 21787, + "id": 21802, "properties": { "candles": "1", "lit": "true", @@ -120008,7 +120242,7 @@ } }, { - "id": 21788, + "id": 21803, "properties": { "candles": "1", "lit": "false", @@ -120017,7 +120251,7 @@ }, { "default": true, - "id": 21789, + "id": 21804, "properties": { "candles": "1", "lit": "false", @@ -120025,7 +120259,7 @@ } }, { - "id": 21790, + "id": 21805, "properties": { "candles": "2", "lit": "true", @@ -120033,7 +120267,7 @@ } }, { - "id": 21791, + "id": 21806, "properties": { "candles": "2", "lit": "true", @@ -120041,7 +120275,7 @@ } }, { - "id": 21792, + "id": 21807, "properties": { "candles": "2", "lit": "false", @@ -120049,7 +120283,7 @@ } }, { - "id": 21793, + "id": 21808, "properties": { "candles": "2", "lit": "false", @@ -120057,7 +120291,7 @@ } }, { - "id": 21794, + "id": 21809, "properties": { "candles": "3", "lit": "true", @@ -120065,7 +120299,7 @@ } }, { - "id": 21795, + "id": 21810, "properties": { "candles": "3", "lit": "true", @@ -120073,7 +120307,7 @@ } }, { - "id": 21796, + "id": 21811, "properties": { "candles": "3", "lit": "false", @@ -120081,7 +120315,7 @@ } }, { - "id": 21797, + "id": 21812, "properties": { "candles": "3", "lit": "false", @@ -120089,7 +120323,7 @@ } }, { - "id": 21798, + "id": 21813, "properties": { "candles": "4", "lit": "true", @@ -120097,7 +120331,7 @@ } }, { - "id": 21799, + "id": 21814, "properties": { "candles": "4", "lit": "true", @@ -120105,7 +120339,7 @@ } }, { - "id": 21800, + "id": 21815, "properties": { "candles": "4", "lit": "false", @@ -120113,7 +120347,7 @@ } }, { - "id": 21801, + "id": 21816, "properties": { "candles": "4", "lit": "false", @@ -120136,14 +120370,14 @@ }, "states": [ { - "id": 22016, + "id": 22031, "properties": { "lit": "true" } }, { "default": true, - "id": 22017, + "id": 22032, "properties": { "lit": "false" } @@ -120159,7 +120393,7 @@ "states": [ { "default": true, - "id": 11609 + "id": 11619 } ] }, @@ -120171,7 +120405,7 @@ "states": [ { "default": true, - "id": 13743 + "id": 13753 } ] }, @@ -120184,7 +120418,7 @@ "states": [ { "default": true, - "id": 13759 + "id": 13769 } ] }, @@ -120204,25 +120438,25 @@ "states": [ { "default": true, - "id": 13685, + "id": 13695, "properties": { "facing": "north" } }, { - "id": 13686, + "id": 13696, "properties": { "facing": "south" } }, { - "id": 13687, + "id": 13697, "properties": { "facing": "west" } }, { - "id": 13688, + "id": 13698, "properties": { "facing": "east" } @@ -120247,38 +120481,38 @@ }, "states": [ { - "id": 13593, + "id": 13603, "properties": { "facing": "north" } }, { - "id": 13594, + "id": 13604, "properties": { "facing": "east" } }, { - "id": 13595, + "id": 13605, "properties": { "facing": "south" } }, { - "id": 13596, + "id": 13606, "properties": { "facing": "west" } }, { "default": true, - "id": 13597, + "id": 13607, "properties": { "facing": "up" } }, { - "id": 13598, + "id": 13608, "properties": { "facing": "down" } @@ -120294,7 +120528,7 @@ "states": [ { "default": true, - "id": 6116 + "id": 6126 } ] }, @@ -120327,113 +120561,13 @@ ] }, "states": [ - { - "id": 10235, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10236, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10237, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10238, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10239, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10240, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10241, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10242, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10243, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10244, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10245, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -120441,9 +120575,9 @@ "id": 10246, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -120451,9 +120585,9 @@ "id": 10247, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -120461,14 +120595,114 @@ "id": 10248, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 10249, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10250, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10251, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10252, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10253, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10254, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10255, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10256, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10257, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10258, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10259, "properties": { "east": "true", "north": "false", @@ -120478,7 +120712,7 @@ } }, { - "id": 10250, + "id": 10260, "properties": { "east": "true", "north": "false", @@ -120487,118 +120721,118 @@ "west": "false" } }, - { - "id": 10251, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10252, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10253, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10254, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10255, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10256, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10257, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10258, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10259, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10260, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10261, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 10262, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10263, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10264, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10265, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10266, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10267, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10268, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10269, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10270, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10271, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10272, "properties": { "east": "false", "north": "false", @@ -120608,7 +120842,7 @@ } }, { - "id": 10263, + "id": 10273, "properties": { "east": "false", "north": "false", @@ -120618,7 +120852,7 @@ } }, { - "id": 10264, + "id": 10274, "properties": { "east": "false", "north": "false", @@ -120628,7 +120862,7 @@ } }, { - "id": 10265, + "id": 10275, "properties": { "east": "false", "north": "false", @@ -120639,7 +120873,7 @@ }, { "default": true, - "id": 10266, + "id": 10276, "properties": { "east": "false", "north": "false", @@ -120652,13 +120886,13 @@ }, "minecraft:magenta_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 10157 + "id": 10167 } ] }, @@ -120679,25 +120913,25 @@ "states": [ { "default": true, - "id": 11902, + "id": 11912, "properties": { "facing": "north" } }, { - "id": 11903, + "id": 11913, "properties": { "facing": "south" } }, { - "id": 11904, + "id": 11914, "properties": { "facing": "west" } }, { - "id": 11905, + "id": 11915, "properties": { "facing": "east" } @@ -120712,7 +120946,7 @@ "states": [ { "default": true, - "id": 2092 + "id": 2095 } ] }, @@ -120724,7 +120958,7 @@ "states": [ { "default": true, - "id": 13556 + "id": 13566 } ] }, @@ -120754,7 +120988,7 @@ }, "states": [ { - "id": 9578, + "id": 9588, "properties": { "face": "floor", "facing": "north", @@ -120762,7 +120996,7 @@ } }, { - "id": 9579, + "id": 9589, "properties": { "face": "floor", "facing": "north", @@ -120770,7 +121004,7 @@ } }, { - "id": 9580, + "id": 9590, "properties": { "face": "floor", "facing": "south", @@ -120778,7 +121012,7 @@ } }, { - "id": 9581, + "id": 9591, "properties": { "face": "floor", "facing": "south", @@ -120786,7 +121020,7 @@ } }, { - "id": 9582, + "id": 9592, "properties": { "face": "floor", "facing": "west", @@ -120794,7 +121028,7 @@ } }, { - "id": 9583, + "id": 9593, "properties": { "face": "floor", "facing": "west", @@ -120802,7 +121036,7 @@ } }, { - "id": 9584, + "id": 9594, "properties": { "face": "floor", "facing": "east", @@ -120810,7 +121044,7 @@ } }, { - "id": 9585, + "id": 9595, "properties": { "face": "floor", "facing": "east", @@ -120818,7 +121052,7 @@ } }, { - "id": 9586, + "id": 9596, "properties": { "face": "wall", "facing": "north", @@ -120827,95 +121061,95 @@ }, { "default": true, - "id": 9587, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9588, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 9589, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 9590, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 9591, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 9592, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 9593, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 9594, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 9595, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9596, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { "id": 9597, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "north", "powered": "false" } }, { "id": 9598, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9599, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9600, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 9601, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 9602, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 9603, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 9604, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 9605, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 9606, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9607, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9608, "properties": { "face": "ceiling", "facing": "west", @@ -120923,7 +121157,7 @@ } }, { - "id": 9599, + "id": 9609, "properties": { "face": "ceiling", "facing": "west", @@ -120931,7 +121165,7 @@ } }, { - "id": 9600, + "id": 9610, "properties": { "face": "ceiling", "facing": "east", @@ -120939,7 +121173,7 @@ } }, { - "id": 9601, + "id": 9611, "properties": { "face": "ceiling", "facing": "east", @@ -120979,108 +121213,108 @@ ] }, "states": [ - { - "id": 13219, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13220, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13221, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13222, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13223, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13224, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13225, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13226, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13227, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13228, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 13229, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13230, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13231, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13232, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13233, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13234, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13235, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13236, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13237, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13238, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13239, "properties": { "facing": "north", "half": "lower", @@ -121091,152 +121325,52 @@ }, { "default": true, - "id": 13230, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13231, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13232, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13233, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13234, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13235, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13236, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13237, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13238, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13239, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { "id": 13240, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 13241, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 13242, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 13243, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "true" } }, { "id": 13244, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "false" } }, @@ -121244,9 +121378,9 @@ "id": 13245, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -121254,9 +121388,9 @@ "id": 13246, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -121264,9 +121398,9 @@ "id": 13247, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -121274,14 +121408,114 @@ "id": 13248, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 13249, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13250, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13251, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13252, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13253, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13254, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13255, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13256, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13257, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13258, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13259, "properties": { "facing": "south", "half": "lower", @@ -121291,7 +121525,7 @@ } }, { - "id": 13250, + "id": 13260, "properties": { "facing": "south", "half": "lower", @@ -121300,113 +121534,13 @@ "powered": "false" } }, - { - "id": 13251, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13252, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13253, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13254, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13255, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13256, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13257, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13258, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13259, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13260, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 13261, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -121414,9 +121548,9 @@ "id": 13262, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -121424,9 +121558,9 @@ "id": 13263, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -121434,14 +121568,114 @@ "id": 13264, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 13265, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13266, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13267, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13268, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13269, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13270, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13271, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13272, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13273, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13274, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13275, "properties": { "facing": "west", "half": "lower", @@ -121451,7 +121685,7 @@ } }, { - "id": 13266, + "id": 13276, "properties": { "facing": "west", "half": "lower", @@ -121460,113 +121694,13 @@ "powered": "false" } }, - { - "id": 13267, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13268, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13269, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13270, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13271, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13272, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13273, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13274, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13275, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13276, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 13277, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -121574,14 +121708,114 @@ "id": 13278, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 13279, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13280, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13281, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13282, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13283, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13284, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13285, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13286, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13287, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13288, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13289, "properties": { "facing": "east", "half": "lower", @@ -121591,7 +121825,7 @@ } }, { - "id": 13280, + "id": 13290, "properties": { "facing": "east", "half": "lower", @@ -121601,7 +121835,7 @@ } }, { - "id": 13281, + "id": 13291, "properties": { "facing": "east", "half": "lower", @@ -121611,7 +121845,7 @@ } }, { - "id": 13282, + "id": 13292, "properties": { "facing": "east", "half": "lower", @@ -121650,113 +121884,13 @@ ] }, "states": [ - { - "id": 12707, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12708, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12709, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12710, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12711, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12712, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12713, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12714, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12715, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12716, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 12717, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -121764,9 +121898,9 @@ "id": 12718, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -121774,9 +121908,9 @@ "id": 12719, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -121784,14 +121918,114 @@ "id": 12720, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 12721, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12722, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12723, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12724, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12725, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12726, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12727, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12728, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12729, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12730, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12731, "properties": { "east": "true", "north": "false", @@ -121801,7 +122035,7 @@ } }, { - "id": 12722, + "id": 12732, "properties": { "east": "true", "north": "false", @@ -121810,118 +122044,118 @@ "west": "false" } }, - { - "id": 12723, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12724, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12725, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12726, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12727, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12728, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12729, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12730, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12731, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12732, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 12733, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 12734, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12735, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12736, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12737, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12738, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12739, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12740, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12741, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12742, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12743, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12744, "properties": { "east": "false", "north": "false", @@ -121931,7 +122165,7 @@ } }, { - "id": 12735, + "id": 12745, "properties": { "east": "false", "north": "false", @@ -121941,7 +122175,7 @@ } }, { - "id": 12736, + "id": 12746, "properties": { "east": "false", "north": "false", @@ -121951,7 +122185,7 @@ } }, { - "id": 12737, + "id": 12747, "properties": { "east": "false", "north": "false", @@ -121962,7 +122196,7 @@ }, { "default": true, - "id": 12738, + "id": 12748, "properties": { "east": "false", "north": "false", @@ -122001,7 +122235,7 @@ }, "states": [ { - "id": 12419, + "id": 12429, "properties": { "facing": "north", "in_wall": "true", @@ -122010,7 +122244,7 @@ } }, { - "id": 12420, + "id": 12430, "properties": { "facing": "north", "in_wall": "true", @@ -122019,7 +122253,7 @@ } }, { - "id": 12421, + "id": 12431, "properties": { "facing": "north", "in_wall": "true", @@ -122028,7 +122262,7 @@ } }, { - "id": 12422, + "id": 12432, "properties": { "facing": "north", "in_wall": "true", @@ -122037,7 +122271,7 @@ } }, { - "id": 12423, + "id": 12433, "properties": { "facing": "north", "in_wall": "false", @@ -122046,7 +122280,7 @@ } }, { - "id": 12424, + "id": 12434, "properties": { "facing": "north", "in_wall": "false", @@ -122055,7 +122289,7 @@ } }, { - "id": 12425, + "id": 12435, "properties": { "facing": "north", "in_wall": "false", @@ -122065,7 +122299,7 @@ }, { "default": true, - "id": 12426, + "id": 12436, "properties": { "facing": "north", "in_wall": "false", @@ -122073,143 +122307,143 @@ "powered": "false" } }, - { - "id": 12427, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 12428, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 12429, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 12430, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 12431, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 12432, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 12433, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 12434, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 12435, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 12436, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, { "id": 12437, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12438, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 12439, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "true" } }, { "id": 12440, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "false" } }, { "id": 12441, "properties": { - "facing": "west", + "facing": "south", "in_wall": "false", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12442, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 12443, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 12444, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 12445, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 12446, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 12447, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 12448, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 12449, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 12450, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 12451, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 12452, "properties": { "facing": "west", "in_wall": "false", @@ -122218,7 +122452,7 @@ } }, { - "id": 12443, + "id": 12453, "properties": { "facing": "east", "in_wall": "true", @@ -122227,7 +122461,7 @@ } }, { - "id": 12444, + "id": 12454, "properties": { "facing": "east", "in_wall": "true", @@ -122236,7 +122470,7 @@ } }, { - "id": 12445, + "id": 12455, "properties": { "facing": "east", "in_wall": "true", @@ -122245,7 +122479,7 @@ } }, { - "id": 12446, + "id": 12456, "properties": { "facing": "east", "in_wall": "true", @@ -122254,7 +122488,7 @@ } }, { - "id": 12447, + "id": 12457, "properties": { "facing": "east", "in_wall": "false", @@ -122263,7 +122497,7 @@ } }, { - "id": 12448, + "id": 12458, "properties": { "facing": "east", "in_wall": "false", @@ -122272,7 +122506,7 @@ } }, { - "id": 12449, + "id": 12459, "properties": { "facing": "east", "in_wall": "false", @@ -122281,7 +122515,7 @@ } }, { - "id": 12450, + "id": 12460, "properties": { "facing": "east", "in_wall": "false", @@ -122326,240 +122560,240 @@ ] }, "states": [ - { - "id": 5569, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5570, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5571, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5572, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5573, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5574, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5575, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5576, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5577, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, { "id": 5578, "properties": { "attached": "true", - "rotation": "4", - "waterlogged": "false" + "rotation": "0", + "waterlogged": "true" } }, { "id": 5579, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "true" + "rotation": "0", + "waterlogged": "false" } }, { "id": 5580, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5581, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5582, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5583, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5584, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5585, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5586, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5587, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5588, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5589, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5590, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5591, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5592, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5593, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5594, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5595, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5596, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "false" + "rotation": "9", + "waterlogged": "true" } }, { "id": 5597, "properties": { "attached": "true", - "rotation": "14", - "waterlogged": "true" + "rotation": "9", + "waterlogged": "false" } }, { "id": 5598, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5599, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5600, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5601, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5602, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5603, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5604, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5605, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5606, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5607, "properties": { "attached": "true", "rotation": "14", @@ -122567,7 +122801,7 @@ } }, { - "id": 5599, + "id": 5608, "properties": { "attached": "true", "rotation": "15", @@ -122575,7 +122809,7 @@ } }, { - "id": 5600, + "id": 5609, "properties": { "attached": "true", "rotation": "15", @@ -122583,7 +122817,7 @@ } }, { - "id": 5601, + "id": 5610, "properties": { "attached": "false", "rotation": "0", @@ -122592,215 +122826,215 @@ }, { "default": true, - "id": 5602, + "id": 5611, "properties": { "attached": "false", "rotation": "0", "waterlogged": "false" } }, - { - "id": 5603, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5604, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5605, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5606, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5607, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5608, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5609, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5610, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5611, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 5612, "properties": { "attached": "false", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5613, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5614, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5615, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5616, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5617, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5618, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5619, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5620, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5621, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5622, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5623, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5624, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5625, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5626, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5627, "properties": { "attached": "false", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5628, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5629, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5630, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5631, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5632, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5633, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5634, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5635, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5636, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5637, "properties": { "attached": "false", "rotation": "13", @@ -122808,7 +123042,7 @@ } }, { - "id": 5629, + "id": 5638, "properties": { "attached": "false", "rotation": "14", @@ -122816,7 +123050,7 @@ } }, { - "id": 5630, + "id": 5639, "properties": { "attached": "false", "rotation": "14", @@ -122824,7 +123058,7 @@ } }, { - "id": 5631, + "id": 5640, "properties": { "attached": "false", "rotation": "15", @@ -122832,7 +123066,7 @@ } }, { - "id": 5632, + "id": 5641, "properties": { "attached": "false", "rotation": "15", @@ -122844,6 +123078,7 @@ "minecraft:mangrove_leaves": { "definition": { "type": "minecraft:mangrove_leaves", + "leaf_particle_chance": 0.01, "properties": {} }, "properties": { @@ -123153,14 +123388,14 @@ }, "states": [ { - "id": 5899, + "id": 5908, "properties": { "powered": "true" } }, { "default": true, - "id": 5900, + "id": 5909, "properties": { "powered": "false" } @@ -123617,7 +123852,7 @@ }, "states": [ { - "id": 4613, + "id": 4622, "properties": { "rotation": "0", "waterlogged": "true" @@ -123625,217 +123860,217 @@ }, { "default": true, - "id": 4614, + "id": 4623, "properties": { "rotation": "0", "waterlogged": "false" } }, - { - "id": 4615, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4616, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4617, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4618, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4619, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4620, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4621, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4622, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4623, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 4624, "properties": { - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 4625, "properties": { - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 4626, "properties": { - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 4627, "properties": { - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 4628, "properties": { - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 4629, "properties": { - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 4630, "properties": { - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 4631, "properties": { - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 4632, "properties": { - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 4633, "properties": { - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 4634, "properties": { - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 4635, "properties": { - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 4636, "properties": { - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 4637, "properties": { - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 4638, "properties": { - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 4639, "properties": { - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 4640, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4641, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4642, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4643, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4644, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4645, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4646, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4647, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4648, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4649, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 4641, + "id": 4650, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 4642, + "id": 4651, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 4643, + "id": 4652, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 4644, + "id": 4653, "properties": { "rotation": "15", "waterlogged": "false" @@ -123861,21 +124096,21 @@ }, "states": [ { - "id": 12089, + "id": 12099, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12090, + "id": 12100, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12091, + "id": 12101, "properties": { "type": "bottom", "waterlogged": "true" @@ -123883,21 +124118,21 @@ }, { "default": true, - "id": 12092, + "id": 12102, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12093, + "id": 12103, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12094, + "id": 12104, "properties": { "type": "double", "waterlogged": "false" @@ -123937,98 +124172,98 @@ ] }, "states": [ - { - "id": 11003, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 11004, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 11005, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 11006, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 11007, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 11008, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 11009, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 11010, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 11011, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11012, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 11013, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11014, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11015, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11016, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11017, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11018, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11019, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11020, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11021, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11022, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11023, "properties": { "facing": "north", "half": "bottom", @@ -124038,100 +124273,10 @@ }, { "default": true, - "id": 11014, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 11015, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 11016, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 11017, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 11018, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 11019, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 11020, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 11021, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11022, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 11023, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 11024, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -124139,8 +124284,8 @@ { "id": 11025, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -124148,8 +124293,8 @@ { "id": 11026, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -124157,8 +124302,8 @@ { "id": 11027, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -124166,8 +124311,8 @@ { "id": 11028, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -124175,8 +124320,8 @@ { "id": 11029, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -124184,8 +124329,8 @@ { "id": 11030, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -124193,8 +124338,8 @@ { "id": 11031, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -124202,8 +124347,8 @@ { "id": 11032, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -124212,7 +124357,7 @@ "id": 11033, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -124221,7 +124366,7 @@ "id": 11034, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -124230,7 +124375,7 @@ "id": 11035, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -124239,7 +124384,7 @@ "id": 11036, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -124248,7 +124393,7 @@ "id": 11037, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -124257,7 +124402,7 @@ "id": 11038, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -124266,7 +124411,7 @@ "id": 11039, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -124275,7 +124420,7 @@ "id": 11040, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -124284,7 +124429,7 @@ "id": 11041, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -124293,7 +124438,7 @@ "id": 11042, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -124301,8 +124446,8 @@ { "id": 11043, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -124310,8 +124455,8 @@ { "id": 11044, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -124319,8 +124464,8 @@ { "id": 11045, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -124328,8 +124473,8 @@ { "id": 11046, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -124337,8 +124482,8 @@ { "id": 11047, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -124346,8 +124491,8 @@ { "id": 11048, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -124355,8 +124500,8 @@ { "id": 11049, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -124364,8 +124509,8 @@ { "id": 11050, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -124373,8 +124518,8 @@ { "id": 11051, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -124382,8 +124527,8 @@ { "id": 11052, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -124392,7 +124537,7 @@ "id": 11053, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -124401,7 +124546,7 @@ "id": 11054, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -124410,7 +124555,7 @@ "id": 11055, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -124419,7 +124564,7 @@ "id": 11056, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -124428,7 +124573,7 @@ "id": 11057, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -124437,7 +124582,7 @@ "id": 11058, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -124446,7 +124591,7 @@ "id": 11059, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -124455,7 +124600,7 @@ "id": 11060, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -124464,7 +124609,7 @@ "id": 11061, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -124473,7 +124618,7 @@ "id": 11062, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -124481,8 +124626,8 @@ { "id": 11063, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -124490,8 +124635,8 @@ { "id": 11064, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -124499,8 +124644,8 @@ { "id": 11065, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -124508,8 +124653,8 @@ { "id": 11066, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -124517,8 +124662,8 @@ { "id": 11067, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -124526,8 +124671,8 @@ { "id": 11068, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -124535,8 +124680,8 @@ { "id": 11069, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -124544,8 +124689,8 @@ { "id": 11070, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -124553,8 +124698,8 @@ { "id": 11071, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -124562,8 +124707,8 @@ { "id": 11072, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -124572,7 +124717,7 @@ "id": 11073, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -124581,7 +124726,7 @@ "id": 11074, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -124590,7 +124735,7 @@ "id": 11075, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -124599,7 +124744,7 @@ "id": 11076, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -124608,7 +124753,7 @@ "id": 11077, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -124617,7 +124762,7 @@ "id": 11078, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -124626,7 +124771,7 @@ "id": 11079, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -124635,7 +124780,7 @@ "id": 11080, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -124644,13 +124789,103 @@ "id": 11081, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 11082, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11083, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11084, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11085, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11086, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11087, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11088, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11089, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11090, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11091, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11092, "properties": { "facing": "east", "half": "bottom", @@ -124691,118 +124926,118 @@ ] }, "states": [ - { - "id": 6642, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6643, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6644, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6645, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6646, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6647, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6648, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6649, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6650, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6651, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6652, "properties": { "facing": "north", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, { "id": 6653, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6654, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6655, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6656, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6657, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6658, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6659, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6660, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6661, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6662, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6663, "properties": { "facing": "north", "half": "bottom", @@ -124812,7 +125047,7 @@ } }, { - "id": 6654, + "id": 6664, "properties": { "facing": "north", "half": "bottom", @@ -124822,7 +125057,7 @@ } }, { - "id": 6655, + "id": 6665, "properties": { "facing": "north", "half": "bottom", @@ -124832,7 +125067,7 @@ } }, { - "id": 6656, + "id": 6666, "properties": { "facing": "north", "half": "bottom", @@ -124843,7 +125078,7 @@ }, { "default": true, - "id": 6657, + "id": 6667, "properties": { "facing": "north", "half": "bottom", @@ -124852,113 +125087,13 @@ "waterlogged": "false" } }, - { - "id": 6658, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6659, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6660, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6661, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6662, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6663, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6664, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6665, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6666, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6667, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6668, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -124966,9 +125101,9 @@ "id": 6669, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -124976,9 +125111,9 @@ "id": 6670, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -124986,14 +125121,114 @@ "id": 6671, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6672, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6673, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6674, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6675, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6676, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6677, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6678, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6679, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6680, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6681, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6682, "properties": { "facing": "south", "half": "bottom", @@ -125003,7 +125238,7 @@ } }, { - "id": 6673, + "id": 6683, "properties": { "facing": "south", "half": "bottom", @@ -125012,113 +125247,13 @@ "waterlogged": "false" } }, - { - "id": 6674, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6675, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6676, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6677, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6678, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6679, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6680, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6681, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6682, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6683, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6684, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -125126,9 +125261,9 @@ "id": 6685, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -125136,9 +125271,9 @@ "id": 6686, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -125146,14 +125281,114 @@ "id": 6687, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6688, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6689, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6690, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6691, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6692, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6693, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6694, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6695, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6696, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6697, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6698, "properties": { "facing": "west", "half": "bottom", @@ -125163,7 +125398,7 @@ } }, { - "id": 6689, + "id": 6699, "properties": { "facing": "west", "half": "bottom", @@ -125172,113 +125407,13 @@ "waterlogged": "false" } }, - { - "id": 6690, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6691, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6692, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6693, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6694, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6695, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6696, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6697, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6698, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6699, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6700, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -125286,14 +125421,114 @@ "id": 6701, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, { "id": 6702, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6703, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6704, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6705, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6706, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6707, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6708, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6709, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6710, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6711, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6712, "properties": { "facing": "east", "half": "bottom", @@ -125303,7 +125538,7 @@ } }, { - "id": 6703, + "id": 6713, "properties": { "facing": "east", "half": "bottom", @@ -125313,7 +125548,7 @@ } }, { - "id": 6704, + "id": 6714, "properties": { "facing": "east", "half": "bottom", @@ -125323,7 +125558,7 @@ } }, { - "id": 6705, + "id": 6715, "properties": { "facing": "east", "half": "bottom", @@ -125354,7 +125589,7 @@ }, "states": [ { - "id": 5761, + "id": 5770, "properties": { "facing": "north", "waterlogged": "true" @@ -125362,49 +125597,49 @@ }, { "default": true, - "id": 5762, + "id": 5771, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5763, + "id": 5772, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5764, + "id": 5773, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5765, + "id": 5774, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5766, + "id": 5775, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5767, + "id": 5776, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5768, + "id": 5777, "properties": { "facing": "east", "waterlogged": "false" @@ -125432,7 +125667,7 @@ }, "states": [ { - "id": 4913, + "id": 4922, "properties": { "facing": "north", "waterlogged": "true" @@ -125440,49 +125675,49 @@ }, { "default": true, - "id": 4914, + "id": 4923, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 4915, + "id": 4924, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 4916, + "id": 4925, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 4917, + "id": 4926, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 4918, + "id": 4927, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 4919, + "id": 4928, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4920, + "id": 4929, "properties": { "facing": "east", "waterlogged": "false" @@ -125527,9 +125762,9 @@ "minecraft:medium_amethyst_bud": { "definition": { "type": "minecraft:amethyst_cluster", - "aabb_offset": 3.0, "height": 4.0, - "properties": {} + "properties": {}, + "width": 10.0 }, "properties": { "facing": [ @@ -125547,63 +125782,63 @@ }, "states": [ { - "id": 22070, + "id": 22085, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 22071, + "id": 22086, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 22072, + "id": 22087, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 22073, + "id": 22088, "properties": { "facing": "east", "waterlogged": "false" } }, { - "id": 22074, + "id": 22089, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 22075, + "id": 22090, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 22076, + "id": 22091, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 22077, + "id": 22092, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 22078, + "id": 22093, "properties": { "facing": "up", "waterlogged": "true" @@ -125611,21 +125846,21 @@ }, { "default": true, - "id": 22079, + "id": 22094, "properties": { "facing": "up", "waterlogged": "false" } }, { - "id": 22080, + "id": 22095, "properties": { "facing": "down", "waterlogged": "true" } }, { - "id": 22081, + "id": 22096, "properties": { "facing": "down", "waterlogged": "false" @@ -125641,7 +125876,7 @@ "states": [ { "default": true, - "id": 7045 + "id": 7055 } ] }, @@ -125668,49 +125903,49 @@ "states": [ { "default": true, - "id": 7062, + "id": 7072, "properties": { "age": "0" } }, { - "id": 7063, + "id": 7073, "properties": { "age": "1" } }, { - "id": 7064, + "id": 7074, "properties": { "age": "2" } }, { - "id": 7065, + "id": 7075, "properties": { "age": "3" } }, { - "id": 7066, + "id": 7076, "properties": { "age": "4" } }, { - "id": 7067, + "id": 7077, "properties": { "age": "5" } }, { - "id": 7068, + "id": 7078, "properties": { "age": "6" } }, { - "id": 7069, + "id": 7079, "properties": { "age": "7" } @@ -125726,7 +125961,7 @@ "states": [ { "default": true, - "id": 25856 + "id": 25903 } ] }, @@ -125738,7 +125973,7 @@ "states": [ { "default": true, - "id": 25839 + "id": 25854 } ] }, @@ -125750,7 +125985,7 @@ "states": [ { "default": true, - "id": 2396 + "id": 2399 } ] }, @@ -125772,21 +126007,21 @@ }, "states": [ { - "id": 15119, + "id": 15129, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 15120, + "id": 15130, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 15121, + "id": 15131, "properties": { "type": "bottom", "waterlogged": "true" @@ -125794,21 +126029,21 @@ }, { "default": true, - "id": 15122, + "id": 15132, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 15123, + "id": 15133, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 15124, + "id": 15134, "properties": { "type": "double", "waterlogged": "false" @@ -125848,98 +126083,98 @@ ] }, "states": [ - { - "id": 14295, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 14296, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14297, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14298, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14299, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14300, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14301, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14302, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14303, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14304, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 14305, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14306, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14307, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14308, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14309, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14310, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14311, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14312, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14313, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14314, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14315, "properties": { "facing": "north", "half": "bottom", @@ -125949,100 +126184,10 @@ }, { "default": true, - "id": 14306, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14307, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14308, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14309, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14310, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14311, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14312, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14313, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14314, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 14315, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 14316, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -126050,8 +126195,8 @@ { "id": 14317, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -126059,8 +126204,8 @@ { "id": 14318, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -126068,8 +126213,8 @@ { "id": 14319, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -126077,8 +126222,8 @@ { "id": 14320, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -126086,8 +126231,8 @@ { "id": 14321, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -126095,8 +126240,8 @@ { "id": 14322, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -126104,8 +126249,8 @@ { "id": 14323, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -126113,8 +126258,8 @@ { "id": 14324, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -126123,7 +126268,7 @@ "id": 14325, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -126132,7 +126277,7 @@ "id": 14326, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -126141,7 +126286,7 @@ "id": 14327, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -126150,7 +126295,7 @@ "id": 14328, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -126159,7 +126304,7 @@ "id": 14329, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -126168,7 +126313,7 @@ "id": 14330, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -126177,7 +126322,7 @@ "id": 14331, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -126186,7 +126331,7 @@ "id": 14332, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -126195,7 +126340,7 @@ "id": 14333, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -126204,7 +126349,7 @@ "id": 14334, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -126212,8 +126357,8 @@ { "id": 14335, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -126221,8 +126366,8 @@ { "id": 14336, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -126230,8 +126375,8 @@ { "id": 14337, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -126239,8 +126384,8 @@ { "id": 14338, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -126248,8 +126393,8 @@ { "id": 14339, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -126257,8 +126402,8 @@ { "id": 14340, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -126266,8 +126411,8 @@ { "id": 14341, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -126275,8 +126420,8 @@ { "id": 14342, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -126284,8 +126429,8 @@ { "id": 14343, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -126293,8 +126438,8 @@ { "id": 14344, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -126303,7 +126448,7 @@ "id": 14345, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -126312,7 +126457,7 @@ "id": 14346, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -126321,7 +126466,7 @@ "id": 14347, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -126330,7 +126475,7 @@ "id": 14348, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -126339,7 +126484,7 @@ "id": 14349, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -126348,7 +126493,7 @@ "id": 14350, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -126357,7 +126502,7 @@ "id": 14351, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -126366,7 +126511,7 @@ "id": 14352, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -126375,7 +126520,7 @@ "id": 14353, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -126384,7 +126529,7 @@ "id": 14354, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -126392,8 +126537,8 @@ { "id": 14355, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -126401,8 +126546,8 @@ { "id": 14356, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -126410,8 +126555,8 @@ { "id": 14357, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -126419,8 +126564,8 @@ { "id": 14358, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -126428,8 +126573,8 @@ { "id": 14359, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -126437,8 +126582,8 @@ { "id": 14360, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -126446,8 +126591,8 @@ { "id": 14361, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -126455,8 +126600,8 @@ { "id": 14362, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -126464,8 +126609,8 @@ { "id": 14363, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -126473,8 +126618,8 @@ { "id": 14364, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -126483,7 +126628,7 @@ "id": 14365, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -126492,7 +126637,7 @@ "id": 14366, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -126501,7 +126646,7 @@ "id": 14367, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -126510,7 +126655,7 @@ "id": 14368, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -126519,7 +126664,7 @@ "id": 14369, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -126528,7 +126673,7 @@ "id": 14370, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -126537,7 +126682,7 @@ "id": 14371, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -126546,7 +126691,7 @@ "id": 14372, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -126555,13 +126700,103 @@ "id": 14373, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 14374, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14375, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14376, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14377, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14378, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14379, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14380, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14381, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14382, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14383, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14384, "properties": { "facing": "east", "half": "bottom", @@ -126608,7 +126843,7 @@ }, "states": [ { - "id": 9017, + "id": 9027, "properties": { "east": "none", "north": "none", @@ -126619,7 +126854,7 @@ } }, { - "id": 9018, + "id": 9028, "properties": { "east": "none", "north": "none", @@ -126630,7 +126865,7 @@ } }, { - "id": 9019, + "id": 9029, "properties": { "east": "none", "north": "none", @@ -126642,124 +126877,14 @@ }, { "default": true, - "id": 9020, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 9021, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 9022, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 9023, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 9024, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 9025, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 9026, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 9027, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 9028, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 9029, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { "id": 9030, "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -126767,10 +126892,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -126778,10 +126903,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -126789,10 +126914,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -126800,10 +126925,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -126811,10 +126936,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -126822,10 +126947,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -126833,10 +126958,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -126844,10 +126969,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -126856,9 +126981,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -126867,9 +126992,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -126877,10 +127002,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -126888,10 +127013,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -126899,10 +127024,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -126910,10 +127035,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -126921,10 +127046,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -126932,10 +127057,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -126943,10 +127068,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -126954,10 +127079,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -126965,10 +127090,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -126976,10 +127101,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -126988,9 +127113,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -126999,130 +127124,130 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 9053, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 9054, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 9055, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 9056, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 9057, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 9058, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 9059, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 9060, - "properties": { - "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 9061, + "id": 9059, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 9062, + "id": 9060, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 9061, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9062, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 9063, "properties": { "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -127131,9 +127256,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -127141,10 +127266,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -127152,10 +127277,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -127163,10 +127288,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -127174,10 +127299,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -127185,10 +127310,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -127196,10 +127321,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -127207,10 +127332,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -127218,10 +127343,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -127229,10 +127354,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -127240,10 +127365,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -127252,9 +127377,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -127263,9 +127388,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -127273,10 +127398,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -127284,10 +127409,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -127295,10 +127420,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -127306,10 +127431,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -127317,10 +127442,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -127328,10 +127453,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -127339,10 +127464,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -127350,10 +127475,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -127361,10 +127486,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -127372,10 +127497,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -127384,9 +127509,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -127395,130 +127520,130 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 9089, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 9090, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 9091, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 9092, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 9093, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 9094, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 9095, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 9096, - "properties": { - "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 9097, + "id": 9095, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 9098, + "id": 9096, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 9097, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9098, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 9099, "properties": { "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -127527,9 +127652,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -127537,10 +127662,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -127548,10 +127673,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -127559,10 +127684,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -127570,10 +127695,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -127581,10 +127706,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -127592,10 +127717,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -127603,10 +127728,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -127614,10 +127739,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -127625,10 +127750,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -127636,10 +127761,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -127648,9 +127773,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -127659,9 +127784,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -127669,10 +127794,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -127680,10 +127805,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -127691,10 +127816,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -127702,10 +127827,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -127713,10 +127838,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -127724,10 +127849,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -127735,10 +127860,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -127746,10 +127871,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -127757,10 +127882,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -127768,14 +127893,124 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 9123, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9124, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9125, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9126, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9127, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9128, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9129, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9130, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9131, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9132, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9133, "properties": { "east": "none", "north": "tall", @@ -127786,7 +128021,7 @@ } }, { - "id": 9124, + "id": 9134, "properties": { "east": "none", "north": "tall", @@ -127796,125 +128031,15 @@ "west": "tall" } }, - { - "id": 9125, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 9126, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 9127, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 9128, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 9129, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 9130, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 9131, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 9132, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 9133, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 9134, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 9135, "properties": { "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -127923,9 +128048,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -127933,10 +128058,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -127944,10 +128069,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -127955,10 +128080,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -127966,10 +128091,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -127977,10 +128102,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -127988,10 +128113,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -127999,10 +128124,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -128010,10 +128135,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -128021,10 +128146,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -128032,10 +128157,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -128044,9 +128169,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -128055,9 +128180,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -128065,10 +128190,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -128076,10 +128201,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -128087,10 +128212,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -128098,10 +128223,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -128109,10 +128234,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -128120,10 +128245,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -128131,10 +128256,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -128142,10 +128267,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -128153,10 +128278,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -128164,10 +128289,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -128176,9 +128301,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -128187,130 +128312,130 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 9161, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 9162, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 9163, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 9164, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 9165, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 9166, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 9167, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 9168, - "properties": { - "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 9169, + "id": 9167, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 9170, + "id": 9168, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 9169, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9170, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 9171, "properties": { "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -128319,9 +128444,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -128329,10 +128454,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -128340,10 +128465,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -128351,10 +128476,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -128362,10 +128487,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -128373,10 +128498,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -128384,10 +128509,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -128395,10 +128520,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -128406,10 +128531,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -128417,10 +128542,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -128428,10 +128553,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -128440,9 +128565,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -128451,9 +128576,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -128461,10 +128586,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -128472,10 +128597,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -128483,10 +128608,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -128494,10 +128619,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -128505,10 +128630,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -128516,10 +128641,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -128527,10 +128652,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -128538,10 +128663,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -128549,10 +128674,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -128560,10 +128685,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -128572,9 +128697,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -128583,130 +128708,130 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 9197, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 9198, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 9199, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 9200, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 9201, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 9202, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 9203, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 9204, - "properties": { - "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 9205, + "id": 9203, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 9206, + "id": 9204, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 9205, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9206, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 9207, "properties": { "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -128715,9 +128840,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -128725,10 +128850,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -128736,10 +128861,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -128747,10 +128872,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -128758,10 +128883,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -128769,10 +128894,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -128780,10 +128905,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -128791,10 +128916,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -128802,10 +128927,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -128813,10 +128938,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -128824,10 +128949,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -128836,9 +128961,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -128847,9 +128972,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -128857,10 +128982,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -128868,10 +128993,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -128879,10 +129004,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -128890,10 +129015,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -128901,10 +129026,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -128912,10 +129037,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -128923,10 +129048,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -128934,10 +129059,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -128945,10 +129070,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -128956,14 +129081,124 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 9231, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9232, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9233, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9234, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9235, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9236, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9237, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9238, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9239, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9240, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9241, "properties": { "east": "low", "north": "tall", @@ -128974,7 +129209,7 @@ } }, { - "id": 9232, + "id": 9242, "properties": { "east": "low", "north": "tall", @@ -128984,125 +129219,15 @@ "west": "tall" } }, - { - "id": 9233, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 9234, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 9235, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 9236, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 9237, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 9238, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 9239, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 9240, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 9241, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 9242, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 9243, "properties": { "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -129111,9 +129236,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -129121,10 +129246,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -129132,10 +129257,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -129143,10 +129268,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -129154,10 +129279,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -129165,10 +129290,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -129176,10 +129301,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -129187,10 +129312,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -129198,10 +129323,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -129209,10 +129334,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -129220,10 +129345,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -129232,9 +129357,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -129243,9 +129368,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -129253,10 +129378,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -129264,10 +129389,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -129275,10 +129400,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -129286,10 +129411,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -129297,10 +129422,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -129308,10 +129433,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -129319,10 +129444,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -129330,10 +129455,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -129341,10 +129466,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -129352,14 +129477,124 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 9267, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9268, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9269, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9270, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9271, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9272, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9273, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9274, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9275, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9276, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9277, "properties": { "east": "tall", "north": "none", @@ -129370,7 +129605,7 @@ } }, { - "id": 9268, + "id": 9278, "properties": { "east": "tall", "north": "none", @@ -129380,125 +129615,15 @@ "west": "tall" } }, - { - "id": 9269, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 9270, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 9271, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 9272, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 9273, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 9274, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 9275, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 9276, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 9277, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 9278, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 9279, "properties": { "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -129507,9 +129632,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -129517,10 +129642,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -129528,10 +129653,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -129539,10 +129664,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -129550,10 +129675,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -129561,10 +129686,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -129572,10 +129697,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -129583,10 +129708,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -129594,10 +129719,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -129605,10 +129730,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -129616,10 +129741,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -129628,9 +129753,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -129639,9 +129764,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -129649,10 +129774,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -129660,10 +129785,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -129671,10 +129796,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -129682,10 +129807,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -129693,10 +129818,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -129704,10 +129829,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -129715,10 +129840,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -129726,10 +129851,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -129737,10 +129862,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -129748,14 +129873,124 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 9303, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9304, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9305, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9306, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9307, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9308, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9309, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9310, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9311, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9312, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9313, "properties": { "east": "tall", "north": "low", @@ -129766,7 +130001,7 @@ } }, { - "id": 9304, + "id": 9314, "properties": { "east": "tall", "north": "low", @@ -129776,125 +130011,15 @@ "west": "tall" } }, - { - "id": 9305, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 9306, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 9307, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 9308, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 9309, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 9310, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 9311, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 9312, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 9313, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 9314, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 9315, "properties": { "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -129903,9 +130028,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -129913,10 +130038,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -129924,10 +130049,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -129935,10 +130060,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -129946,10 +130071,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -129957,10 +130082,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -129968,10 +130093,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -129979,10 +130104,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -129990,10 +130115,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -130001,10 +130126,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -130012,14 +130137,124 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 9327, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9328, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9329, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9330, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9331, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9332, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9333, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9334, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9335, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9336, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9337, "properties": { "east": "tall", "north": "tall", @@ -130030,7 +130265,7 @@ } }, { - "id": 9328, + "id": 9338, "properties": { "east": "tall", "north": "tall", @@ -130040,118 +130275,118 @@ "west": "tall" } }, - { - "id": 9329, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 9330, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 9331, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 9332, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 9333, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 9334, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 9335, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 9336, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 9337, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 9338, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 9339, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9340, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9341, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9342, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9343, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9344, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9345, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9346, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9347, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9348, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9349, "properties": { "east": "tall", "north": "tall", @@ -130162,7 +130397,7 @@ } }, { - "id": 9340, + "id": 9350, "properties": { "east": "tall", "north": "tall", @@ -130192,21 +130427,21 @@ }, "states": [ { - "id": 15107, + "id": 15117, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 15108, + "id": 15118, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 15109, + "id": 15119, "properties": { "type": "bottom", "waterlogged": "true" @@ -130214,21 +130449,21 @@ }, { "default": true, - "id": 15110, + "id": 15120, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 15111, + "id": 15121, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 15112, + "id": 15122, "properties": { "type": "double", "waterlogged": "false" @@ -130268,98 +130503,98 @@ ] }, "states": [ - { - "id": 14135, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 14136, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14137, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14138, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14139, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14140, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14141, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14142, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14143, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14144, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 14145, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14146, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14147, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14148, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14149, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14150, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14151, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14152, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14153, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14154, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14155, "properties": { "facing": "north", "half": "bottom", @@ -130369,100 +130604,10 @@ }, { "default": true, - "id": 14146, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14147, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14148, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14149, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14150, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14151, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14152, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14153, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14154, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 14155, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 14156, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -130470,8 +130615,8 @@ { "id": 14157, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -130479,8 +130624,8 @@ { "id": 14158, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -130488,8 +130633,8 @@ { "id": 14159, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -130497,8 +130642,8 @@ { "id": 14160, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -130506,8 +130651,8 @@ { "id": 14161, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -130515,8 +130660,8 @@ { "id": 14162, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -130524,8 +130669,8 @@ { "id": 14163, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -130533,8 +130678,8 @@ { "id": 14164, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -130543,7 +130688,7 @@ "id": 14165, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -130552,7 +130697,7 @@ "id": 14166, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -130561,7 +130706,7 @@ "id": 14167, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -130570,7 +130715,7 @@ "id": 14168, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -130579,7 +130724,7 @@ "id": 14169, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -130588,7 +130733,7 @@ "id": 14170, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -130597,7 +130742,7 @@ "id": 14171, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -130606,7 +130751,7 @@ "id": 14172, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -130615,7 +130760,7 @@ "id": 14173, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -130624,7 +130769,7 @@ "id": 14174, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -130632,8 +130777,8 @@ { "id": 14175, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -130641,8 +130786,8 @@ { "id": 14176, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -130650,8 +130795,8 @@ { "id": 14177, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -130659,8 +130804,8 @@ { "id": 14178, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -130668,8 +130813,8 @@ { "id": 14179, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -130677,8 +130822,8 @@ { "id": 14180, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -130686,8 +130831,8 @@ { "id": 14181, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -130695,8 +130840,8 @@ { "id": 14182, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -130704,8 +130849,8 @@ { "id": 14183, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -130713,8 +130858,8 @@ { "id": 14184, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -130723,7 +130868,7 @@ "id": 14185, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -130732,7 +130877,7 @@ "id": 14186, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -130741,7 +130886,7 @@ "id": 14187, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -130750,7 +130895,7 @@ "id": 14188, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -130759,7 +130904,7 @@ "id": 14189, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -130768,7 +130913,7 @@ "id": 14190, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -130777,7 +130922,7 @@ "id": 14191, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -130786,7 +130931,7 @@ "id": 14192, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -130795,7 +130940,7 @@ "id": 14193, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -130804,7 +130949,7 @@ "id": 14194, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -130812,8 +130957,8 @@ { "id": 14195, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -130821,8 +130966,8 @@ { "id": 14196, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -130830,8 +130975,8 @@ { "id": 14197, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -130839,8 +130984,8 @@ { "id": 14198, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -130848,8 +130993,8 @@ { "id": 14199, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -130857,8 +131002,8 @@ { "id": 14200, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -130866,8 +131011,8 @@ { "id": 14201, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -130875,8 +131020,8 @@ { "id": 14202, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -130884,8 +131029,8 @@ { "id": 14203, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -130893,8 +131038,8 @@ { "id": 14204, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -130903,7 +131048,7 @@ "id": 14205, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -130912,7 +131057,7 @@ "id": 14206, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -130921,7 +131066,7 @@ "id": 14207, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -130930,7 +131075,7 @@ "id": 14208, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -130939,7 +131084,7 @@ "id": 14209, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -130948,7 +131093,7 @@ "id": 14210, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -130957,7 +131102,7 @@ "id": 14211, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -130966,7 +131111,7 @@ "id": 14212, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -130975,13 +131120,103 @@ "id": 14213, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 14214, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14215, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14216, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14217, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14218, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14219, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14220, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14221, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14222, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14223, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14224, "properties": { "facing": "east", "half": "bottom", @@ -131028,7 +131263,7 @@ }, "states": [ { - "id": 16145, + "id": 16155, "properties": { "east": "none", "north": "none", @@ -131039,7 +131274,7 @@ } }, { - "id": 16146, + "id": 16156, "properties": { "east": "none", "north": "none", @@ -131050,7 +131285,7 @@ } }, { - "id": 16147, + "id": 16157, "properties": { "east": "none", "north": "none", @@ -131062,124 +131297,14 @@ }, { "default": true, - "id": 16148, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16149, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16150, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16151, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16152, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16153, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16154, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16155, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16156, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16157, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { "id": 16158, "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -131187,10 +131312,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -131198,10 +131323,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -131209,10 +131334,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -131220,10 +131345,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -131231,10 +131356,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -131242,10 +131367,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -131253,10 +131378,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -131264,10 +131389,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -131276,9 +131401,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -131287,9 +131412,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -131297,10 +131422,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -131308,10 +131433,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -131319,10 +131444,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -131330,10 +131455,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -131341,10 +131466,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -131352,10 +131477,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -131363,10 +131488,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -131374,10 +131499,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -131385,10 +131510,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -131396,10 +131521,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -131408,9 +131533,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -131419,130 +131544,130 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 16181, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 16182, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 16183, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 16184, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16185, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 16186, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16187, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16188, - "properties": { - "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 16189, + "id": 16187, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 16190, + "id": 16188, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 16189, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16190, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 16191, "properties": { "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -131551,9 +131676,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -131561,10 +131686,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -131572,10 +131697,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -131583,10 +131708,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -131594,10 +131719,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -131605,10 +131730,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -131616,10 +131741,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -131627,10 +131752,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -131638,10 +131763,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -131649,10 +131774,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -131660,10 +131785,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -131672,9 +131797,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -131683,9 +131808,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -131693,10 +131818,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -131704,10 +131829,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -131715,10 +131840,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -131726,10 +131851,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -131737,10 +131862,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -131748,10 +131873,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -131759,10 +131884,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -131770,10 +131895,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -131781,10 +131906,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -131792,10 +131917,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -131804,9 +131929,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -131815,130 +131940,130 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 16217, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 16218, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 16219, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 16220, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16221, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 16222, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16223, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16224, - "properties": { - "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 16225, + "id": 16223, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 16226, + "id": 16224, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 16225, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16226, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 16227, "properties": { "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -131947,9 +132072,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -131957,10 +132082,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -131968,10 +132093,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -131979,10 +132104,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -131990,10 +132115,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -132001,10 +132126,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -132012,10 +132137,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -132023,10 +132148,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -132034,10 +132159,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -132045,10 +132170,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -132056,10 +132181,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -132068,9 +132193,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -132079,9 +132204,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -132089,10 +132214,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -132100,10 +132225,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -132111,10 +132236,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -132122,10 +132247,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -132133,10 +132258,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -132144,10 +132269,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -132155,10 +132280,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -132166,10 +132291,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -132177,10 +132302,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -132188,14 +132313,124 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16251, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16252, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16253, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16254, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16255, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16256, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16257, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16258, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16259, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16260, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16261, "properties": { "east": "none", "north": "tall", @@ -132206,7 +132441,7 @@ } }, { - "id": 16252, + "id": 16262, "properties": { "east": "none", "north": "tall", @@ -132216,125 +132451,15 @@ "west": "tall" } }, - { - "id": 16253, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16254, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16255, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16256, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16257, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16258, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16259, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16260, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16261, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16262, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 16263, "properties": { "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -132343,9 +132468,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -132353,10 +132478,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -132364,10 +132489,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -132375,10 +132500,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -132386,10 +132511,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -132397,10 +132522,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -132408,10 +132533,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -132419,10 +132544,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -132430,10 +132555,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -132441,10 +132566,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -132452,10 +132577,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -132464,9 +132589,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -132475,9 +132600,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -132485,10 +132610,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -132496,10 +132621,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -132507,10 +132632,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -132518,10 +132643,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -132529,10 +132654,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -132540,10 +132665,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -132551,10 +132676,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -132562,10 +132687,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -132573,10 +132698,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -132584,10 +132709,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -132596,9 +132721,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -132607,130 +132732,130 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 16289, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 16290, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 16291, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 16292, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16293, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 16294, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16295, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16296, - "properties": { - "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 16297, + "id": 16295, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 16298, + "id": 16296, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 16297, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16298, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 16299, "properties": { "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -132739,9 +132864,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -132749,10 +132874,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -132760,10 +132885,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -132771,10 +132896,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -132782,10 +132907,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -132793,10 +132918,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -132804,10 +132929,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -132815,10 +132940,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -132826,10 +132951,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -132837,10 +132962,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -132848,10 +132973,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -132860,9 +132985,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -132871,9 +132996,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -132881,10 +133006,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -132892,10 +133017,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -132903,10 +133028,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -132914,10 +133039,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -132925,10 +133050,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -132936,10 +133061,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -132947,10 +133072,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -132958,10 +133083,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -132969,10 +133094,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -132980,10 +133105,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -132992,9 +133117,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -133003,130 +133128,130 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 16325, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 16326, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 16327, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 16328, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16329, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 16330, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16331, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16332, - "properties": { - "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 16333, + "id": 16331, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 16334, + "id": 16332, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 16333, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16334, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 16335, "properties": { "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -133135,9 +133260,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -133145,10 +133270,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -133156,10 +133281,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -133167,10 +133292,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -133178,10 +133303,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -133189,10 +133314,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -133200,10 +133325,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -133211,10 +133336,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -133222,10 +133347,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -133233,10 +133358,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -133244,10 +133369,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -133256,9 +133381,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -133267,9 +133392,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -133277,10 +133402,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -133288,10 +133413,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -133299,10 +133424,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -133310,10 +133435,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -133321,10 +133446,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -133332,10 +133457,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -133343,10 +133468,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -133354,10 +133479,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -133365,10 +133490,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -133376,14 +133501,124 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16359, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16360, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16361, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16362, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16363, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16364, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16365, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16366, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16367, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16368, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16369, "properties": { "east": "low", "north": "tall", @@ -133394,7 +133629,7 @@ } }, { - "id": 16360, + "id": 16370, "properties": { "east": "low", "north": "tall", @@ -133404,125 +133639,15 @@ "west": "tall" } }, - { - "id": 16361, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16362, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16363, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16364, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16365, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16366, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16367, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16368, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16369, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16370, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 16371, "properties": { "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -133531,9 +133656,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -133541,10 +133666,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -133552,10 +133677,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -133563,10 +133688,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -133574,10 +133699,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -133585,10 +133710,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -133596,10 +133721,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -133607,10 +133732,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -133618,10 +133743,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -133629,10 +133754,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -133640,10 +133765,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -133652,9 +133777,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -133663,9 +133788,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -133673,10 +133798,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -133684,10 +133809,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -133695,10 +133820,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -133706,10 +133831,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -133717,10 +133842,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -133728,10 +133853,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -133739,10 +133864,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -133750,10 +133875,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -133761,10 +133886,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -133772,14 +133897,124 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16395, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16396, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16397, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16398, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16399, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16400, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16401, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16402, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16403, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16404, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16405, "properties": { "east": "tall", "north": "none", @@ -133790,7 +134025,7 @@ } }, { - "id": 16396, + "id": 16406, "properties": { "east": "tall", "north": "none", @@ -133800,125 +134035,15 @@ "west": "tall" } }, - { - "id": 16397, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16398, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16399, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16400, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16401, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16402, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16403, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16404, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16405, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16406, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 16407, "properties": { "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -133927,9 +134052,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -133937,10 +134062,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -133948,10 +134073,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -133959,10 +134084,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -133970,10 +134095,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -133981,10 +134106,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -133992,10 +134117,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -134003,10 +134128,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -134014,10 +134139,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -134025,10 +134150,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -134036,10 +134161,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -134048,9 +134173,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -134059,9 +134184,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -134069,10 +134194,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -134080,10 +134205,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -134091,10 +134216,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -134102,10 +134227,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -134113,10 +134238,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -134124,10 +134249,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -134135,10 +134260,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -134146,10 +134271,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -134157,10 +134282,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -134168,14 +134293,124 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16431, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16432, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16433, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16434, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16435, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16436, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16437, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16438, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16439, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16440, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16441, "properties": { "east": "tall", "north": "low", @@ -134186,7 +134421,7 @@ } }, { - "id": 16432, + "id": 16442, "properties": { "east": "tall", "north": "low", @@ -134196,125 +134431,15 @@ "west": "tall" } }, - { - "id": 16433, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16434, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16435, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16436, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16437, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16438, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16439, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16440, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16441, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16442, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 16443, "properties": { "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -134323,9 +134448,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -134333,10 +134458,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -134344,10 +134469,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -134355,10 +134480,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -134366,10 +134491,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -134377,10 +134502,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -134388,10 +134513,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -134399,10 +134524,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -134410,10 +134535,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -134421,10 +134546,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -134432,14 +134557,124 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16455, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16456, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16457, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16458, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16459, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16460, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16461, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16462, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16463, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16464, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16465, "properties": { "east": "tall", "north": "tall", @@ -134450,7 +134685,7 @@ } }, { - "id": 16456, + "id": 16466, "properties": { "east": "tall", "north": "tall", @@ -134460,118 +134695,118 @@ "west": "tall" } }, - { - "id": 16457, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16458, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16459, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16460, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16461, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16462, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16463, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16464, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16465, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16466, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 16467, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16468, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16469, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16470, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16471, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16472, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16473, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16474, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16475, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16476, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16477, "properties": { "east": "tall", "north": "tall", @@ -134582,7 +134817,7 @@ } }, { - "id": 16468, + "id": 16478, "properties": { "east": "tall", "north": "tall", @@ -134602,7 +134837,7 @@ "states": [ { "default": true, - "id": 6771 + "id": 6781 } ] }, @@ -134628,84 +134863,84 @@ "states": [ { "default": true, - "id": 2106, - "properties": { - "type": "normal", - "facing": "north" - } - }, - { - "id": 2107, - "properties": { - "type": "sticky", - "facing": "north" - } - }, - { - "id": 2108, - "properties": { - "type": "normal", - "facing": "east" - } - }, - { "id": 2109, "properties": { - "type": "sticky", - "facing": "east" + "type": "normal", + "facing": "north" } }, { "id": 2110, "properties": { - "type": "normal", - "facing": "south" + "type": "sticky", + "facing": "north" } }, { "id": 2111, "properties": { - "type": "sticky", - "facing": "south" + "type": "normal", + "facing": "east" } }, { "id": 2112, "properties": { - "type": "normal", - "facing": "west" + "type": "sticky", + "facing": "east" } }, { "id": 2113, + "properties": { + "type": "normal", + "facing": "south" + } + }, + { + "id": 2114, + "properties": { + "type": "sticky", + "facing": "south" + } + }, + { + "id": 2115, + "properties": { + "type": "normal", + "facing": "west" + } + }, + { + "id": 2116, "properties": { "type": "sticky", "facing": "west" } }, { - "id": 2114, + "id": 2117, "properties": { "type": "normal", "facing": "up" } }, { - "id": 2115, + "id": 2118, "properties": { "type": "sticky", "facing": "up" } }, { - "id": 2116, + "id": 2119, "properties": { "type": "normal", "facing": "down" } }, { - "id": 2117, + "id": 2120, "properties": { "type": "sticky", "facing": "down" @@ -134721,7 +134956,7 @@ "states": [ { "default": true, - "id": 25916 + "id": 25963 } ] }, @@ -134743,21 +134978,21 @@ }, "states": [ { - "id": 12155, + "id": 12165, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12156, + "id": 12166, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12157, + "id": 12167, "properties": { "type": "bottom", "waterlogged": "true" @@ -134765,21 +135000,21 @@ }, { "default": true, - "id": 12158, + "id": 12168, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12159, + "id": 12169, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12160, + "id": 12170, "properties": { "type": "double", "waterlogged": "false" @@ -134819,98 +135054,98 @@ ] }, "states": [ - { - "id": 7550, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7551, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7552, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7553, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7554, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7555, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7556, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7557, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7558, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7559, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 7560, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7561, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7562, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7563, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7564, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7565, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7566, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7567, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7568, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7569, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7570, "properties": { "facing": "north", "half": "bottom", @@ -134920,100 +135155,10 @@ }, { "default": true, - "id": 7561, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7562, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7563, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7564, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7565, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7566, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7567, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7568, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7569, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7570, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 7571, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -135021,8 +135166,8 @@ { "id": 7572, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -135030,8 +135175,8 @@ { "id": 7573, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -135039,8 +135184,8 @@ { "id": 7574, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -135048,8 +135193,8 @@ { "id": 7575, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -135057,8 +135202,8 @@ { "id": 7576, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -135066,8 +135211,8 @@ { "id": 7577, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -135075,8 +135220,8 @@ { "id": 7578, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -135084,8 +135229,8 @@ { "id": 7579, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -135094,7 +135239,7 @@ "id": 7580, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -135103,7 +135248,7 @@ "id": 7581, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -135112,7 +135257,7 @@ "id": 7582, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -135121,7 +135266,7 @@ "id": 7583, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -135130,7 +135275,7 @@ "id": 7584, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -135139,7 +135284,7 @@ "id": 7585, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -135148,7 +135293,7 @@ "id": 7586, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -135157,7 +135302,7 @@ "id": 7587, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -135166,7 +135311,7 @@ "id": 7588, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -135175,7 +135320,7 @@ "id": 7589, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -135183,8 +135328,8 @@ { "id": 7590, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -135192,8 +135337,8 @@ { "id": 7591, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -135201,8 +135346,8 @@ { "id": 7592, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -135210,8 +135355,8 @@ { "id": 7593, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -135219,8 +135364,8 @@ { "id": 7594, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -135228,8 +135373,8 @@ { "id": 7595, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -135237,8 +135382,8 @@ { "id": 7596, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -135246,8 +135391,8 @@ { "id": 7597, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -135255,8 +135400,8 @@ { "id": 7598, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -135264,8 +135409,8 @@ { "id": 7599, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -135274,7 +135419,7 @@ "id": 7600, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -135283,7 +135428,7 @@ "id": 7601, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -135292,7 +135437,7 @@ "id": 7602, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -135301,7 +135446,7 @@ "id": 7603, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -135310,7 +135455,7 @@ "id": 7604, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -135319,7 +135464,7 @@ "id": 7605, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -135328,7 +135473,7 @@ "id": 7606, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -135337,7 +135482,7 @@ "id": 7607, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -135346,7 +135491,7 @@ "id": 7608, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -135355,7 +135500,7 @@ "id": 7609, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -135363,8 +135508,8 @@ { "id": 7610, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -135372,8 +135517,8 @@ { "id": 7611, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -135381,8 +135526,8 @@ { "id": 7612, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -135390,8 +135535,8 @@ { "id": 7613, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -135399,8 +135544,8 @@ { "id": 7614, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -135408,8 +135553,8 @@ { "id": 7615, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -135417,8 +135562,8 @@ { "id": 7616, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -135426,8 +135571,8 @@ { "id": 7617, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -135435,8 +135580,8 @@ { "id": 7618, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -135444,8 +135589,8 @@ { "id": 7619, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -135454,7 +135599,7 @@ "id": 7620, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -135463,7 +135608,7 @@ "id": 7621, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -135472,7 +135617,7 @@ "id": 7622, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -135481,7 +135626,7 @@ "id": 7623, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -135490,7 +135635,7 @@ "id": 7624, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -135499,7 +135644,7 @@ "id": 7625, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -135508,7 +135653,7 @@ "id": 7626, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -135517,7 +135662,7 @@ "id": 7627, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -135526,13 +135671,103 @@ "id": 7628, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 7629, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7630, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7631, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7632, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7633, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7634, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7635, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7636, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7637, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7638, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7639, "properties": { "facing": "east", "half": "bottom", @@ -135579,7 +135814,7 @@ }, "states": [ { - "id": 17117, + "id": 17127, "properties": { "east": "none", "north": "none", @@ -135590,7 +135825,7 @@ } }, { - "id": 17118, + "id": 17128, "properties": { "east": "none", "north": "none", @@ -135601,7 +135836,7 @@ } }, { - "id": 17119, + "id": 17129, "properties": { "east": "none", "north": "none", @@ -135613,124 +135848,14 @@ }, { "default": true, - "id": 17120, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17121, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17122, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17123, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17124, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17125, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17126, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17127, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17128, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17129, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { "id": 17130, "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -135738,10 +135863,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -135749,10 +135874,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -135760,10 +135885,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -135771,10 +135896,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -135782,10 +135907,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -135793,10 +135918,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -135804,10 +135929,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -135815,10 +135940,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -135827,9 +135952,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -135838,9 +135963,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -135848,10 +135973,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -135859,10 +135984,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -135870,10 +135995,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -135881,10 +136006,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -135892,10 +136017,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -135903,10 +136028,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -135914,10 +136039,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -135925,10 +136050,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -135936,10 +136061,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -135947,10 +136072,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -135959,9 +136084,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -135970,130 +136095,130 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 17153, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 17154, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 17155, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 17156, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17157, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 17158, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17159, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17160, - "properties": { - "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 17161, + "id": 17159, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 17162, + "id": 17160, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 17161, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17162, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 17163, "properties": { "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -136102,9 +136227,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -136112,10 +136237,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -136123,10 +136248,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -136134,10 +136259,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -136145,10 +136270,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -136156,10 +136281,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -136167,10 +136292,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -136178,10 +136303,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -136189,10 +136314,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -136200,10 +136325,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -136211,10 +136336,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -136223,9 +136348,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -136234,9 +136359,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -136244,10 +136369,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -136255,10 +136380,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -136266,10 +136391,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -136277,10 +136402,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -136288,10 +136413,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -136299,10 +136424,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -136310,10 +136435,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -136321,10 +136446,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -136332,10 +136457,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -136343,10 +136468,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -136355,9 +136480,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -136366,130 +136491,130 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 17189, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 17190, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 17191, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 17192, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17193, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 17194, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17195, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17196, - "properties": { - "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 17197, + "id": 17195, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 17198, + "id": 17196, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 17197, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17198, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 17199, "properties": { "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -136498,9 +136623,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -136508,10 +136633,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -136519,10 +136644,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -136530,10 +136655,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -136541,10 +136666,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -136552,10 +136677,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -136563,10 +136688,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -136574,10 +136699,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -136585,10 +136710,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -136596,10 +136721,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -136607,10 +136732,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -136619,9 +136744,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -136630,9 +136755,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -136640,10 +136765,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -136651,10 +136776,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -136662,10 +136787,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -136673,10 +136798,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -136684,10 +136809,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -136695,10 +136820,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -136706,10 +136831,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -136717,10 +136842,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -136728,10 +136853,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -136739,14 +136864,124 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17223, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17224, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17225, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17226, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17227, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17228, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17229, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17230, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17231, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17232, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17233, "properties": { "east": "none", "north": "tall", @@ -136757,7 +136992,7 @@ } }, { - "id": 17224, + "id": 17234, "properties": { "east": "none", "north": "tall", @@ -136767,125 +137002,15 @@ "west": "tall" } }, - { - "id": 17225, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17226, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17227, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17228, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17229, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17230, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17231, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17232, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17233, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17234, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 17235, "properties": { "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -136894,9 +137019,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -136904,10 +137029,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -136915,10 +137040,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -136926,10 +137051,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -136937,10 +137062,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -136948,10 +137073,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -136959,10 +137084,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -136970,10 +137095,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -136981,10 +137106,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -136992,10 +137117,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -137003,10 +137128,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -137015,9 +137140,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -137026,9 +137151,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -137036,10 +137161,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -137047,10 +137172,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -137058,10 +137183,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -137069,10 +137194,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -137080,10 +137205,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -137091,10 +137216,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -137102,10 +137227,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -137113,10 +137238,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -137124,10 +137249,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -137135,10 +137260,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -137147,9 +137272,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -137158,130 +137283,130 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 17261, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 17262, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 17263, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 17264, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17265, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 17266, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17267, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17268, - "properties": { - "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 17269, + "id": 17267, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 17270, + "id": 17268, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 17269, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17270, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 17271, "properties": { "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -137290,9 +137415,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -137300,10 +137425,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -137311,10 +137436,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -137322,10 +137447,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -137333,10 +137458,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -137344,10 +137469,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -137355,10 +137480,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -137366,10 +137491,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -137377,10 +137502,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -137388,10 +137513,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -137399,10 +137524,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -137411,9 +137536,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -137422,9 +137547,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -137432,10 +137557,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -137443,10 +137568,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -137454,10 +137579,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -137465,10 +137590,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -137476,10 +137601,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -137487,10 +137612,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -137498,10 +137623,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -137509,10 +137634,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -137520,10 +137645,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -137531,10 +137656,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -137543,9 +137668,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -137554,130 +137679,130 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 17297, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 17298, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 17299, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 17300, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17301, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 17302, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17303, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17304, - "properties": { - "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 17305, + "id": 17303, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 17306, + "id": 17304, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 17305, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17306, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 17307, "properties": { "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -137686,9 +137811,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -137696,10 +137821,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -137707,10 +137832,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -137718,10 +137843,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -137729,10 +137854,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -137740,10 +137865,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -137751,10 +137876,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -137762,10 +137887,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -137773,10 +137898,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -137784,10 +137909,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -137795,10 +137920,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -137807,9 +137932,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -137818,9 +137943,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -137828,10 +137953,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -137839,10 +137964,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -137850,10 +137975,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -137861,10 +137986,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -137872,10 +137997,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -137883,10 +138008,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -137894,10 +138019,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -137905,10 +138030,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -137916,10 +138041,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -137927,14 +138052,124 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17331, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17332, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17333, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17334, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17335, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17336, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17337, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17338, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17339, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17340, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17341, "properties": { "east": "low", "north": "tall", @@ -137945,7 +138180,7 @@ } }, { - "id": 17332, + "id": 17342, "properties": { "east": "low", "north": "tall", @@ -137955,125 +138190,15 @@ "west": "tall" } }, - { - "id": 17333, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17334, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17335, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17336, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17337, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17338, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17339, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17340, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17341, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17342, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 17343, "properties": { "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -138082,9 +138207,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -138092,10 +138217,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -138103,10 +138228,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -138114,10 +138239,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -138125,10 +138250,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -138136,10 +138261,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -138147,10 +138272,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -138158,10 +138283,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -138169,10 +138294,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -138180,10 +138305,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -138191,10 +138316,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -138203,9 +138328,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -138214,9 +138339,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -138224,10 +138349,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -138235,10 +138360,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -138246,10 +138371,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -138257,10 +138382,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -138268,10 +138393,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -138279,10 +138404,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -138290,10 +138415,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -138301,10 +138426,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -138312,10 +138437,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -138323,14 +138448,124 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17367, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17368, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17369, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17370, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17371, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17372, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17373, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17374, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17375, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17376, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17377, "properties": { "east": "tall", "north": "none", @@ -138341,7 +138576,7 @@ } }, { - "id": 17368, + "id": 17378, "properties": { "east": "tall", "north": "none", @@ -138351,125 +138586,15 @@ "west": "tall" } }, - { - "id": 17369, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17370, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17371, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17372, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17373, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17374, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17375, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17376, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17377, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17378, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 17379, "properties": { "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -138478,9 +138603,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -138488,10 +138613,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -138499,10 +138624,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -138510,10 +138635,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -138521,10 +138646,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -138532,10 +138657,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -138543,10 +138668,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -138554,10 +138679,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -138565,10 +138690,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -138576,10 +138701,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -138587,10 +138712,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -138599,9 +138724,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -138610,9 +138735,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -138620,10 +138745,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -138631,10 +138756,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -138642,10 +138767,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -138653,10 +138778,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -138664,10 +138789,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -138675,10 +138800,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -138686,10 +138811,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -138697,10 +138822,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -138708,10 +138833,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -138719,14 +138844,124 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17403, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17404, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17405, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17406, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17407, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17408, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17409, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17410, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17411, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17412, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17413, "properties": { "east": "tall", "north": "low", @@ -138737,7 +138972,7 @@ } }, { - "id": 17404, + "id": 17414, "properties": { "east": "tall", "north": "low", @@ -138747,125 +138982,15 @@ "west": "tall" } }, - { - "id": 17405, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17406, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17407, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17408, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17409, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17410, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17411, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17412, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17413, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17414, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 17415, "properties": { "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -138874,9 +138999,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -138884,10 +139009,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -138895,10 +139020,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -138906,10 +139031,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -138917,10 +139042,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -138928,10 +139053,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -138939,10 +139064,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -138950,10 +139075,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -138961,10 +139086,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -138972,10 +139097,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -138983,14 +139108,124 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17427, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17428, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17429, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17430, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17431, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17432, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17433, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17434, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17435, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17436, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17437, "properties": { "east": "tall", "north": "tall", @@ -139001,7 +139236,7 @@ } }, { - "id": 17428, + "id": 17438, "properties": { "east": "tall", "north": "tall", @@ -139011,118 +139246,118 @@ "west": "tall" } }, - { - "id": 17429, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17430, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17431, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17432, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17433, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17434, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17435, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17436, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17437, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17438, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 17439, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17440, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17441, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17442, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17443, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17444, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17445, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17446, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17447, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17448, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17449, "properties": { "east": "tall", "north": "tall", @@ -139133,7 +139368,7 @@ } }, { - "id": 17440, + "id": 17450, "properties": { "east": "tall", "north": "tall", @@ -139153,7 +139388,7 @@ "states": [ { "default": true, - "id": 6775 + "id": 6785 } ] }, @@ -139225,123 +139460,13 @@ "states": [ { "default": true, - "id": 6910, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6911, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6912, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6913, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6914, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6915, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6916, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6917, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6918, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6919, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { "id": 6920, "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -139350,9 +139475,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, @@ -139361,9 +139486,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "true" } }, @@ -139372,9 +139497,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "false" } }, @@ -139383,9 +139508,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", - "up": "false", + "up": "true", "west": "true" } }, @@ -139394,9 +139519,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", - "up": "false", + "up": "true", "west": "false" } }, @@ -139404,10 +139529,10 @@ "id": 6926, "properties": { "down": "true", - "east": "false", + "east": "true", "north": "true", - "south": "true", - "up": "true", + "south": "false", + "up": "false", "west": "true" } }, @@ -139415,10 +139540,10 @@ "id": 6927, "properties": { "down": "true", - "east": "false", + "east": "true", "north": "true", - "south": "true", - "up": "true", + "south": "false", + "up": "false", "west": "false" } }, @@ -139426,10 +139551,10 @@ "id": 6928, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -139437,10 +139562,10 @@ "id": 6929, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, @@ -139448,10 +139573,10 @@ "id": 6930, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "west": "true" } }, @@ -139459,10 +139584,10 @@ "id": 6931, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "west": "false" } }, @@ -139470,10 +139595,10 @@ "id": 6932, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", - "up": "false", + "up": "true", "west": "true" } }, @@ -139481,10 +139606,10 @@ "id": 6933, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", - "up": "false", + "up": "true", "west": "false" } }, @@ -139492,10 +139617,10 @@ "id": 6934, "properties": { "down": "true", - "east": "false", + "east": "true", "north": "false", - "south": "true", - "up": "true", + "south": "false", + "up": "false", "west": "true" } }, @@ -139503,10 +139628,10 @@ "id": 6935, "properties": { "down": "true", - "east": "false", + "east": "true", "north": "false", - "south": "true", - "up": "true", + "south": "false", + "up": "false", "west": "false" } }, @@ -139515,9 +139640,9 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -139526,9 +139651,9 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, @@ -139537,9 +139662,9 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "true" } }, @@ -139548,14 +139673,124 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "false" } }, { "id": 6940, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6941, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6942, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6943, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6944, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6945, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6946, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6947, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6948, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6949, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6950, "properties": { "down": "true", "east": "false", @@ -139566,7 +139801,7 @@ } }, { - "id": 6941, + "id": 6951, "properties": { "down": "true", "east": "false", @@ -139576,124 +139811,14 @@ "west": "false" } }, - { - "id": 6942, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6943, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6944, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6945, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6946, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6947, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6948, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6949, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6950, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6951, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, { "id": 6952, "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -139702,9 +139827,9 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, @@ -139713,9 +139838,9 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "true" } }, @@ -139724,14 +139849,124 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "false" } }, { "id": 6956, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6957, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6958, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6959, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6960, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6961, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6962, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6963, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6964, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6965, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6966, "properties": { "down": "false", "east": "true", @@ -139742,7 +139977,7 @@ } }, { - "id": 6957, + "id": 6967, "properties": { "down": "false", "east": "true", @@ -139752,124 +139987,14 @@ "west": "false" } }, - { - "id": 6958, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6959, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6960, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6961, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6962, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6963, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6964, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6965, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6966, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6967, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, { "id": 6968, "properties": { "down": "false", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -139878,14 +140003,124 @@ "properties": { "down": "false", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, { "id": 6970, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6971, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6972, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6973, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6974, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6975, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6976, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6977, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6978, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6979, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6980, "properties": { "down": "false", "east": "false", @@ -139896,7 +140131,7 @@ } }, { - "id": 6971, + "id": 6981, "properties": { "down": "false", "east": "false", @@ -139907,7 +140142,7 @@ } }, { - "id": 6972, + "id": 6982, "properties": { "down": "false", "east": "false", @@ -139918,7 +140153,7 @@ } }, { - "id": 6973, + "id": 6983, "properties": { "down": "false", "east": "false", @@ -139943,14 +140178,14 @@ }, "states": [ { - "id": 7630, + "id": 7640, "properties": { "snowy": "true" } }, { "default": true, - "id": 7631, + "id": 7641, "properties": { "snowy": "false" } @@ -139985,113 +140220,13 @@ ] }, "states": [ - { - "id": 8047, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 8048, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 8049, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 8050, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 8051, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 8052, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 8053, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 8054, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 8055, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 8056, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 8057, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -140099,9 +140234,9 @@ "id": 8058, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -140109,9 +140244,9 @@ "id": 8059, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -140119,14 +140254,114 @@ "id": 8060, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 8061, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8062, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8063, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8064, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8065, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8066, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8067, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8068, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8069, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8070, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8071, "properties": { "east": "true", "north": "false", @@ -140136,7 +140371,7 @@ } }, { - "id": 8062, + "id": 8072, "properties": { "east": "true", "north": "false", @@ -140145,118 +140380,118 @@ "west": "false" } }, - { - "id": 8063, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 8064, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 8065, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 8066, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 8067, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 8068, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 8069, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 8070, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 8071, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 8072, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 8073, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 8074, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8075, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8076, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8077, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8078, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8079, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8080, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8081, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8082, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8083, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8084, "properties": { "east": "false", "north": "false", @@ -140266,7 +140501,7 @@ } }, { - "id": 8075, + "id": 8085, "properties": { "east": "false", "north": "false", @@ -140276,7 +140511,7 @@ } }, { - "id": 8076, + "id": 8086, "properties": { "east": "false", "north": "false", @@ -140286,7 +140521,7 @@ } }, { - "id": 8077, + "id": 8087, "properties": { "east": "false", "north": "false", @@ -140297,7 +140532,7 @@ }, { "default": true, - "id": 8078, + "id": 8088, "properties": { "east": "false", "north": "false", @@ -140326,21 +140561,21 @@ }, "states": [ { - "id": 12161, + "id": 12171, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12162, + "id": 12172, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12163, + "id": 12173, "properties": { "type": "bottom", "waterlogged": "true" @@ -140348,21 +140583,21 @@ }, { "default": true, - "id": 12164, + "id": 12174, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12165, + "id": 12175, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12166, + "id": 12176, "properties": { "type": "double", "waterlogged": "false" @@ -140402,98 +140637,98 @@ ] }, "states": [ - { - "id": 8079, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 8080, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 8081, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 8082, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 8083, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 8084, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 8085, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 8086, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 8087, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 8088, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 8089, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8090, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8091, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8092, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8093, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8094, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8095, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8096, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8097, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8098, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8099, "properties": { "facing": "north", "half": "bottom", @@ -140503,100 +140738,10 @@ }, { "default": true, - "id": 8090, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 8091, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 8092, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 8093, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 8094, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 8095, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 8096, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 8097, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 8098, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 8099, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 8100, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -140604,8 +140749,8 @@ { "id": 8101, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -140613,8 +140758,8 @@ { "id": 8102, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -140622,8 +140767,8 @@ { "id": 8103, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -140631,8 +140776,8 @@ { "id": 8104, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -140640,8 +140785,8 @@ { "id": 8105, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -140649,8 +140794,8 @@ { "id": 8106, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -140658,8 +140803,8 @@ { "id": 8107, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -140667,8 +140812,8 @@ { "id": 8108, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -140677,7 +140822,7 @@ "id": 8109, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -140686,7 +140831,7 @@ "id": 8110, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -140695,7 +140840,7 @@ "id": 8111, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -140704,7 +140849,7 @@ "id": 8112, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -140713,7 +140858,7 @@ "id": 8113, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -140722,7 +140867,7 @@ "id": 8114, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -140731,7 +140876,7 @@ "id": 8115, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -140740,7 +140885,7 @@ "id": 8116, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -140749,7 +140894,7 @@ "id": 8117, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -140758,7 +140903,7 @@ "id": 8118, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -140766,8 +140911,8 @@ { "id": 8119, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -140775,8 +140920,8 @@ { "id": 8120, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -140784,8 +140929,8 @@ { "id": 8121, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -140793,8 +140938,8 @@ { "id": 8122, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -140802,8 +140947,8 @@ { "id": 8123, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -140811,8 +140956,8 @@ { "id": 8124, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -140820,8 +140965,8 @@ { "id": 8125, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -140829,8 +140974,8 @@ { "id": 8126, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -140838,8 +140983,8 @@ { "id": 8127, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -140847,8 +140992,8 @@ { "id": 8128, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -140857,7 +141002,7 @@ "id": 8129, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -140866,7 +141011,7 @@ "id": 8130, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -140875,7 +141020,7 @@ "id": 8131, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -140884,7 +141029,7 @@ "id": 8132, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -140893,7 +141038,7 @@ "id": 8133, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -140902,7 +141047,7 @@ "id": 8134, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -140911,7 +141056,7 @@ "id": 8135, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -140920,7 +141065,7 @@ "id": 8136, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -140929,7 +141074,7 @@ "id": 8137, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -140938,7 +141083,7 @@ "id": 8138, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -140946,8 +141091,8 @@ { "id": 8139, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -140955,8 +141100,8 @@ { "id": 8140, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -140964,8 +141109,8 @@ { "id": 8141, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -140973,8 +141118,8 @@ { "id": 8142, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -140982,8 +141127,8 @@ { "id": 8143, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -140991,8 +141136,8 @@ { "id": 8144, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -141000,8 +141145,8 @@ { "id": 8145, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -141009,8 +141154,8 @@ { "id": 8146, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -141018,8 +141163,8 @@ { "id": 8147, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -141027,8 +141172,8 @@ { "id": 8148, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -141037,7 +141182,7 @@ "id": 8149, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -141046,7 +141191,7 @@ "id": 8150, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -141055,7 +141200,7 @@ "id": 8151, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -141064,7 +141209,7 @@ "id": 8152, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -141073,7 +141218,7 @@ "id": 8153, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -141082,7 +141227,7 @@ "id": 8154, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -141091,7 +141236,7 @@ "id": 8155, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -141100,7 +141245,7 @@ "id": 8156, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -141109,13 +141254,103 @@ "id": 8157, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 8158, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8159, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8160, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8161, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8162, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8163, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8164, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8165, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8166, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8167, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8168, "properties": { "facing": "east", "half": "bottom", @@ -141162,7 +141397,7 @@ }, "states": [ { - "id": 17441, + "id": 17451, "properties": { "east": "none", "north": "none", @@ -141173,7 +141408,7 @@ } }, { - "id": 17442, + "id": 17452, "properties": { "east": "none", "north": "none", @@ -141184,7 +141419,7 @@ } }, { - "id": 17443, + "id": 17453, "properties": { "east": "none", "north": "none", @@ -141196,124 +141431,14 @@ }, { "default": true, - "id": 17444, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17445, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17446, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17447, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17448, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17449, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17450, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17451, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17452, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17453, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { "id": 17454, "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -141321,10 +141446,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -141332,10 +141457,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -141343,10 +141468,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -141354,10 +141479,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -141365,10 +141490,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -141376,10 +141501,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -141387,10 +141512,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -141398,10 +141523,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -141410,9 +141535,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -141421,9 +141546,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -141431,10 +141556,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -141442,10 +141567,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -141453,10 +141578,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -141464,10 +141589,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -141475,10 +141600,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -141486,10 +141611,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -141497,10 +141622,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -141508,10 +141633,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -141519,10 +141644,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -141530,10 +141655,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -141542,9 +141667,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -141553,130 +141678,130 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 17477, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 17478, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 17479, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 17480, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17481, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 17482, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17483, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17484, - "properties": { - "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 17485, + "id": 17483, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 17486, + "id": 17484, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 17485, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17486, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 17487, "properties": { "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -141685,9 +141810,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -141695,10 +141820,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -141706,10 +141831,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -141717,10 +141842,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -141728,10 +141853,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -141739,10 +141864,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -141750,10 +141875,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -141761,10 +141886,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -141772,10 +141897,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -141783,10 +141908,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -141794,10 +141919,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -141806,9 +141931,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -141817,9 +141942,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -141827,10 +141952,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -141838,10 +141963,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -141849,10 +141974,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -141860,10 +141985,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -141871,10 +141996,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -141882,10 +142007,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -141893,10 +142018,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -141904,10 +142029,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -141915,10 +142040,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -141926,10 +142051,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -141938,9 +142063,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -141949,130 +142074,130 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 17513, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 17514, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 17515, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 17516, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17517, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 17518, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17519, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17520, - "properties": { - "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 17521, + "id": 17519, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 17522, + "id": 17520, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 17521, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17522, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 17523, "properties": { "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -142081,9 +142206,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -142091,10 +142216,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -142102,10 +142227,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -142113,10 +142238,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -142124,10 +142249,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -142135,10 +142260,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -142146,10 +142271,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -142157,10 +142282,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -142168,10 +142293,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -142179,10 +142304,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -142190,10 +142315,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -142202,9 +142327,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -142213,9 +142338,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -142223,10 +142348,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -142234,10 +142359,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -142245,10 +142370,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -142256,10 +142381,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -142267,10 +142392,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -142278,10 +142403,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -142289,10 +142414,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -142300,10 +142425,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -142311,10 +142436,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -142322,14 +142447,124 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17547, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17548, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17549, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17550, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17551, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17552, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17553, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17554, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17555, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17556, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17557, "properties": { "east": "none", "north": "tall", @@ -142340,7 +142575,7 @@ } }, { - "id": 17548, + "id": 17558, "properties": { "east": "none", "north": "tall", @@ -142350,125 +142585,15 @@ "west": "tall" } }, - { - "id": 17549, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17550, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17551, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17552, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17553, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17554, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17555, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17556, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17557, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17558, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 17559, "properties": { "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -142477,9 +142602,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -142487,10 +142612,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -142498,10 +142623,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -142509,10 +142634,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -142520,10 +142645,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -142531,10 +142656,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -142542,10 +142667,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -142553,10 +142678,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -142564,10 +142689,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -142575,10 +142700,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -142586,10 +142711,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -142598,9 +142723,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -142609,9 +142734,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -142619,10 +142744,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -142630,10 +142755,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -142641,10 +142766,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -142652,10 +142777,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -142663,10 +142788,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -142674,10 +142799,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -142685,10 +142810,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -142696,10 +142821,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -142707,10 +142832,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -142718,10 +142843,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -142730,9 +142855,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -142741,130 +142866,130 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 17585, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 17586, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 17587, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 17588, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17589, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 17590, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17591, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17592, - "properties": { - "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 17593, + "id": 17591, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 17594, + "id": 17592, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 17593, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17594, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 17595, "properties": { "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -142873,9 +142998,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -142883,10 +143008,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -142894,10 +143019,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -142905,10 +143030,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -142916,10 +143041,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -142927,10 +143052,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -142938,10 +143063,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -142949,10 +143074,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -142960,10 +143085,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -142971,10 +143096,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -142982,10 +143107,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -142994,9 +143119,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -143005,9 +143130,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -143015,10 +143140,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -143026,10 +143151,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -143037,10 +143162,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -143048,10 +143173,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -143059,10 +143184,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -143070,10 +143195,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -143081,10 +143206,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -143092,10 +143217,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -143103,10 +143228,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -143114,10 +143239,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -143126,9 +143251,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -143137,130 +143262,130 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 17621, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 17622, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 17623, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 17624, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17625, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 17626, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17627, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17628, - "properties": { - "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 17629, + "id": 17627, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 17630, + "id": 17628, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 17629, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17630, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 17631, "properties": { "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -143269,9 +143394,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -143279,10 +143404,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -143290,10 +143415,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -143301,10 +143426,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -143312,10 +143437,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -143323,10 +143448,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -143334,10 +143459,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -143345,10 +143470,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -143356,10 +143481,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -143367,10 +143492,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -143378,10 +143503,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -143390,9 +143515,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -143401,9 +143526,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -143411,10 +143536,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -143422,10 +143547,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -143433,10 +143558,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -143444,10 +143569,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -143455,10 +143580,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -143466,10 +143591,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -143477,10 +143602,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -143488,10 +143613,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -143499,10 +143624,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -143510,14 +143635,124 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17655, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17656, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17657, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17658, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17659, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17660, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17661, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17662, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17663, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17664, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17665, "properties": { "east": "low", "north": "tall", @@ -143528,7 +143763,7 @@ } }, { - "id": 17656, + "id": 17666, "properties": { "east": "low", "north": "tall", @@ -143538,125 +143773,15 @@ "west": "tall" } }, - { - "id": 17657, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17658, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17659, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17660, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17661, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17662, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17663, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17664, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17665, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17666, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 17667, "properties": { "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -143665,9 +143790,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -143675,10 +143800,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -143686,10 +143811,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -143697,10 +143822,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -143708,10 +143833,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -143719,10 +143844,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -143730,10 +143855,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -143741,10 +143866,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -143752,10 +143877,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -143763,10 +143888,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -143774,10 +143899,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -143786,9 +143911,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -143797,9 +143922,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -143807,10 +143932,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -143818,10 +143943,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -143829,10 +143954,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -143840,10 +143965,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -143851,10 +143976,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -143862,10 +143987,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -143873,10 +143998,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -143884,10 +144009,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -143895,10 +144020,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -143906,14 +144031,124 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17691, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17692, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17693, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17694, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17695, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17696, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17697, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17698, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17699, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17700, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17701, "properties": { "east": "tall", "north": "none", @@ -143924,7 +144159,7 @@ } }, { - "id": 17692, + "id": 17702, "properties": { "east": "tall", "north": "none", @@ -143934,125 +144169,15 @@ "west": "tall" } }, - { - "id": 17693, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17694, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17695, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17696, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17697, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17698, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17699, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17700, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17701, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17702, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 17703, "properties": { "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -144061,9 +144186,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -144071,10 +144196,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -144082,10 +144207,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -144093,10 +144218,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -144104,10 +144229,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -144115,10 +144240,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -144126,10 +144251,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -144137,10 +144262,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -144148,10 +144273,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -144159,10 +144284,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -144170,10 +144295,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -144182,9 +144307,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -144193,9 +144318,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -144203,10 +144328,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -144214,10 +144339,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -144225,10 +144350,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -144236,10 +144361,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -144247,10 +144372,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -144258,10 +144383,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -144269,10 +144394,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -144280,10 +144405,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -144291,10 +144416,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -144302,14 +144427,124 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17727, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17728, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17729, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17730, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17731, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17732, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17733, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17734, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17735, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17736, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17737, "properties": { "east": "tall", "north": "low", @@ -144320,7 +144555,7 @@ } }, { - "id": 17728, + "id": 17738, "properties": { "east": "tall", "north": "low", @@ -144330,125 +144565,15 @@ "west": "tall" } }, - { - "id": 17729, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17730, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17731, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17732, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17733, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17734, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17735, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17736, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17737, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17738, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 17739, "properties": { "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -144457,9 +144582,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -144467,10 +144592,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -144478,10 +144603,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -144489,10 +144614,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -144500,10 +144625,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -144511,10 +144636,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -144522,10 +144647,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -144533,10 +144658,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -144544,10 +144669,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -144555,10 +144680,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -144566,14 +144691,124 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17751, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17752, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17753, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17754, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17755, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17756, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17757, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17758, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17759, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17760, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17761, "properties": { "east": "tall", "north": "tall", @@ -144584,7 +144819,7 @@ } }, { - "id": 17752, + "id": 17762, "properties": { "east": "tall", "north": "tall", @@ -144594,118 +144829,118 @@ "west": "tall" } }, - { - "id": 17753, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17754, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17755, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17756, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17757, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17758, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17759, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17760, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17761, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17762, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 17763, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17764, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17765, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17766, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17767, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17768, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17769, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17770, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17771, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17772, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17773, "properties": { "east": "tall", "north": "tall", @@ -144716,7 +144951,7 @@ } }, { - "id": 17764, + "id": 17774, "properties": { "east": "tall", "north": "tall", @@ -144736,7 +144971,7 @@ "states": [ { "default": true, - "id": 8046 + "id": 8056 } ] }, @@ -144771,13 +145006,13 @@ "states": [ { "default": true, - "id": 6033, + "id": 6043, "properties": { "axis": "x" } }, { - "id": 6034, + "id": 6044, "properties": { "axis": "z" } @@ -144797,7 +145032,7 @@ "states": [ { "default": true, - "id": 10023 + "id": 10033 } ] }, @@ -144809,7 +145044,7 @@ "states": [ { "default": true, - "id": 19608 + "id": 19618 } ] }, @@ -144829,25 +145064,25 @@ "states": [ { "default": true, - "id": 8159, + "id": 8169, "properties": { "age": "0" } }, { - "id": 8160, + "id": 8170, "properties": { "age": "1" } }, { - "id": 8161, + "id": 8171, "properties": { "age": "2" } }, { - "id": 8162, + "id": 8172, "properties": { "age": "3" } @@ -144862,7 +145097,7 @@ "states": [ { "default": true, - "id": 13557 + "id": 13567 } ] }, @@ -144874,7 +145109,7 @@ "states": [ { "default": true, - "id": 20460 + "id": 20475 } ] }, @@ -144886,7 +145121,7 @@ "states": [ { "default": true, - "id": 6018 + "id": 6028 } ] }, @@ -154183,7 +154418,7 @@ }, "states": [ { - "id": 9386, + "id": 9396, "properties": { "face": "floor", "facing": "north", @@ -154191,7 +154426,7 @@ } }, { - "id": 9387, + "id": 9397, "properties": { "face": "floor", "facing": "north", @@ -154199,7 +154434,7 @@ } }, { - "id": 9388, + "id": 9398, "properties": { "face": "floor", "facing": "south", @@ -154207,7 +154442,7 @@ } }, { - "id": 9389, + "id": 9399, "properties": { "face": "floor", "facing": "south", @@ -154215,7 +154450,7 @@ } }, { - "id": 9390, + "id": 9400, "properties": { "face": "floor", "facing": "west", @@ -154223,7 +154458,7 @@ } }, { - "id": 9391, + "id": 9401, "properties": { "face": "floor", "facing": "west", @@ -154231,7 +154466,7 @@ } }, { - "id": 9392, + "id": 9402, "properties": { "face": "floor", "facing": "east", @@ -154239,7 +154474,7 @@ } }, { - "id": 9393, + "id": 9403, "properties": { "face": "floor", "facing": "east", @@ -154247,7 +154482,7 @@ } }, { - "id": 9394, + "id": 9404, "properties": { "face": "wall", "facing": "north", @@ -154256,95 +154491,95 @@ }, { "default": true, - "id": 9395, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9396, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 9397, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 9398, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 9399, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 9400, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 9401, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 9402, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 9403, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9404, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { "id": 9405, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "north", "powered": "false" } }, { "id": 9406, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9407, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9408, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 9409, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 9410, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 9411, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 9412, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 9413, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 9414, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9415, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9416, "properties": { "face": "ceiling", "facing": "west", @@ -154352,7 +154587,7 @@ } }, { - "id": 9407, + "id": 9417, "properties": { "face": "ceiling", "facing": "west", @@ -154360,7 +154595,7 @@ } }, { - "id": 9408, + "id": 9418, "properties": { "face": "ceiling", "facing": "east", @@ -154368,7 +154603,7 @@ } }, { - "id": 9409, + "id": 9419, "properties": { "face": "ceiling", "facing": "east", @@ -154408,108 +154643,108 @@ ] }, "states": [ - { - "id": 4677, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 4678, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 4679, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 4680, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 4681, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 4682, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 4683, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 4684, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 4685, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, { "id": 4686, "properties": { "facing": "north", - "half": "lower", + "half": "upper", "hinge": "left", "open": "true", - "powered": "false" + "powered": "true" } }, { "id": 4687, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4688, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4689, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4690, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4691, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4692, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4693, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4694, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4695, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4696, "properties": { "facing": "north", "half": "lower", @@ -154520,197 +154755,197 @@ }, { "default": true, - "id": 4688, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 4689, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 4690, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 4691, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 4692, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 4693, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 4694, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 4695, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 4696, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { "id": 4697, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { "id": 4698, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", "open": "true", - "powered": "false" + "powered": "true" } }, { "id": 4699, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", - "powered": "true" + "open": "true", + "powered": "false" } }, { "id": 4700, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", "open": "false", - "powered": "false" + "powered": "true" } }, { "id": 4701, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" + "hinge": "right", + "open": "false", + "powered": "false" } }, { "id": 4702, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", "open": "true", - "powered": "false" + "powered": "true" } }, { "id": 4703, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", - "powered": "true" + "open": "true", + "powered": "false" } }, { "id": 4704, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", "open": "false", - "powered": "false" + "powered": "true" } }, { "id": 4705, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { "id": 4706, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "right", "open": "true", - "powered": "false" + "powered": "true" } }, { "id": 4707, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4708, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4709, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4710, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4711, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4712, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4713, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4714, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4715, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4716, "properties": { "facing": "south", "half": "lower", @@ -154720,7 +154955,7 @@ } }, { - "id": 4708, + "id": 4717, "properties": { "facing": "south", "half": "lower", @@ -154729,148 +154964,148 @@ "powered": "false" } }, - { - "id": 4709, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 4710, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 4711, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 4712, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 4713, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 4714, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 4715, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 4716, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 4717, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, { "id": 4718, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", "open": "true", - "powered": "false" + "powered": "true" } }, { "id": 4719, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", - "powered": "true" + "open": "true", + "powered": "false" } }, { "id": 4720, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", "open": "false", - "powered": "false" + "powered": "true" } }, { "id": 4721, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { "id": 4722, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "right", "open": "true", - "powered": "false" + "powered": "true" } }, { "id": 4723, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4724, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4725, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4726, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4727, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4728, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4729, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4730, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4731, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4732, "properties": { "facing": "west", "half": "lower", @@ -154880,7 +155115,7 @@ } }, { - "id": 4724, + "id": 4733, "properties": { "facing": "west", "half": "lower", @@ -154889,118 +155124,118 @@ "powered": "false" } }, - { - "id": 4725, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 4726, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 4727, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 4728, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 4729, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 4730, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 4731, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 4732, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 4733, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, { "id": 4734, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", "open": "true", - "powered": "false" + "powered": "true" } }, { "id": 4735, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", - "powered": "true" + "open": "true", + "powered": "false" } }, { "id": 4736, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4737, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4738, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4739, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4740, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4741, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4742, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4743, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4744, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4745, "properties": { "facing": "east", "half": "lower", @@ -155010,7 +155245,7 @@ } }, { - "id": 4737, + "id": 4746, "properties": { "facing": "east", "half": "lower", @@ -155020,7 +155255,7 @@ } }, { - "id": 4738, + "id": 4747, "properties": { "facing": "east", "half": "lower", @@ -155030,7 +155265,7 @@ } }, { - "id": 4739, + "id": 4748, "properties": { "facing": "east", "half": "lower", @@ -155040,7 +155275,7 @@ } }, { - "id": 4740, + "id": 4749, "properties": { "facing": "east", "half": "lower", @@ -155079,113 +155314,13 @@ ] }, "states": [ - { - "id": 5986, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 5987, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 5988, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 5989, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 5990, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 5991, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 5992, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 5993, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 5994, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 5995, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 5996, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -155193,9 +155328,9 @@ "id": 5997, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -155203,9 +155338,9 @@ "id": 5998, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -155213,14 +155348,114 @@ "id": 5999, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 6000, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6001, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6002, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6003, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6004, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6005, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6006, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6007, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6008, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6009, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6010, "properties": { "east": "true", "north": "false", @@ -155230,7 +155465,7 @@ } }, { - "id": 6001, + "id": 6011, "properties": { "east": "true", "north": "false", @@ -155239,118 +155474,118 @@ "west": "false" } }, - { - "id": 6002, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6003, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6004, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6005, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6006, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6007, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6008, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6009, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6010, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6011, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 6012, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 6013, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6014, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6015, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6016, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6017, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6018, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6019, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6020, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6021, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6022, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6023, "properties": { "east": "false", "north": "false", @@ -155360,7 +155595,7 @@ } }, { - "id": 6014, + "id": 6024, "properties": { "east": "false", "north": "false", @@ -155370,7 +155605,7 @@ } }, { - "id": 6015, + "id": 6025, "properties": { "east": "false", "north": "false", @@ -155380,7 +155615,7 @@ } }, { - "id": 6016, + "id": 6026, "properties": { "east": "false", "north": "false", @@ -155391,7 +155626,7 @@ }, { "default": true, - "id": 6017, + "id": 6027, "properties": { "east": "false", "north": "false", @@ -155430,7 +155665,7 @@ }, "states": [ { - "id": 7358, + "id": 7368, "properties": { "facing": "north", "in_wall": "true", @@ -155439,7 +155674,7 @@ } }, { - "id": 7359, + "id": 7369, "properties": { "facing": "north", "in_wall": "true", @@ -155448,7 +155683,7 @@ } }, { - "id": 7360, + "id": 7370, "properties": { "facing": "north", "in_wall": "true", @@ -155457,7 +155692,7 @@ } }, { - "id": 7361, + "id": 7371, "properties": { "facing": "north", "in_wall": "true", @@ -155466,7 +155701,7 @@ } }, { - "id": 7362, + "id": 7372, "properties": { "facing": "north", "in_wall": "false", @@ -155475,7 +155710,7 @@ } }, { - "id": 7363, + "id": 7373, "properties": { "facing": "north", "in_wall": "false", @@ -155484,7 +155719,7 @@ } }, { - "id": 7364, + "id": 7374, "properties": { "facing": "north", "in_wall": "false", @@ -155494,7 +155729,7 @@ }, { "default": true, - "id": 7365, + "id": 7375, "properties": { "facing": "north", "in_wall": "false", @@ -155502,143 +155737,143 @@ "powered": "false" } }, - { - "id": 7366, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 7367, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 7368, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 7369, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 7370, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 7371, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 7372, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 7373, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 7374, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 7375, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, { "id": 7376, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 7377, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 7378, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "true" } }, { "id": 7379, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "false" } }, { "id": 7380, "properties": { - "facing": "west", + "facing": "south", "in_wall": "false", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 7381, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 7382, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 7383, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 7384, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 7385, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 7386, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 7387, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 7388, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 7389, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 7390, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 7391, "properties": { "facing": "west", "in_wall": "false", @@ -155647,7 +155882,7 @@ } }, { - "id": 7382, + "id": 7392, "properties": { "facing": "east", "in_wall": "true", @@ -155656,7 +155891,7 @@ } }, { - "id": 7383, + "id": 7393, "properties": { "facing": "east", "in_wall": "true", @@ -155665,7 +155900,7 @@ } }, { - "id": 7384, + "id": 7394, "properties": { "facing": "east", "in_wall": "true", @@ -155674,7 +155909,7 @@ } }, { - "id": 7385, + "id": 7395, "properties": { "facing": "east", "in_wall": "true", @@ -155683,7 +155918,7 @@ } }, { - "id": 7386, + "id": 7396, "properties": { "facing": "east", "in_wall": "false", @@ -155692,7 +155927,7 @@ } }, { - "id": 7387, + "id": 7397, "properties": { "facing": "east", "in_wall": "false", @@ -155701,7 +155936,7 @@ } }, { - "id": 7388, + "id": 7398, "properties": { "facing": "east", "in_wall": "false", @@ -155710,7 +155945,7 @@ } }, { - "id": 7389, + "id": 7399, "properties": { "facing": "east", "in_wall": "false", @@ -155755,240 +155990,240 @@ ] }, "states": [ - { - "id": 4929, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 4930, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4931, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4932, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4933, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4934, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4935, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4936, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4937, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, { "id": 4938, "properties": { "attached": "true", - "rotation": "4", - "waterlogged": "false" + "rotation": "0", + "waterlogged": "true" } }, { "id": 4939, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "true" + "rotation": "0", + "waterlogged": "false" } }, { "id": 4940, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 4941, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 4942, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 4943, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 4944, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 4945, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 4946, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 4947, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 4948, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 4949, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 4950, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 4951, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 4952, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 4953, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 4954, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 4955, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 4956, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "false" + "rotation": "9", + "waterlogged": "true" } }, { "id": 4957, "properties": { "attached": "true", - "rotation": "14", - "waterlogged": "true" + "rotation": "9", + "waterlogged": "false" } }, { "id": 4958, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4959, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4960, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4961, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4962, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4963, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4964, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4965, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4966, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4967, "properties": { "attached": "true", "rotation": "14", @@ -155996,7 +156231,7 @@ } }, { - "id": 4959, + "id": 4968, "properties": { "attached": "true", "rotation": "15", @@ -156004,7 +156239,7 @@ } }, { - "id": 4960, + "id": 4969, "properties": { "attached": "true", "rotation": "15", @@ -156012,7 +156247,7 @@ } }, { - "id": 4961, + "id": 4970, "properties": { "attached": "false", "rotation": "0", @@ -156021,215 +156256,215 @@ }, { "default": true, - "id": 4962, + "id": 4971, "properties": { "attached": "false", "rotation": "0", "waterlogged": "false" } }, - { - "id": 4963, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4964, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4965, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4966, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4967, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4968, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4969, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4970, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4971, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 4972, "properties": { "attached": "false", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 4973, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 4974, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 4975, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 4976, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 4977, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 4978, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 4979, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 4980, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 4981, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 4982, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 4983, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 4984, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 4985, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 4986, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 4987, "properties": { "attached": "false", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 4988, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4989, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4990, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4991, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4992, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4993, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4994, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4995, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4996, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4997, "properties": { "attached": "false", "rotation": "13", @@ -156237,7 +156472,7 @@ } }, { - "id": 4989, + "id": 4998, "properties": { "attached": "false", "rotation": "14", @@ -156245,7 +156480,7 @@ } }, { - "id": 4990, + "id": 4999, "properties": { "attached": "false", "rotation": "14", @@ -156253,7 +156488,7 @@ } }, { - "id": 4991, + "id": 5000, "properties": { "attached": "false", "rotation": "15", @@ -156261,7 +156496,7 @@ } }, { - "id": 4992, + "id": 5001, "properties": { "attached": "false", "rotation": "15", @@ -156272,7 +156507,8 @@ }, "minecraft:oak_leaves": { "definition": { - "type": "minecraft:leaves", + "type": "minecraft:tinted_particle_leaves", + "leaf_particle_chance": 0.01, "properties": {} }, "properties": { @@ -156582,14 +156818,14 @@ }, "states": [ { - "id": 5883, + "id": 5892, "properties": { "powered": "true" } }, { "default": true, - "id": 5884, + "id": 5893, "properties": { "powered": "false" } @@ -156656,7 +156892,7 @@ }, "states": [ { - "id": 4357, + "id": 4366, "properties": { "rotation": "0", "waterlogged": "true" @@ -156664,217 +156900,217 @@ }, { "default": true, - "id": 4358, + "id": 4367, "properties": { "rotation": "0", "waterlogged": "false" } }, - { - "id": 4359, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4360, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4361, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4362, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4363, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4364, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4365, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4366, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4367, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 4368, "properties": { - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 4369, "properties": { - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 4370, "properties": { - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 4371, "properties": { - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 4372, "properties": { - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 4373, "properties": { - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 4374, "properties": { - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 4375, "properties": { - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 4376, "properties": { - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 4377, "properties": { - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 4378, "properties": { - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 4379, "properties": { - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 4380, "properties": { - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 4381, "properties": { - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 4382, "properties": { - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 4383, "properties": { - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 4384, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4385, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4386, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4387, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4388, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4389, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4390, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4391, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4392, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4393, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 4385, + "id": 4394, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 4386, + "id": 4395, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 4387, + "id": 4396, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 4388, + "id": 4397, "properties": { "rotation": "15", "waterlogged": "false" @@ -156900,21 +157136,21 @@ }, "states": [ { - "id": 12041, + "id": 12051, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12042, + "id": 12052, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12043, + "id": 12053, "properties": { "type": "bottom", "waterlogged": "true" @@ -156922,21 +157158,21 @@ }, { "default": true, - "id": 12044, + "id": 12054, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12045, + "id": 12055, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12046, + "id": 12056, "properties": { "type": "double", "waterlogged": "false" @@ -156976,89 +157212,89 @@ ] }, "states": [ - { - "id": 2929, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 2930, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 2931, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 2932, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 2933, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 2934, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 2935, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 2936, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 2937, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, { "id": 2938, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 2939, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 2940, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 2941, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 2942, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 2943, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 2944, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2945, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2946, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2947, "properties": { "facing": "north", "half": "top", @@ -157067,7 +157303,7 @@ } }, { - "id": 2939, + "id": 2948, "properties": { "facing": "north", "half": "bottom", @@ -157077,255 +157313,174 @@ }, { "default": true, - "id": 2940, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 2941, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 2942, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 2943, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 2944, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 2945, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 2946, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 2947, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 2948, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { "id": 2949, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 2950, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 2951, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 2952, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 2953, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 2954, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 2955, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 2956, - "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } }, { - "id": 2957, + "id": 2956, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } }, + { + "id": 2957, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, { "id": 2958, "properties": { "facing": "south", "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "shape": "straight", + "waterlogged": "true" } }, { "id": 2959, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 2960, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 2961, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 2962, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 2963, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 2964, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 2965, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 2966, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { "id": 2967, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -157333,179 +157488,179 @@ "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "shape": "straight", + "waterlogged": "true" } }, { "id": 2969, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 2970, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 2971, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 2972, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 2973, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 2974, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 2975, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 2976, - "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } }, { - "id": 2977, + "id": 2976, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } }, + { + "id": 2977, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, { "id": 2978, "properties": { "facing": "west", "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "shape": "straight", + "waterlogged": "true" } }, { "id": 2979, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 2980, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 2981, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 2982, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 2983, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 2984, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 2985, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 2986, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { "id": 2987, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -157513,147 +157668,228 @@ "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "shape": "straight", + "waterlogged": "true" } }, { "id": 2989, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 2990, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 2991, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 2992, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 2993, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 2994, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 2995, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 2996, - "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } }, { - "id": 2997, + "id": 2996, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } }, + { + "id": 2997, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, { "id": 2998, "properties": { "facing": "east", "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "shape": "straight", + "waterlogged": "true" } }, { "id": 2999, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 3000, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 3001, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 3002, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 3003, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 3004, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3005, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3006, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3007, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3008, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3009, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3010, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3011, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3012, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3013, "properties": { "facing": "east", "half": "bottom", @@ -157662,7 +157898,7 @@ } }, { - "id": 3005, + "id": 3014, "properties": { "facing": "east", "half": "bottom", @@ -157671,7 +157907,7 @@ } }, { - "id": 3006, + "id": 3015, "properties": { "facing": "east", "half": "bottom", @@ -157680,7 +157916,7 @@ } }, { - "id": 3007, + "id": 3016, "properties": { "facing": "east", "half": "bottom", @@ -157689,7 +157925,7 @@ } }, { - "id": 3008, + "id": 3017, "properties": { "facing": "east", "half": "bottom", @@ -157730,118 +157966,118 @@ ] }, "states": [ - { - "id": 6130, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6131, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6132, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6133, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6134, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6135, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6136, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6137, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6138, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6139, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6140, "properties": { "facing": "north", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, { "id": 6141, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6142, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6143, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6144, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6145, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6146, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6147, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6148, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6149, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6150, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6151, "properties": { "facing": "north", "half": "bottom", @@ -157851,7 +158087,7 @@ } }, { - "id": 6142, + "id": 6152, "properties": { "facing": "north", "half": "bottom", @@ -157861,7 +158097,7 @@ } }, { - "id": 6143, + "id": 6153, "properties": { "facing": "north", "half": "bottom", @@ -157871,7 +158107,7 @@ } }, { - "id": 6144, + "id": 6154, "properties": { "facing": "north", "half": "bottom", @@ -157882,7 +158118,7 @@ }, { "default": true, - "id": 6145, + "id": 6155, "properties": { "facing": "north", "half": "bottom", @@ -157891,113 +158127,13 @@ "waterlogged": "false" } }, - { - "id": 6146, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6147, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6148, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6149, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6150, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6151, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6152, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6153, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6154, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6155, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6156, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -158005,9 +158141,9 @@ "id": 6157, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -158015,9 +158151,9 @@ "id": 6158, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -158025,14 +158161,114 @@ "id": 6159, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6160, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6161, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6162, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6163, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6164, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6165, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6166, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6167, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6168, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6169, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6170, "properties": { "facing": "south", "half": "bottom", @@ -158042,7 +158278,7 @@ } }, { - "id": 6161, + "id": 6171, "properties": { "facing": "south", "half": "bottom", @@ -158051,113 +158287,13 @@ "waterlogged": "false" } }, - { - "id": 6162, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6163, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6164, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6165, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6166, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6167, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6168, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6169, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6170, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6171, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6172, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -158165,9 +158301,9 @@ "id": 6173, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -158175,9 +158311,9 @@ "id": 6174, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -158185,14 +158321,114 @@ "id": 6175, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6176, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6177, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6178, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6179, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6180, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6181, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6182, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6183, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6184, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6185, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6186, "properties": { "facing": "west", "half": "bottom", @@ -158202,7 +158438,7 @@ } }, { - "id": 6177, + "id": 6187, "properties": { "facing": "west", "half": "bottom", @@ -158211,113 +158447,13 @@ "waterlogged": "false" } }, - { - "id": 6178, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6179, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6180, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6181, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6182, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6183, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6184, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6185, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6186, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6187, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6188, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -158325,14 +158461,114 @@ "id": 6189, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, { "id": 6190, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6191, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6192, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6193, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6194, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6195, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6196, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6197, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6198, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6199, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6200, "properties": { "facing": "east", "half": "bottom", @@ -158342,7 +158578,7 @@ } }, { - "id": 6191, + "id": 6201, "properties": { "facing": "east", "half": "bottom", @@ -158352,7 +158588,7 @@ } }, { - "id": 6192, + "id": 6202, "properties": { "facing": "east", "half": "bottom", @@ -158362,7 +158598,7 @@ } }, { - "id": 6193, + "id": 6203, "properties": { "facing": "east", "half": "bottom", @@ -158393,7 +158629,7 @@ }, "states": [ { - "id": 5697, + "id": 5706, "properties": { "facing": "north", "waterlogged": "true" @@ -158401,49 +158637,49 @@ }, { "default": true, - "id": 5698, + "id": 5707, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5699, + "id": 5708, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5700, + "id": 5709, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5701, + "id": 5710, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5702, + "id": 5711, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5703, + "id": 5712, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5704, + "id": 5713, "properties": { "facing": "east", "waterlogged": "false" @@ -158471,7 +158707,7 @@ }, "states": [ { - "id": 4849, + "id": 4858, "properties": { "facing": "north", "waterlogged": "true" @@ -158479,49 +158715,49 @@ }, { "default": true, - "id": 4850, + "id": 4859, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 4851, + "id": 4860, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 4852, + "id": 4861, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 4853, + "id": 4862, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 4854, + "id": 4863, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 4855, + "id": 4864, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4856, + "id": 4865, "properties": { "facing": "east", "waterlogged": "false" @@ -158584,35 +158820,35 @@ }, "states": [ { - "id": 13563, + "id": 13573, "properties": { "facing": "north", "powered": "true" } }, { - "id": 13564, + "id": 13574, "properties": { "facing": "north", "powered": "false" } }, { - "id": 13565, + "id": 13575, "properties": { "facing": "east", "powered": "true" } }, { - "id": 13566, + "id": 13576, "properties": { "facing": "east", "powered": "false" } }, { - "id": 13567, + "id": 13577, "properties": { "facing": "south", "powered": "true" @@ -158620,49 +158856,49 @@ }, { "default": true, - "id": 13568, + "id": 13578, "properties": { "facing": "south", "powered": "false" } }, { - "id": 13569, + "id": 13579, "properties": { "facing": "west", "powered": "true" } }, { - "id": 13570, + "id": 13580, "properties": { "facing": "west", "powered": "false" } }, { - "id": 13571, + "id": 13581, "properties": { "facing": "up", "powered": "true" } }, { - "id": 13572, + "id": 13582, "properties": { "facing": "up", "powered": "false" } }, { - "id": 13573, + "id": 13583, "properties": { "facing": "down", "powered": "true" } }, { - "id": 13574, + "id": 13584, "properties": { "facing": "down", "powered": "false" @@ -158678,7 +158914,7 @@ "states": [ { "default": true, - "id": 2397 + "id": 2400 } ] }, @@ -158696,20 +158932,20 @@ }, "states": [ { - "id": 27576, + "id": 27623, "properties": { "axis": "x" } }, { "default": true, - "id": 27577, + "id": 27624, "properties": { "axis": "y" } }, { - "id": 27578, + "id": 27625, "properties": { "axis": "z" } @@ -158725,7 +158961,7 @@ "states": [ { "default": true, - "id": 27862 + "id": 27909 } ] }, @@ -158758,97 +158994,97 @@ "states": [ { "default": true, - "id": 11654, + "id": 11664, "properties": { "rotation": "0" } }, { - "id": 11655, + "id": 11665, "properties": { "rotation": "1" } }, { - "id": 11656, + "id": 11666, "properties": { "rotation": "2" } }, { - "id": 11657, + "id": 11667, "properties": { "rotation": "3" } }, { - "id": 11658, + "id": 11668, "properties": { "rotation": "4" } }, { - "id": 11659, + "id": 11669, "properties": { "rotation": "5" } }, { - "id": 11660, + "id": 11670, "properties": { "rotation": "6" } }, { - "id": 11661, + "id": 11671, "properties": { "rotation": "7" } }, { - "id": 11662, + "id": 11672, "properties": { "rotation": "8" } }, { - "id": 11663, + "id": 11673, "properties": { "rotation": "9" } }, { - "id": 11664, + "id": 11674, "properties": { "rotation": "10" } }, { - "id": 11665, + "id": 11675, "properties": { "rotation": "11" } }, { - "id": 11666, + "id": 11676, "properties": { "rotation": "12" } }, { - "id": 11667, + "id": 11677, "properties": { "rotation": "13" } }, { - "id": 11668, + "id": 11678, "properties": { "rotation": "14" } }, { - "id": 11669, + "id": 11679, "properties": { "rotation": "15" } @@ -159032,7 +159268,7 @@ }, "states": [ { - "id": 21770, + "id": 21785, "properties": { "candles": "1", "lit": "true", @@ -159040,7 +159276,7 @@ } }, { - "id": 21771, + "id": 21786, "properties": { "candles": "1", "lit": "true", @@ -159048,7 +159284,7 @@ } }, { - "id": 21772, + "id": 21787, "properties": { "candles": "1", "lit": "false", @@ -159057,7 +159293,7 @@ }, { "default": true, - "id": 21773, + "id": 21788, "properties": { "candles": "1", "lit": "false", @@ -159065,7 +159301,7 @@ } }, { - "id": 21774, + "id": 21789, "properties": { "candles": "2", "lit": "true", @@ -159073,7 +159309,7 @@ } }, { - "id": 21775, + "id": 21790, "properties": { "candles": "2", "lit": "true", @@ -159081,7 +159317,7 @@ } }, { - "id": 21776, + "id": 21791, "properties": { "candles": "2", "lit": "false", @@ -159089,7 +159325,7 @@ } }, { - "id": 21777, + "id": 21792, "properties": { "candles": "2", "lit": "false", @@ -159097,7 +159333,7 @@ } }, { - "id": 21778, + "id": 21793, "properties": { "candles": "3", "lit": "true", @@ -159105,7 +159341,7 @@ } }, { - "id": 21779, + "id": 21794, "properties": { "candles": "3", "lit": "true", @@ -159113,7 +159349,7 @@ } }, { - "id": 21780, + "id": 21795, "properties": { "candles": "3", "lit": "false", @@ -159121,7 +159357,7 @@ } }, { - "id": 21781, + "id": 21796, "properties": { "candles": "3", "lit": "false", @@ -159129,7 +159365,7 @@ } }, { - "id": 21782, + "id": 21797, "properties": { "candles": "4", "lit": "true", @@ -159137,7 +159373,7 @@ } }, { - "id": 21783, + "id": 21798, "properties": { "candles": "4", "lit": "true", @@ -159145,7 +159381,7 @@ } }, { - "id": 21784, + "id": 21799, "properties": { "candles": "4", "lit": "false", @@ -159153,7 +159389,7 @@ } }, { - "id": 21785, + "id": 21800, "properties": { "candles": "4", "lit": "false", @@ -159176,14 +159412,14 @@ }, "states": [ { - "id": 22014, + "id": 22029, "properties": { "lit": "true" } }, { "default": true, - "id": 22015, + "id": 22030, "properties": { "lit": "false" } @@ -159199,7 +159435,7 @@ "states": [ { "default": true, - "id": 11608 + "id": 11618 } ] }, @@ -159211,7 +159447,7 @@ "states": [ { "default": true, - "id": 13742 + "id": 13752 } ] }, @@ -159224,7 +159460,7 @@ "states": [ { "default": true, - "id": 13758 + "id": 13768 } ] }, @@ -159244,25 +159480,25 @@ "states": [ { "default": true, - "id": 13681, + "id": 13691, "properties": { "facing": "north" } }, { - "id": 13682, + "id": 13692, "properties": { "facing": "south" } }, { - "id": 13683, + "id": 13693, "properties": { "facing": "west" } }, { - "id": 13684, + "id": 13694, "properties": { "facing": "east" } @@ -159287,38 +159523,38 @@ }, "states": [ { - "id": 13587, + "id": 13597, "properties": { "facing": "north" } }, { - "id": 13588, + "id": 13598, "properties": { "facing": "east" } }, { - "id": 13589, + "id": 13599, "properties": { "facing": "south" } }, { - "id": 13590, + "id": 13600, "properties": { "facing": "west" } }, { "default": true, - "id": 13591, + "id": 13601, "properties": { "facing": "up" } }, { - "id": 13592, + "id": 13602, "properties": { "facing": "down" } @@ -159334,7 +159570,7 @@ "states": [ { "default": true, - "id": 6115 + "id": 6125 } ] }, @@ -159367,113 +159603,13 @@ ] }, "states": [ - { - "id": 10203, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10204, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10205, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10206, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10207, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10208, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10209, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10210, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10211, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10212, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10213, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -159481,9 +159617,9 @@ "id": 10214, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -159491,9 +159627,9 @@ "id": 10215, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -159501,14 +159637,114 @@ "id": 10216, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 10217, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10218, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10219, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10220, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10221, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10222, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10223, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10224, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10225, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10226, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10227, "properties": { "east": "true", "north": "false", @@ -159518,7 +159754,7 @@ } }, { - "id": 10218, + "id": 10228, "properties": { "east": "true", "north": "false", @@ -159527,118 +159763,118 @@ "west": "false" } }, - { - "id": 10219, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10220, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10221, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10222, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10223, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10224, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10225, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10226, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10227, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10228, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10229, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 10230, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10231, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10232, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10233, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10234, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10235, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10236, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10237, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10238, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10239, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10240, "properties": { "east": "false", "north": "false", @@ -159648,7 +159884,7 @@ } }, { - "id": 10231, + "id": 10241, "properties": { "east": "false", "north": "false", @@ -159658,7 +159894,7 @@ } }, { - "id": 10232, + "id": 10242, "properties": { "east": "false", "north": "false", @@ -159668,7 +159904,7 @@ } }, { - "id": 10233, + "id": 10243, "properties": { "east": "false", "north": "false", @@ -159679,7 +159915,7 @@ }, { "default": true, - "id": 10234, + "id": 10244, "properties": { "east": "false", "north": "false", @@ -159692,13 +159928,13 @@ }, "minecraft:orange_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 10156 + "id": 10166 } ] }, @@ -159716,7 +159952,7 @@ "states": [ { "default": true, - "id": 2125 + "id": 2128 } ] }, @@ -159737,25 +159973,25 @@ "states": [ { "default": true, - "id": 11898, + "id": 11908, "properties": { "facing": "north" } }, { - "id": 11899, + "id": 11909, "properties": { "facing": "south" } }, { - "id": 11900, + "id": 11910, "properties": { "facing": "west" } }, { - "id": 11901, + "id": 11911, "properties": { "facing": "east" } @@ -159770,7 +160006,7 @@ "states": [ { "default": true, - "id": 2091 + "id": 2094 } ] }, @@ -159788,7 +160024,7 @@ "states": [ { "default": true, - "id": 2128 + "id": 2131 } ] }, @@ -159801,7 +160037,7 @@ "states": [ { "default": true, - "id": 23961 + "id": 23976 } ] }, @@ -159814,7 +160050,7 @@ "states": [ { "default": true, - "id": 23954 + "id": 23969 } ] }, @@ -159836,21 +160072,21 @@ }, "states": [ { - "id": 25717, + "id": 25732, "properties": { "lit": "true", "powered": "true" } }, { - "id": 25718, + "id": 25733, "properties": { "lit": "true", "powered": "false" } }, { - "id": 25719, + "id": 25734, "properties": { "lit": "false", "powered": "true" @@ -159858,7 +160094,7 @@ }, { "default": true, - "id": 25720, + "id": 25735, "properties": { "lit": "false", "powered": "false" @@ -159899,7 +160135,7 @@ }, "states": [ { - "id": 24793, + "id": 24808, "properties": { "facing": "north", "half": "upper", @@ -159909,7 +160145,7 @@ } }, { - "id": 24794, + "id": 24809, "properties": { "facing": "north", "half": "upper", @@ -159919,7 +160155,7 @@ } }, { - "id": 24795, + "id": 24810, "properties": { "facing": "north", "half": "upper", @@ -159929,7 +160165,7 @@ } }, { - "id": 24796, + "id": 24811, "properties": { "facing": "north", "half": "upper", @@ -159939,7 +160175,7 @@ } }, { - "id": 24797, + "id": 24812, "properties": { "facing": "north", "half": "upper", @@ -159949,7 +160185,7 @@ } }, { - "id": 24798, + "id": 24813, "properties": { "facing": "north", "half": "upper", @@ -159959,7 +160195,7 @@ } }, { - "id": 24799, + "id": 24814, "properties": { "facing": "north", "half": "upper", @@ -159969,7 +160205,7 @@ } }, { - "id": 24800, + "id": 24815, "properties": { "facing": "north", "half": "upper", @@ -159979,7 +160215,7 @@ } }, { - "id": 24801, + "id": 24816, "properties": { "facing": "north", "half": "lower", @@ -159989,7 +160225,7 @@ } }, { - "id": 24802, + "id": 24817, "properties": { "facing": "north", "half": "lower", @@ -159999,7 +160235,7 @@ } }, { - "id": 24803, + "id": 24818, "properties": { "facing": "north", "half": "lower", @@ -160010,189 +160246,29 @@ }, { "default": true, - "id": 24804, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 24805, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24806, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 24807, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 24808, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 24809, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 24810, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 24811, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 24812, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 24813, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24814, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 24815, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 24816, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 24817, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 24818, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { "id": 24819, "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24820, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24821, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24822, - "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "right", "open": "true", @@ -160200,159 +160276,159 @@ } }, { - "id": 24823, + "id": 24822, "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true" } }, + { + "id": 24823, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { "id": 24824, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 24825, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24826, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24827, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24828, "properties": { - "facing": "west", + "facing": "south", "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24829, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24830, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24831, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24832, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 24833, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24834, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24835, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24836, "properties": { - "facing": "west", + "facing": "south", "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24837, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24838, - "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "right", "open": "true", @@ -160360,97 +160436,257 @@ } }, { - "id": 24839, + "id": 24838, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true" } }, + { + "id": 24839, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { "id": 24840, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 24841, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24842, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24843, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24844, "properties": { - "facing": "east", + "facing": "west", "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24845, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24846, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24847, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24848, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24849, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24850, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24851, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24852, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24853, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24854, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24855, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24856, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24857, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24858, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24859, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24860, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24861, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24862, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24863, "properties": { "facing": "east", "half": "upper", @@ -160460,7 +160696,7 @@ } }, { - "id": 24849, + "id": 24864, "properties": { "facing": "east", "half": "lower", @@ -160470,7 +160706,7 @@ } }, { - "id": 24850, + "id": 24865, "properties": { "facing": "east", "half": "lower", @@ -160480,7 +160716,7 @@ } }, { - "id": 24851, + "id": 24866, "properties": { "facing": "east", "half": "lower", @@ -160490,7 +160726,7 @@ } }, { - "id": 24852, + "id": 24867, "properties": { "facing": "east", "half": "lower", @@ -160500,7 +160736,7 @@ } }, { - "id": 24853, + "id": 24868, "properties": { "facing": "east", "half": "lower", @@ -160510,7 +160746,7 @@ } }, { - "id": 24854, + "id": 24869, "properties": { "facing": "east", "half": "lower", @@ -160520,7 +160756,7 @@ } }, { - "id": 24855, + "id": 24870, "properties": { "facing": "east", "half": "lower", @@ -160530,7 +160766,7 @@ } }, { - "id": 24856, + "id": 24871, "properties": { "facing": "east", "half": "lower", @@ -160555,14 +160791,14 @@ }, "states": [ { - "id": 25695, + "id": 25710, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 25696, + "id": 25711, "properties": { "waterlogged": "false" } @@ -160602,7 +160838,7 @@ }, "states": [ { - "id": 25305, + "id": 25320, "properties": { "facing": "north", "half": "top", @@ -160612,7 +160848,7 @@ } }, { - "id": 25306, + "id": 25321, "properties": { "facing": "north", "half": "top", @@ -160622,7 +160858,7 @@ } }, { - "id": 25307, + "id": 25322, "properties": { "facing": "north", "half": "top", @@ -160632,7 +160868,7 @@ } }, { - "id": 25308, + "id": 25323, "properties": { "facing": "north", "half": "top", @@ -160642,7 +160878,7 @@ } }, { - "id": 25309, + "id": 25324, "properties": { "facing": "north", "half": "top", @@ -160652,7 +160888,7 @@ } }, { - "id": 25310, + "id": 25325, "properties": { "facing": "north", "half": "top", @@ -160662,7 +160898,7 @@ } }, { - "id": 25311, + "id": 25326, "properties": { "facing": "north", "half": "top", @@ -160672,7 +160908,7 @@ } }, { - "id": 25312, + "id": 25327, "properties": { "facing": "north", "half": "top", @@ -160682,7 +160918,7 @@ } }, { - "id": 25313, + "id": 25328, "properties": { "facing": "north", "half": "bottom", @@ -160692,7 +160928,7 @@ } }, { - "id": 25314, + "id": 25329, "properties": { "facing": "north", "half": "bottom", @@ -160702,7 +160938,7 @@ } }, { - "id": 25315, + "id": 25330, "properties": { "facing": "north", "half": "bottom", @@ -160712,7 +160948,7 @@ } }, { - "id": 25316, + "id": 25331, "properties": { "facing": "north", "half": "bottom", @@ -160722,7 +160958,7 @@ } }, { - "id": 25317, + "id": 25332, "properties": { "facing": "north", "half": "bottom", @@ -160732,7 +160968,7 @@ } }, { - "id": 25318, + "id": 25333, "properties": { "facing": "north", "half": "bottom", @@ -160742,7 +160978,7 @@ } }, { - "id": 25319, + "id": 25334, "properties": { "facing": "north", "half": "bottom", @@ -160753,7 +160989,7 @@ }, { "default": true, - "id": 25320, + "id": 25335, "properties": { "facing": "north", "half": "bottom", @@ -160762,300 +160998,140 @@ "waterlogged": "false" } }, - { - "id": 25321, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25322, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25323, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25324, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25325, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25326, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25327, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25328, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25329, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25330, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25331, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25332, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25333, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25334, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25335, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, { "id": 25336, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25337, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25338, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25339, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25340, "properties": { - "facing": "west", + "facing": "south", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25341, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25342, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25343, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25344, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25345, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25346, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25347, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25348, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25349, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25350, - "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "false", "powered": "true", @@ -161063,97 +161139,257 @@ } }, { - "id": 25351, + "id": 25350, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true" } }, + { + "id": 25351, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, { "id": 25352, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25353, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25354, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25355, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25356, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25357, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25358, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25359, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25360, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25361, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25362, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25363, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25364, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25365, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25366, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25367, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25368, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25369, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25370, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25371, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25372, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25373, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25374, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25375, "properties": { "facing": "east", "half": "top", @@ -161163,7 +161399,7 @@ } }, { - "id": 25361, + "id": 25376, "properties": { "facing": "east", "half": "bottom", @@ -161173,7 +161409,7 @@ } }, { - "id": 25362, + "id": 25377, "properties": { "facing": "east", "half": "bottom", @@ -161183,7 +161419,7 @@ } }, { - "id": 25363, + "id": 25378, "properties": { "facing": "east", "half": "bottom", @@ -161193,7 +161429,7 @@ } }, { - "id": 25364, + "id": 25379, "properties": { "facing": "east", "half": "bottom", @@ -161203,7 +161439,7 @@ } }, { - "id": 25365, + "id": 25380, "properties": { "facing": "east", "half": "bottom", @@ -161213,7 +161449,7 @@ } }, { - "id": 25366, + "id": 25381, "properties": { "facing": "east", "half": "bottom", @@ -161223,7 +161459,7 @@ } }, { - "id": 25367, + "id": 25382, "properties": { "facing": "east", "half": "bottom", @@ -161233,7 +161469,7 @@ } }, { - "id": 25368, + "id": 25383, "properties": { "facing": "east", "half": "bottom", @@ -161253,7 +161489,7 @@ "states": [ { "default": true, - "id": 23957 + "id": 23972 } ] }, @@ -161276,21 +161512,21 @@ }, "states": [ { - "id": 24289, + "id": 24304, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 24290, + "id": 24305, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 24291, + "id": 24306, "properties": { "type": "bottom", "waterlogged": "true" @@ -161298,21 +161534,21 @@ }, { "default": true, - "id": 24292, + "id": 24307, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 24293, + "id": 24308, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 24294, + "id": 24309, "properties": { "type": "double", "waterlogged": "false" @@ -161354,7 +161590,7 @@ }, "states": [ { - "id": 23969, + "id": 23984, "properties": { "facing": "north", "half": "top", @@ -161363,7 +161599,7 @@ } }, { - "id": 23970, + "id": 23985, "properties": { "facing": "north", "half": "top", @@ -161372,7 +161608,7 @@ } }, { - "id": 23971, + "id": 23986, "properties": { "facing": "north", "half": "top", @@ -161381,7 +161617,7 @@ } }, { - "id": 23972, + "id": 23987, "properties": { "facing": "north", "half": "top", @@ -161390,7 +161626,7 @@ } }, { - "id": 23973, + "id": 23988, "properties": { "facing": "north", "half": "top", @@ -161399,7 +161635,7 @@ } }, { - "id": 23974, + "id": 23989, "properties": { "facing": "north", "half": "top", @@ -161408,7 +161644,7 @@ } }, { - "id": 23975, + "id": 23990, "properties": { "facing": "north", "half": "top", @@ -161417,7 +161653,7 @@ } }, { - "id": 23976, + "id": 23991, "properties": { "facing": "north", "half": "top", @@ -161426,7 +161662,7 @@ } }, { - "id": 23977, + "id": 23992, "properties": { "facing": "north", "half": "top", @@ -161435,7 +161671,7 @@ } }, { - "id": 23978, + "id": 23993, "properties": { "facing": "north", "half": "top", @@ -161444,7 +161680,7 @@ } }, { - "id": 23979, + "id": 23994, "properties": { "facing": "north", "half": "bottom", @@ -161454,250 +161690,250 @@ }, { "default": true, - "id": 23980, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23981, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23982, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23983, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23984, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23985, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23986, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23987, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23988, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23989, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23990, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23991, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23992, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23993, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23994, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { "id": 23995, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { "id": 23996, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 23997, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { "id": 23998, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 23999, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "shape": "inner_right", + "waterlogged": "false" } }, { "id": 24000, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 24001, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "shape": "outer_left", + "waterlogged": "false" } }, { "id": 24002, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "shape": "outer_right", + "waterlogged": "true" } }, { "id": 24003, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "shape": "outer_right", + "waterlogged": "false" } }, { "id": 24004, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24005, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24006, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24007, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24008, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24009, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24010, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24011, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24012, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24013, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24014, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24015, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24016, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24017, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24018, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24019, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24020, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24021, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24022, "properties": { "facing": "south", "half": "bottom", @@ -161706,7 +161942,7 @@ } }, { - "id": 24008, + "id": 24023, "properties": { "facing": "south", "half": "bottom", @@ -161714,170 +161950,170 @@ "waterlogged": "false" } }, - { - "id": 24009, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24010, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24011, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24012, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24013, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24014, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24015, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24016, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24017, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24018, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24019, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24020, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24021, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24022, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24023, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 24024, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24025, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24026, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24027, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24028, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24029, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24030, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24031, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24032, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24033, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24034, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24035, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24036, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24037, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24038, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24039, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24040, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24041, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24042, "properties": { "facing": "west", "half": "bottom", @@ -161886,7 +162122,7 @@ } }, { - "id": 24028, + "id": 24043, "properties": { "facing": "west", "half": "bottom", @@ -161894,152 +162130,152 @@ "waterlogged": "false" } }, - { - "id": 24029, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24030, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24031, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24032, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24033, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24034, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24035, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24036, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24037, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24038, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24039, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24040, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24041, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24042, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24043, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 24044, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24045, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24046, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24047, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24048, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24049, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24050, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24051, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24052, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24053, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24054, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24055, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24056, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24057, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24058, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24059, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24060, "properties": { "facing": "east", "half": "bottom", @@ -162048,7 +162284,7 @@ } }, { - "id": 24046, + "id": 24061, "properties": { "facing": "east", "half": "bottom", @@ -162057,7 +162293,7 @@ } }, { - "id": 24047, + "id": 24062, "properties": { "facing": "east", "half": "bottom", @@ -162066,7 +162302,7 @@ } }, { - "id": 24048, + "id": 24063, "properties": { "facing": "east", "half": "bottom", @@ -162084,7 +162320,7 @@ "states": [ { "default": true, - "id": 11625 + "id": 11635 } ] }, @@ -162096,7 +162332,7 @@ "states": [ { "default": true, - "id": 6774 + "id": 6784 } ] }, @@ -162114,13 +162350,13 @@ "states": [ { "default": true, - "id": 27860, + "id": 27907, "properties": { "tip": "true" } }, { - "id": 27861, + "id": 27908, "properties": { "tip": "false" } @@ -162136,7 +162372,7 @@ "states": [ { "default": true, - "id": 27697 + "id": 27744 } ] }, @@ -162174,797 +162410,797 @@ "states": [ { "default": true, - "id": 27698, - "properties": { - "bottom": "true", - "east": "none", - "north": "none", - "south": "none", - "west": "none" - } - }, - { - "id": 27699, - "properties": { - "bottom": "true", - "east": "none", - "north": "none", - "south": "none", - "west": "low" - } - }, - { - "id": 27700, - "properties": { - "bottom": "true", - "east": "none", - "north": "none", - "south": "none", - "west": "tall" - } - }, - { - "id": 27701, - "properties": { - "bottom": "true", - "east": "none", - "north": "none", - "south": "low", - "west": "none" - } - }, - { - "id": 27702, - "properties": { - "bottom": "true", - "east": "none", - "north": "none", - "south": "low", - "west": "low" - } - }, - { - "id": 27703, - "properties": { - "bottom": "true", - "east": "none", - "north": "none", - "south": "low", - "west": "tall" - } - }, - { - "id": 27704, - "properties": { - "bottom": "true", - "east": "none", - "north": "none", - "south": "tall", - "west": "none" - } - }, - { - "id": 27705, - "properties": { - "bottom": "true", - "east": "none", - "north": "none", - "south": "tall", - "west": "low" - } - }, - { - "id": 27706, - "properties": { - "bottom": "true", - "east": "none", - "north": "none", - "south": "tall", - "west": "tall" - } - }, - { - "id": 27707, - "properties": { - "bottom": "true", - "east": "none", - "north": "low", - "south": "none", - "west": "none" - } - }, - { - "id": 27708, - "properties": { - "bottom": "true", - "east": "none", - "north": "low", - "south": "none", - "west": "low" - } - }, - { - "id": 27709, - "properties": { - "bottom": "true", - "east": "none", - "north": "low", - "south": "none", - "west": "tall" - } - }, - { - "id": 27710, - "properties": { - "bottom": "true", - "east": "none", - "north": "low", - "south": "low", - "west": "none" - } - }, - { - "id": 27711, - "properties": { - "bottom": "true", - "east": "none", - "north": "low", - "south": "low", - "west": "low" - } - }, - { - "id": 27712, - "properties": { - "bottom": "true", - "east": "none", - "north": "low", - "south": "low", - "west": "tall" - } - }, - { - "id": 27713, - "properties": { - "bottom": "true", - "east": "none", - "north": "low", - "south": "tall", - "west": "none" - } - }, - { - "id": 27714, - "properties": { - "bottom": "true", - "east": "none", - "north": "low", - "south": "tall", - "west": "low" - } - }, - { - "id": 27715, - "properties": { - "bottom": "true", - "east": "none", - "north": "low", - "south": "tall", - "west": "tall" - } - }, - { - "id": 27716, - "properties": { - "bottom": "true", - "east": "none", - "north": "tall", - "south": "none", - "west": "none" - } - }, - { - "id": 27717, - "properties": { - "bottom": "true", - "east": "none", - "north": "tall", - "south": "none", - "west": "low" - } - }, - { - "id": 27718, - "properties": { - "bottom": "true", - "east": "none", - "north": "tall", - "south": "none", - "west": "tall" - } - }, - { - "id": 27719, - "properties": { - "bottom": "true", - "east": "none", - "north": "tall", - "south": "low", - "west": "none" - } - }, - { - "id": 27720, - "properties": { - "bottom": "true", - "east": "none", - "north": "tall", - "south": "low", - "west": "low" - } - }, - { - "id": 27721, - "properties": { - "bottom": "true", - "east": "none", - "north": "tall", - "south": "low", - "west": "tall" - } - }, - { - "id": 27722, - "properties": { - "bottom": "true", - "east": "none", - "north": "tall", - "south": "tall", - "west": "none" - } - }, - { - "id": 27723, - "properties": { - "bottom": "true", - "east": "none", - "north": "tall", - "south": "tall", - "west": "low" - } - }, - { - "id": 27724, - "properties": { - "bottom": "true", - "east": "none", - "north": "tall", - "south": "tall", - "west": "tall" - } - }, - { - "id": 27725, - "properties": { - "bottom": "true", - "east": "low", - "north": "none", - "south": "none", - "west": "none" - } - }, - { - "id": 27726, - "properties": { - "bottom": "true", - "east": "low", - "north": "none", - "south": "none", - "west": "low" - } - }, - { - "id": 27727, - "properties": { - "bottom": "true", - "east": "low", - "north": "none", - "south": "none", - "west": "tall" - } - }, - { - "id": 27728, - "properties": { - "bottom": "true", - "east": "low", - "north": "none", - "south": "low", - "west": "none" - } - }, - { - "id": 27729, - "properties": { - "bottom": "true", - "east": "low", - "north": "none", - "south": "low", - "west": "low" - } - }, - { - "id": 27730, - "properties": { - "bottom": "true", - "east": "low", - "north": "none", - "south": "low", - "west": "tall" - } - }, - { - "id": 27731, - "properties": { - "bottom": "true", - "east": "low", - "north": "none", - "south": "tall", - "west": "none" - } - }, - { - "id": 27732, - "properties": { - "bottom": "true", - "east": "low", - "north": "none", - "south": "tall", - "west": "low" - } - }, - { - "id": 27733, - "properties": { - "bottom": "true", - "east": "low", - "north": "none", - "south": "tall", - "west": "tall" - } - }, - { - "id": 27734, - "properties": { - "bottom": "true", - "east": "low", - "north": "low", - "south": "none", - "west": "none" - } - }, - { - "id": 27735, - "properties": { - "bottom": "true", - "east": "low", - "north": "low", - "south": "none", - "west": "low" - } - }, - { - "id": 27736, - "properties": { - "bottom": "true", - "east": "low", - "north": "low", - "south": "none", - "west": "tall" - } - }, - { - "id": 27737, - "properties": { - "bottom": "true", - "east": "low", - "north": "low", - "south": "low", - "west": "none" - } - }, - { - "id": 27738, - "properties": { - "bottom": "true", - "east": "low", - "north": "low", - "south": "low", - "west": "low" - } - }, - { - "id": 27739, - "properties": { - "bottom": "true", - "east": "low", - "north": "low", - "south": "low", - "west": "tall" - } - }, - { - "id": 27740, - "properties": { - "bottom": "true", - "east": "low", - "north": "low", - "south": "tall", - "west": "none" - } - }, - { - "id": 27741, - "properties": { - "bottom": "true", - "east": "low", - "north": "low", - "south": "tall", - "west": "low" - } - }, - { - "id": 27742, - "properties": { - "bottom": "true", - "east": "low", - "north": "low", - "south": "tall", - "west": "tall" - } - }, - { - "id": 27743, - "properties": { - "bottom": "true", - "east": "low", - "north": "tall", - "south": "none", - "west": "none" - } - }, - { - "id": 27744, - "properties": { - "bottom": "true", - "east": "low", - "north": "tall", - "south": "none", - "west": "low" - } - }, - { "id": 27745, "properties": { "bottom": "true", - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "none", - "west": "tall" + "west": "none" } }, { "id": 27746, "properties": { "bottom": "true", - "east": "low", - "north": "tall", - "south": "low", - "west": "none" + "east": "none", + "north": "none", + "south": "none", + "west": "low" } }, { "id": 27747, "properties": { "bottom": "true", - "east": "low", - "north": "tall", - "south": "low", - "west": "low" + "east": "none", + "north": "none", + "south": "none", + "west": "tall" } }, { "id": 27748, "properties": { "bottom": "true", - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "low", - "west": "tall" + "west": "none" } }, { "id": 27749, "properties": { "bottom": "true", - "east": "low", - "north": "tall", - "south": "tall", - "west": "none" + "east": "none", + "north": "none", + "south": "low", + "west": "low" } }, { "id": 27750, "properties": { "bottom": "true", - "east": "low", - "north": "tall", - "south": "tall", - "west": "low" + "east": "none", + "north": "none", + "south": "low", + "west": "tall" } }, { "id": 27751, "properties": { "bottom": "true", - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "tall", - "west": "tall" + "west": "none" } }, { "id": 27752, "properties": { "bottom": "true", - "east": "tall", + "east": "none", "north": "none", - "south": "none", - "west": "none" + "south": "tall", + "west": "low" } }, { "id": 27753, "properties": { "bottom": "true", - "east": "tall", + "east": "none", "north": "none", - "south": "none", - "west": "low" + "south": "tall", + "west": "tall" } }, { "id": 27754, "properties": { "bottom": "true", - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "none", - "west": "tall" + "west": "none" } }, { "id": 27755, "properties": { "bottom": "true", - "east": "tall", - "north": "none", - "south": "low", - "west": "none" + "east": "none", + "north": "low", + "south": "none", + "west": "low" } }, { "id": 27756, "properties": { "bottom": "true", - "east": "tall", - "north": "none", - "south": "low", - "west": "low" + "east": "none", + "north": "low", + "south": "none", + "west": "tall" } }, { "id": 27757, "properties": { "bottom": "true", - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "low", - "west": "tall" + "west": "none" } }, { "id": 27758, "properties": { "bottom": "true", - "east": "tall", - "north": "none", - "south": "tall", - "west": "none" + "east": "none", + "north": "low", + "south": "low", + "west": "low" } }, { "id": 27759, "properties": { "bottom": "true", - "east": "tall", - "north": "none", - "south": "tall", - "west": "low" + "east": "none", + "north": "low", + "south": "low", + "west": "tall" } }, { "id": 27760, "properties": { "bottom": "true", - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "tall", - "west": "tall" + "west": "none" } }, { "id": 27761, "properties": { "bottom": "true", - "east": "tall", + "east": "none", "north": "low", - "south": "none", - "west": "none" + "south": "tall", + "west": "low" } }, { "id": 27762, "properties": { "bottom": "true", - "east": "tall", + "east": "none", "north": "low", - "south": "none", - "west": "low" + "south": "tall", + "west": "tall" } }, { "id": 27763, "properties": { "bottom": "true", - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "none", - "west": "tall" + "west": "none" } }, { "id": 27764, "properties": { "bottom": "true", - "east": "tall", - "north": "low", - "south": "low", - "west": "none" + "east": "none", + "north": "tall", + "south": "none", + "west": "low" } }, { "id": 27765, "properties": { "bottom": "true", - "east": "tall", - "north": "low", - "south": "low", - "west": "low" + "east": "none", + "north": "tall", + "south": "none", + "west": "tall" } }, { "id": 27766, "properties": { "bottom": "true", - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "low", - "west": "tall" + "west": "none" } }, { "id": 27767, "properties": { "bottom": "true", - "east": "tall", - "north": "low", - "south": "tall", - "west": "none" + "east": "none", + "north": "tall", + "south": "low", + "west": "low" } }, { "id": 27768, "properties": { "bottom": "true", - "east": "tall", - "north": "low", - "south": "tall", - "west": "low" + "east": "none", + "north": "tall", + "south": "low", + "west": "tall" } }, { "id": 27769, "properties": { "bottom": "true", - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "tall", - "west": "tall" + "west": "none" } }, { "id": 27770, "properties": { "bottom": "true", - "east": "tall", + "east": "none", "north": "tall", - "south": "none", - "west": "none" + "south": "tall", + "west": "low" } }, { "id": 27771, "properties": { "bottom": "true", - "east": "tall", + "east": "none", "north": "tall", - "south": "none", - "west": "low" + "south": "tall", + "west": "tall" } }, { "id": 27772, "properties": { "bottom": "true", - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "none", - "west": "tall" + "west": "none" } }, { "id": 27773, "properties": { "bottom": "true", - "east": "tall", - "north": "tall", - "south": "low", - "west": "none" + "east": "low", + "north": "none", + "south": "none", + "west": "low" } }, { "id": 27774, "properties": { "bottom": "true", - "east": "tall", - "north": "tall", - "south": "low", - "west": "low" + "east": "low", + "north": "none", + "south": "none", + "west": "tall" } }, { "id": 27775, "properties": { "bottom": "true", - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "low", - "west": "tall" + "west": "none" } }, { "id": 27776, "properties": { "bottom": "true", - "east": "tall", - "north": "tall", - "south": "tall", - "west": "none" + "east": "low", + "north": "none", + "south": "low", + "west": "low" } }, { "id": 27777, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "low", + "west": "tall" + } + }, + { + "id": 27778, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "tall", + "west": "none" + } + }, + { + "id": 27779, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "tall", + "west": "low" + } + }, + { + "id": 27780, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "tall", + "west": "tall" + } + }, + { + "id": 27781, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "none", + "west": "none" + } + }, + { + "id": 27782, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "none", + "west": "low" + } + }, + { + "id": 27783, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "none", + "west": "tall" + } + }, + { + "id": 27784, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "low", + "west": "none" + } + }, + { + "id": 27785, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "low", + "west": "low" + } + }, + { + "id": 27786, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "low", + "west": "tall" + } + }, + { + "id": 27787, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "tall", + "west": "none" + } + }, + { + "id": 27788, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "tall", + "west": "low" + } + }, + { + "id": 27789, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "tall", + "west": "tall" + } + }, + { + "id": 27790, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "none", + "west": "none" + } + }, + { + "id": 27791, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "none", + "west": "low" + } + }, + { + "id": 27792, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "none", + "west": "tall" + } + }, + { + "id": 27793, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "low", + "west": "none" + } + }, + { + "id": 27794, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "low", + "west": "low" + } + }, + { + "id": 27795, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "low", + "west": "tall" + } + }, + { + "id": 27796, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "tall", + "west": "none" + } + }, + { + "id": 27797, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "tall", + "west": "low" + } + }, + { + "id": 27798, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "tall", + "west": "tall" + } + }, + { + "id": 27799, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "id": 27800, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "none", + "west": "low" + } + }, + { + "id": 27801, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "none", + "west": "tall" + } + }, + { + "id": 27802, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "low", + "west": "none" + } + }, + { + "id": 27803, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "low", + "west": "low" + } + }, + { + "id": 27804, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "low", + "west": "tall" + } + }, + { + "id": 27805, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "tall", + "west": "none" + } + }, + { + "id": 27806, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "tall", + "west": "low" + } + }, + { + "id": 27807, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "tall", + "west": "tall" + } + }, + { + "id": 27808, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "none", + "west": "none" + } + }, + { + "id": 27809, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "none", + "west": "low" + } + }, + { + "id": 27810, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "none", + "west": "tall" + } + }, + { + "id": 27811, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "low", + "west": "none" + } + }, + { + "id": 27812, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "low", + "west": "low" + } + }, + { + "id": 27813, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "low", + "west": "tall" + } + }, + { + "id": 27814, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "tall", + "west": "none" + } + }, + { + "id": 27815, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "tall", + "west": "low" + } + }, + { + "id": 27816, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "tall", + "west": "tall" + } + }, + { + "id": 27817, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "none", + "west": "none" + } + }, + { + "id": 27818, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "none", + "west": "low" + } + }, + { + "id": 27819, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "none", + "west": "tall" + } + }, + { + "id": 27820, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "low", + "west": "none" + } + }, + { + "id": 27821, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "low", + "west": "low" + } + }, + { + "id": 27822, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "low", + "west": "tall" + } + }, + { + "id": 27823, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "tall", + "west": "none" + } + }, + { + "id": 27824, "properties": { "bottom": "true", "east": "tall", @@ -162974,7 +163210,7 @@ } }, { - "id": 27778, + "id": 27825, "properties": { "bottom": "true", "east": "tall", @@ -162983,538 +163219,538 @@ "west": "tall" } }, - { - "id": 27779, - "properties": { - "bottom": "false", - "east": "none", - "north": "none", - "south": "none", - "west": "none" - } - }, - { - "id": 27780, - "properties": { - "bottom": "false", - "east": "none", - "north": "none", - "south": "none", - "west": "low" - } - }, - { - "id": 27781, - "properties": { - "bottom": "false", - "east": "none", - "north": "none", - "south": "none", - "west": "tall" - } - }, - { - "id": 27782, - "properties": { - "bottom": "false", - "east": "none", - "north": "none", - "south": "low", - "west": "none" - } - }, - { - "id": 27783, - "properties": { - "bottom": "false", - "east": "none", - "north": "none", - "south": "low", - "west": "low" - } - }, - { - "id": 27784, - "properties": { - "bottom": "false", - "east": "none", - "north": "none", - "south": "low", - "west": "tall" - } - }, - { - "id": 27785, - "properties": { - "bottom": "false", - "east": "none", - "north": "none", - "south": "tall", - "west": "none" - } - }, - { - "id": 27786, - "properties": { - "bottom": "false", - "east": "none", - "north": "none", - "south": "tall", - "west": "low" - } - }, - { - "id": 27787, - "properties": { - "bottom": "false", - "east": "none", - "north": "none", - "south": "tall", - "west": "tall" - } - }, - { - "id": 27788, - "properties": { - "bottom": "false", - "east": "none", - "north": "low", - "south": "none", - "west": "none" - } - }, - { - "id": 27789, - "properties": { - "bottom": "false", - "east": "none", - "north": "low", - "south": "none", - "west": "low" - } - }, - { - "id": 27790, - "properties": { - "bottom": "false", - "east": "none", - "north": "low", - "south": "none", - "west": "tall" - } - }, - { - "id": 27791, - "properties": { - "bottom": "false", - "east": "none", - "north": "low", - "south": "low", - "west": "none" - } - }, - { - "id": 27792, - "properties": { - "bottom": "false", - "east": "none", - "north": "low", - "south": "low", - "west": "low" - } - }, - { - "id": 27793, - "properties": { - "bottom": "false", - "east": "none", - "north": "low", - "south": "low", - "west": "tall" - } - }, - { - "id": 27794, - "properties": { - "bottom": "false", - "east": "none", - "north": "low", - "south": "tall", - "west": "none" - } - }, - { - "id": 27795, - "properties": { - "bottom": "false", - "east": "none", - "north": "low", - "south": "tall", - "west": "low" - } - }, - { - "id": 27796, - "properties": { - "bottom": "false", - "east": "none", - "north": "low", - "south": "tall", - "west": "tall" - } - }, - { - "id": 27797, - "properties": { - "bottom": "false", - "east": "none", - "north": "tall", - "south": "none", - "west": "none" - } - }, - { - "id": 27798, - "properties": { - "bottom": "false", - "east": "none", - "north": "tall", - "south": "none", - "west": "low" - } - }, - { - "id": 27799, - "properties": { - "bottom": "false", - "east": "none", - "north": "tall", - "south": "none", - "west": "tall" - } - }, - { - "id": 27800, - "properties": { - "bottom": "false", - "east": "none", - "north": "tall", - "south": "low", - "west": "none" - } - }, - { - "id": 27801, - "properties": { - "bottom": "false", - "east": "none", - "north": "tall", - "south": "low", - "west": "low" - } - }, - { - "id": 27802, - "properties": { - "bottom": "false", - "east": "none", - "north": "tall", - "south": "low", - "west": "tall" - } - }, - { - "id": 27803, - "properties": { - "bottom": "false", - "east": "none", - "north": "tall", - "south": "tall", - "west": "none" - } - }, - { - "id": 27804, - "properties": { - "bottom": "false", - "east": "none", - "north": "tall", - "south": "tall", - "west": "low" - } - }, - { - "id": 27805, - "properties": { - "bottom": "false", - "east": "none", - "north": "tall", - "south": "tall", - "west": "tall" - } - }, - { - "id": 27806, - "properties": { - "bottom": "false", - "east": "low", - "north": "none", - "south": "none", - "west": "none" - } - }, - { - "id": 27807, - "properties": { - "bottom": "false", - "east": "low", - "north": "none", - "south": "none", - "west": "low" - } - }, - { - "id": 27808, - "properties": { - "bottom": "false", - "east": "low", - "north": "none", - "south": "none", - "west": "tall" - } - }, - { - "id": 27809, - "properties": { - "bottom": "false", - "east": "low", - "north": "none", - "south": "low", - "west": "none" - } - }, - { - "id": 27810, - "properties": { - "bottom": "false", - "east": "low", - "north": "none", - "south": "low", - "west": "low" - } - }, - { - "id": 27811, - "properties": { - "bottom": "false", - "east": "low", - "north": "none", - "south": "low", - "west": "tall" - } - }, - { - "id": 27812, - "properties": { - "bottom": "false", - "east": "low", - "north": "none", - "south": "tall", - "west": "none" - } - }, - { - "id": 27813, - "properties": { - "bottom": "false", - "east": "low", - "north": "none", - "south": "tall", - "west": "low" - } - }, - { - "id": 27814, - "properties": { - "bottom": "false", - "east": "low", - "north": "none", - "south": "tall", - "west": "tall" - } - }, - { - "id": 27815, - "properties": { - "bottom": "false", - "east": "low", - "north": "low", - "south": "none", - "west": "none" - } - }, - { - "id": 27816, - "properties": { - "bottom": "false", - "east": "low", - "north": "low", - "south": "none", - "west": "low" - } - }, - { - "id": 27817, - "properties": { - "bottom": "false", - "east": "low", - "north": "low", - "south": "none", - "west": "tall" - } - }, - { - "id": 27818, - "properties": { - "bottom": "false", - "east": "low", - "north": "low", - "south": "low", - "west": "none" - } - }, - { - "id": 27819, - "properties": { - "bottom": "false", - "east": "low", - "north": "low", - "south": "low", - "west": "low" - } - }, - { - "id": 27820, - "properties": { - "bottom": "false", - "east": "low", - "north": "low", - "south": "low", - "west": "tall" - } - }, - { - "id": 27821, - "properties": { - "bottom": "false", - "east": "low", - "north": "low", - "south": "tall", - "west": "none" - } - }, - { - "id": 27822, - "properties": { - "bottom": "false", - "east": "low", - "north": "low", - "south": "tall", - "west": "low" - } - }, - { - "id": 27823, - "properties": { - "bottom": "false", - "east": "low", - "north": "low", - "south": "tall", - "west": "tall" - } - }, - { - "id": 27824, - "properties": { - "bottom": "false", - "east": "low", - "north": "tall", - "south": "none", - "west": "none" - } - }, - { - "id": 27825, - "properties": { - "bottom": "false", - "east": "low", - "north": "tall", - "south": "none", - "west": "low" - } - }, { "id": 27826, "properties": { "bottom": "false", - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "none", - "west": "tall" + "west": "none" } }, { "id": 27827, "properties": { "bottom": "false", - "east": "low", - "north": "tall", - "south": "low", - "west": "none" + "east": "none", + "north": "none", + "south": "none", + "west": "low" } }, { "id": 27828, "properties": { "bottom": "false", - "east": "low", - "north": "tall", - "south": "low", - "west": "low" + "east": "none", + "north": "none", + "south": "none", + "west": "tall" } }, { "id": 27829, "properties": { "bottom": "false", - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "low", - "west": "tall" + "west": "none" } }, { "id": 27830, "properties": { "bottom": "false", - "east": "low", - "north": "tall", - "south": "tall", - "west": "none" + "east": "none", + "north": "none", + "south": "low", + "west": "low" } }, { "id": 27831, "properties": { "bottom": "false", - "east": "low", - "north": "tall", - "south": "tall", - "west": "low" + "east": "none", + "north": "none", + "south": "low", + "west": "tall" } }, { "id": 27832, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "tall", + "west": "none" + } + }, + { + "id": 27833, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "tall", + "west": "low" + } + }, + { + "id": 27834, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "tall", + "west": "tall" + } + }, + { + "id": 27835, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "none", + "west": "none" + } + }, + { + "id": 27836, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "none", + "west": "low" + } + }, + { + "id": 27837, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "none", + "west": "tall" + } + }, + { + "id": 27838, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "low", + "west": "none" + } + }, + { + "id": 27839, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "low", + "west": "low" + } + }, + { + "id": 27840, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "low", + "west": "tall" + } + }, + { + "id": 27841, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "tall", + "west": "none" + } + }, + { + "id": 27842, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "tall", + "west": "low" + } + }, + { + "id": 27843, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "tall", + "west": "tall" + } + }, + { + "id": 27844, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "none", + "west": "none" + } + }, + { + "id": 27845, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "none", + "west": "low" + } + }, + { + "id": 27846, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "none", + "west": "tall" + } + }, + { + "id": 27847, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "low", + "west": "none" + } + }, + { + "id": 27848, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "low", + "west": "low" + } + }, + { + "id": 27849, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "low", + "west": "tall" + } + }, + { + "id": 27850, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "tall", + "west": "none" + } + }, + { + "id": 27851, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "tall", + "west": "low" + } + }, + { + "id": 27852, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "tall", + "west": "tall" + } + }, + { + "id": 27853, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "id": 27854, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "none", + "west": "low" + } + }, + { + "id": 27855, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "none", + "west": "tall" + } + }, + { + "id": 27856, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "low", + "west": "none" + } + }, + { + "id": 27857, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "low", + "west": "low" + } + }, + { + "id": 27858, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "low", + "west": "tall" + } + }, + { + "id": 27859, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "tall", + "west": "none" + } + }, + { + "id": 27860, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "tall", + "west": "low" + } + }, + { + "id": 27861, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "tall", + "west": "tall" + } + }, + { + "id": 27862, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "none", + "west": "none" + } + }, + { + "id": 27863, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "none", + "west": "low" + } + }, + { + "id": 27864, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "none", + "west": "tall" + } + }, + { + "id": 27865, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "low", + "west": "none" + } + }, + { + "id": 27866, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "low", + "west": "low" + } + }, + { + "id": 27867, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "low", + "west": "tall" + } + }, + { + "id": 27868, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "tall", + "west": "none" + } + }, + { + "id": 27869, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "tall", + "west": "low" + } + }, + { + "id": 27870, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "tall", + "west": "tall" + } + }, + { + "id": 27871, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "none", + "west": "none" + } + }, + { + "id": 27872, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "none", + "west": "low" + } + }, + { + "id": 27873, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "none", + "west": "tall" + } + }, + { + "id": 27874, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "low", + "west": "none" + } + }, + { + "id": 27875, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "low", + "west": "low" + } + }, + { + "id": 27876, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "low", + "west": "tall" + } + }, + { + "id": 27877, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "tall", + "west": "none" + } + }, + { + "id": 27878, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "tall", + "west": "low" + } + }, + { + "id": 27879, "properties": { "bottom": "false", "east": "low", @@ -163524,7 +163760,7 @@ } }, { - "id": 27833, + "id": 27880, "properties": { "bottom": "false", "east": "tall", @@ -163534,7 +163770,7 @@ } }, { - "id": 27834, + "id": 27881, "properties": { "bottom": "false", "east": "tall", @@ -163544,7 +163780,7 @@ } }, { - "id": 27835, + "id": 27882, "properties": { "bottom": "false", "east": "tall", @@ -163554,7 +163790,7 @@ } }, { - "id": 27836, + "id": 27883, "properties": { "bottom": "false", "east": "tall", @@ -163564,7 +163800,7 @@ } }, { - "id": 27837, + "id": 27884, "properties": { "bottom": "false", "east": "tall", @@ -163574,7 +163810,7 @@ } }, { - "id": 27838, + "id": 27885, "properties": { "bottom": "false", "east": "tall", @@ -163584,7 +163820,7 @@ } }, { - "id": 27839, + "id": 27886, "properties": { "bottom": "false", "east": "tall", @@ -163594,7 +163830,7 @@ } }, { - "id": 27840, + "id": 27887, "properties": { "bottom": "false", "east": "tall", @@ -163604,7 +163840,7 @@ } }, { - "id": 27841, + "id": 27888, "properties": { "bottom": "false", "east": "tall", @@ -163614,7 +163850,7 @@ } }, { - "id": 27842, + "id": 27889, "properties": { "bottom": "false", "east": "tall", @@ -163624,7 +163860,7 @@ } }, { - "id": 27843, + "id": 27890, "properties": { "bottom": "false", "east": "tall", @@ -163634,7 +163870,7 @@ } }, { - "id": 27844, + "id": 27891, "properties": { "bottom": "false", "east": "tall", @@ -163644,7 +163880,7 @@ } }, { - "id": 27845, + "id": 27892, "properties": { "bottom": "false", "east": "tall", @@ -163654,7 +163890,7 @@ } }, { - "id": 27846, + "id": 27893, "properties": { "bottom": "false", "east": "tall", @@ -163664,7 +163900,7 @@ } }, { - "id": 27847, + "id": 27894, "properties": { "bottom": "false", "east": "tall", @@ -163674,7 +163910,7 @@ } }, { - "id": 27848, + "id": 27895, "properties": { "bottom": "false", "east": "tall", @@ -163684,7 +163920,7 @@ } }, { - "id": 27849, + "id": 27896, "properties": { "bottom": "false", "east": "tall", @@ -163694,7 +163930,7 @@ } }, { - "id": 27850, + "id": 27897, "properties": { "bottom": "false", "east": "tall", @@ -163704,7 +163940,7 @@ } }, { - "id": 27851, + "id": 27898, "properties": { "bottom": "false", "east": "tall", @@ -163714,7 +163950,7 @@ } }, { - "id": 27852, + "id": 27899, "properties": { "bottom": "false", "east": "tall", @@ -163724,7 +163960,7 @@ } }, { - "id": 27853, + "id": 27900, "properties": { "bottom": "false", "east": "tall", @@ -163734,7 +163970,7 @@ } }, { - "id": 27854, + "id": 27901, "properties": { "bottom": "false", "east": "tall", @@ -163744,7 +163980,7 @@ } }, { - "id": 27855, + "id": 27902, "properties": { "bottom": "false", "east": "tall", @@ -163754,7 +163990,7 @@ } }, { - "id": 27856, + "id": 27903, "properties": { "bottom": "false", "east": "tall", @@ -163764,7 +164000,7 @@ } }, { - "id": 27857, + "id": 27904, "properties": { "bottom": "false", "east": "tall", @@ -163774,7 +164010,7 @@ } }, { - "id": 27858, + "id": 27905, "properties": { "bottom": "false", "east": "tall", @@ -163784,7 +164020,7 @@ } }, { - "id": 27859, + "id": 27906, "properties": { "bottom": "false", "east": "tall", @@ -163821,7 +164057,7 @@ }, "states": [ { - "id": 9554, + "id": 9564, "properties": { "face": "floor", "facing": "north", @@ -163829,7 +164065,7 @@ } }, { - "id": 9555, + "id": 9565, "properties": { "face": "floor", "facing": "north", @@ -163837,7 +164073,7 @@ } }, { - "id": 9556, + "id": 9566, "properties": { "face": "floor", "facing": "south", @@ -163845,7 +164081,7 @@ } }, { - "id": 9557, + "id": 9567, "properties": { "face": "floor", "facing": "south", @@ -163853,7 +164089,7 @@ } }, { - "id": 9558, + "id": 9568, "properties": { "face": "floor", "facing": "west", @@ -163861,7 +164097,7 @@ } }, { - "id": 9559, + "id": 9569, "properties": { "face": "floor", "facing": "west", @@ -163869,7 +164105,7 @@ } }, { - "id": 9560, + "id": 9570, "properties": { "face": "floor", "facing": "east", @@ -163877,7 +164113,7 @@ } }, { - "id": 9561, + "id": 9571, "properties": { "face": "floor", "facing": "east", @@ -163885,7 +164121,7 @@ } }, { - "id": 9562, + "id": 9572, "properties": { "face": "wall", "facing": "north", @@ -163894,95 +164130,95 @@ }, { "default": true, - "id": 9563, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9564, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 9565, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 9566, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 9567, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 9568, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 9569, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 9570, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 9571, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9572, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { "id": 9573, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "north", "powered": "false" } }, { "id": 9574, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9575, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9576, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 9577, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 9578, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 9579, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 9580, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 9581, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 9582, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9583, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9584, "properties": { "face": "ceiling", "facing": "west", @@ -163990,7 +164226,7 @@ } }, { - "id": 9575, + "id": 9585, "properties": { "face": "ceiling", "facing": "west", @@ -163998,7 +164234,7 @@ } }, { - "id": 9576, + "id": 9586, "properties": { "face": "ceiling", "facing": "east", @@ -164006,7 +164242,7 @@ } }, { - "id": 9577, + "id": 9587, "properties": { "face": "ceiling", "facing": "east", @@ -164046,108 +164282,108 @@ ] }, "states": [ - { - "id": 13155, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13156, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13157, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13158, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13159, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13160, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13161, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13162, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13163, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13164, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 13165, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13166, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13167, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13168, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13169, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13170, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13171, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13172, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13173, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13174, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13175, "properties": { "facing": "north", "half": "lower", @@ -164158,152 +164394,52 @@ }, { "default": true, - "id": 13166, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13167, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13168, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13169, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13170, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13171, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13172, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13173, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13174, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13175, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { "id": 13176, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 13177, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 13178, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 13179, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "true" } }, { "id": 13180, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "false" } }, @@ -164311,9 +164447,9 @@ "id": 13181, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -164321,9 +164457,9 @@ "id": 13182, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -164331,9 +164467,9 @@ "id": 13183, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -164341,14 +164477,114 @@ "id": 13184, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 13185, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13186, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13187, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13188, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13189, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13190, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13191, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13192, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13193, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13194, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13195, "properties": { "facing": "south", "half": "lower", @@ -164358,7 +164594,7 @@ } }, { - "id": 13186, + "id": 13196, "properties": { "facing": "south", "half": "lower", @@ -164367,113 +164603,13 @@ "powered": "false" } }, - { - "id": 13187, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13188, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13189, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13190, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13191, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13192, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13193, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13194, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13195, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13196, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 13197, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -164481,9 +164617,9 @@ "id": 13198, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -164491,9 +164627,9 @@ "id": 13199, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -164501,14 +164637,114 @@ "id": 13200, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 13201, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13202, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13203, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13204, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13205, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13206, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13207, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13208, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13209, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13210, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13211, "properties": { "facing": "west", "half": "lower", @@ -164518,7 +164754,7 @@ } }, { - "id": 13202, + "id": 13212, "properties": { "facing": "west", "half": "lower", @@ -164527,113 +164763,13 @@ "powered": "false" } }, - { - "id": 13203, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13204, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 13205, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 13206, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 13207, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 13208, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 13209, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 13210, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 13211, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 13212, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 13213, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -164641,14 +164777,114 @@ "id": 13214, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 13215, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13216, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13217, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 13218, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 13219, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 13220, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 13221, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 13222, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 13223, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 13224, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 13225, "properties": { "facing": "east", "half": "lower", @@ -164658,7 +164894,7 @@ } }, { - "id": 13216, + "id": 13226, "properties": { "facing": "east", "half": "lower", @@ -164668,7 +164904,7 @@ } }, { - "id": 13217, + "id": 13227, "properties": { "facing": "east", "half": "lower", @@ -164678,7 +164914,7 @@ } }, { - "id": 13218, + "id": 13228, "properties": { "facing": "east", "half": "lower", @@ -164717,113 +164953,13 @@ ] }, "states": [ - { - "id": 12675, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12676, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12677, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12678, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12679, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12680, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12681, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12682, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12683, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12684, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 12685, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -164831,9 +164967,9 @@ "id": 12686, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -164841,9 +164977,9 @@ "id": 12687, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -164851,14 +164987,114 @@ "id": 12688, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 12689, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12690, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12691, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12692, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12693, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12694, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12695, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12696, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12697, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12698, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12699, "properties": { "east": "true", "north": "false", @@ -164868,7 +165104,7 @@ } }, { - "id": 12690, + "id": 12700, "properties": { "east": "true", "north": "false", @@ -164877,118 +165113,118 @@ "west": "false" } }, - { - "id": 12691, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12692, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12693, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12694, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12695, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12696, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12697, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12698, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12699, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12700, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 12701, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 12702, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12703, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12704, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12705, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12706, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12707, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12708, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12709, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12710, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12711, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12712, "properties": { "east": "false", "north": "false", @@ -164998,7 +165234,7 @@ } }, { - "id": 12703, + "id": 12713, "properties": { "east": "false", "north": "false", @@ -165008,7 +165244,7 @@ } }, { - "id": 12704, + "id": 12714, "properties": { "east": "false", "north": "false", @@ -165018,7 +165254,7 @@ } }, { - "id": 12705, + "id": 12715, "properties": { "east": "false", "north": "false", @@ -165029,7 +165265,7 @@ }, { "default": true, - "id": 12706, + "id": 12716, "properties": { "east": "false", "north": "false", @@ -165068,7 +165304,7 @@ }, "states": [ { - "id": 12387, + "id": 12397, "properties": { "facing": "north", "in_wall": "true", @@ -165077,7 +165313,7 @@ } }, { - "id": 12388, + "id": 12398, "properties": { "facing": "north", "in_wall": "true", @@ -165086,7 +165322,7 @@ } }, { - "id": 12389, + "id": 12399, "properties": { "facing": "north", "in_wall": "true", @@ -165095,7 +165331,7 @@ } }, { - "id": 12390, + "id": 12400, "properties": { "facing": "north", "in_wall": "true", @@ -165104,7 +165340,7 @@ } }, { - "id": 12391, + "id": 12401, "properties": { "facing": "north", "in_wall": "false", @@ -165113,7 +165349,7 @@ } }, { - "id": 12392, + "id": 12402, "properties": { "facing": "north", "in_wall": "false", @@ -165122,7 +165358,7 @@ } }, { - "id": 12393, + "id": 12403, "properties": { "facing": "north", "in_wall": "false", @@ -165132,7 +165368,7 @@ }, { "default": true, - "id": 12394, + "id": 12404, "properties": { "facing": "north", "in_wall": "false", @@ -165140,143 +165376,143 @@ "powered": "false" } }, - { - "id": 12395, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 12396, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 12397, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 12398, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 12399, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 12400, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 12401, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 12402, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 12403, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 12404, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, { "id": 12405, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12406, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 12407, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "true" } }, { "id": 12408, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "false" } }, { "id": 12409, "properties": { - "facing": "west", + "facing": "south", "in_wall": "false", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12410, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 12411, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 12412, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 12413, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 12414, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 12415, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 12416, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 12417, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 12418, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 12419, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 12420, "properties": { "facing": "west", "in_wall": "false", @@ -165285,7 +165521,7 @@ } }, { - "id": 12411, + "id": 12421, "properties": { "facing": "east", "in_wall": "true", @@ -165294,7 +165530,7 @@ } }, { - "id": 12412, + "id": 12422, "properties": { "facing": "east", "in_wall": "true", @@ -165303,7 +165539,7 @@ } }, { - "id": 12413, + "id": 12423, "properties": { "facing": "east", "in_wall": "true", @@ -165312,7 +165548,7 @@ } }, { - "id": 12414, + "id": 12424, "properties": { "facing": "east", "in_wall": "true", @@ -165321,7 +165557,7 @@ } }, { - "id": 12415, + "id": 12425, "properties": { "facing": "east", "in_wall": "false", @@ -165330,7 +165566,7 @@ } }, { - "id": 12416, + "id": 12426, "properties": { "facing": "east", "in_wall": "false", @@ -165339,7 +165575,7 @@ } }, { - "id": 12417, + "id": 12427, "properties": { "facing": "east", "in_wall": "false", @@ -165348,7 +165584,7 @@ } }, { - "id": 12418, + "id": 12428, "properties": { "facing": "east", "in_wall": "false", @@ -165393,240 +165629,240 @@ ] }, "states": [ - { - "id": 5377, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5378, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5379, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5380, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5381, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5382, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5383, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5384, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5385, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, { "id": 5386, "properties": { "attached": "true", - "rotation": "4", - "waterlogged": "false" + "rotation": "0", + "waterlogged": "true" } }, { "id": 5387, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "true" + "rotation": "0", + "waterlogged": "false" } }, { "id": 5388, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5389, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5390, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5391, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5392, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5393, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5394, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5395, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5396, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5397, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5398, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5399, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5400, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5401, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5402, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5403, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5404, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "false" + "rotation": "9", + "waterlogged": "true" } }, { "id": 5405, "properties": { "attached": "true", - "rotation": "14", - "waterlogged": "true" + "rotation": "9", + "waterlogged": "false" } }, { "id": 5406, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5407, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5408, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5409, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5410, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5411, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5412, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5413, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5414, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5415, "properties": { "attached": "true", "rotation": "14", @@ -165634,7 +165870,7 @@ } }, { - "id": 5407, + "id": 5416, "properties": { "attached": "true", "rotation": "15", @@ -165642,7 +165878,7 @@ } }, { - "id": 5408, + "id": 5417, "properties": { "attached": "true", "rotation": "15", @@ -165650,7 +165886,7 @@ } }, { - "id": 5409, + "id": 5418, "properties": { "attached": "false", "rotation": "0", @@ -165659,215 +165895,215 @@ }, { "default": true, - "id": 5410, + "id": 5419, "properties": { "attached": "false", "rotation": "0", "waterlogged": "false" } }, - { - "id": 5411, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5412, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5413, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5414, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5415, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5416, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5417, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5418, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5419, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 5420, "properties": { "attached": "false", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5421, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5422, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5423, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5424, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5425, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5426, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5427, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5428, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5429, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5430, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5431, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5432, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5433, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5434, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5435, "properties": { "attached": "false", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5436, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5437, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5438, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5439, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5440, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5441, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5442, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5443, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5444, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5445, "properties": { "attached": "false", "rotation": "13", @@ -165875,7 +166111,7 @@ } }, { - "id": 5437, + "id": 5446, "properties": { "attached": "false", "rotation": "14", @@ -165883,7 +166119,7 @@ } }, { - "id": 5438, + "id": 5447, "properties": { "attached": "false", "rotation": "14", @@ -165891,7 +166127,7 @@ } }, { - "id": 5439, + "id": 5448, "properties": { "attached": "false", "rotation": "15", @@ -165899,7 +166135,7 @@ } }, { - "id": 5440, + "id": 5449, "properties": { "attached": "false", "rotation": "15", @@ -165910,11 +166146,11 @@ }, "minecraft:pale_oak_leaves": { "definition": { - "type": "minecraft:particle_leaves", - "chance": 50, - "particle": { + "type": "minecraft:untinted_particle_leaves", + "leaf_particle": { "type": "minecraft:pale_oak_leaves" }, + "leaf_particle_chance": 0.02, "properties": {} }, "properties": { @@ -166224,14 +166460,14 @@ }, "states": [ { - "id": 5897, + "id": 5906, "properties": { "powered": "true" } }, { "default": true, - "id": 5898, + "id": 5907, "properties": { "powered": "false" } @@ -166298,7 +166534,7 @@ }, "states": [ { - "id": 4581, + "id": 4590, "properties": { "rotation": "0", "waterlogged": "true" @@ -166306,217 +166542,217 @@ }, { "default": true, - "id": 4582, + "id": 4591, "properties": { "rotation": "0", "waterlogged": "false" } }, - { - "id": 4583, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4584, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4585, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4586, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4587, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4588, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4589, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4590, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4591, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 4592, "properties": { - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 4593, "properties": { - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 4594, "properties": { - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 4595, "properties": { - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 4596, "properties": { - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 4597, "properties": { - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 4598, "properties": { - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 4599, "properties": { - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 4600, "properties": { - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 4601, "properties": { - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 4602, "properties": { - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 4603, "properties": { - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 4604, "properties": { - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 4605, "properties": { - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 4606, "properties": { - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 4607, "properties": { - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 4608, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4609, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4610, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4611, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4612, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4613, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4614, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4615, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4616, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4617, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 4609, + "id": 4618, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 4610, + "id": 4619, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 4611, + "id": 4620, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 4612, + "id": 4621, "properties": { "rotation": "15", "waterlogged": "false" @@ -166542,21 +166778,21 @@ }, "states": [ { - "id": 12083, + "id": 12093, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12084, + "id": 12094, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12085, + "id": 12095, "properties": { "type": "bottom", "waterlogged": "true" @@ -166564,21 +166800,21 @@ }, { "default": true, - "id": 12086, + "id": 12096, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12087, + "id": 12097, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12088, + "id": 12098, "properties": { "type": "double", "waterlogged": "false" @@ -166618,98 +166854,98 @@ ] }, "states": [ - { - "id": 10923, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10924, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10925, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10926, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10927, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10928, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10929, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10930, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10931, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10932, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 10933, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10934, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10935, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10936, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10937, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10938, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10939, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10940, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10941, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10942, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10943, "properties": { "facing": "north", "half": "bottom", @@ -166719,100 +166955,10 @@ }, { "default": true, - "id": 10934, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10935, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10936, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10937, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10938, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10939, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10940, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10941, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10942, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10943, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 10944, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -166820,8 +166966,8 @@ { "id": 10945, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -166829,8 +166975,8 @@ { "id": 10946, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -166838,8 +166984,8 @@ { "id": 10947, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -166847,8 +166993,8 @@ { "id": 10948, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -166856,8 +167002,8 @@ { "id": 10949, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -166865,8 +167011,8 @@ { "id": 10950, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -166874,8 +167020,8 @@ { "id": 10951, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -166883,8 +167029,8 @@ { "id": 10952, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -166893,7 +167039,7 @@ "id": 10953, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -166902,7 +167048,7 @@ "id": 10954, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -166911,7 +167057,7 @@ "id": 10955, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -166920,7 +167066,7 @@ "id": 10956, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -166929,7 +167075,7 @@ "id": 10957, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -166938,7 +167084,7 @@ "id": 10958, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -166947,7 +167093,7 @@ "id": 10959, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -166956,7 +167102,7 @@ "id": 10960, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -166965,7 +167111,7 @@ "id": 10961, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -166974,7 +167120,7 @@ "id": 10962, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -166982,8 +167128,8 @@ { "id": 10963, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -166991,8 +167137,8 @@ { "id": 10964, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -167000,8 +167146,8 @@ { "id": 10965, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -167009,8 +167155,8 @@ { "id": 10966, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -167018,8 +167164,8 @@ { "id": 10967, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -167027,8 +167173,8 @@ { "id": 10968, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -167036,8 +167182,8 @@ { "id": 10969, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -167045,8 +167191,8 @@ { "id": 10970, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -167054,8 +167200,8 @@ { "id": 10971, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -167063,8 +167209,8 @@ { "id": 10972, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -167073,7 +167219,7 @@ "id": 10973, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -167082,7 +167228,7 @@ "id": 10974, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -167091,7 +167237,7 @@ "id": 10975, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -167100,7 +167246,7 @@ "id": 10976, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -167109,7 +167255,7 @@ "id": 10977, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -167118,7 +167264,7 @@ "id": 10978, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -167127,7 +167273,7 @@ "id": 10979, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -167136,7 +167282,7 @@ "id": 10980, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -167145,7 +167291,7 @@ "id": 10981, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -167154,7 +167300,7 @@ "id": 10982, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -167162,8 +167308,8 @@ { "id": 10983, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -167171,8 +167317,8 @@ { "id": 10984, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -167180,8 +167326,8 @@ { "id": 10985, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -167189,8 +167335,8 @@ { "id": 10986, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -167198,8 +167344,8 @@ { "id": 10987, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -167207,8 +167353,8 @@ { "id": 10988, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -167216,8 +167362,8 @@ { "id": 10989, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -167225,8 +167371,8 @@ { "id": 10990, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -167234,8 +167380,8 @@ { "id": 10991, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -167243,8 +167389,8 @@ { "id": 10992, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -167253,7 +167399,7 @@ "id": 10993, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -167262,7 +167408,7 @@ "id": 10994, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -167271,7 +167417,7 @@ "id": 10995, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -167280,7 +167426,7 @@ "id": 10996, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -167289,7 +167435,7 @@ "id": 10997, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -167298,7 +167444,7 @@ "id": 10998, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -167307,7 +167453,7 @@ "id": 10999, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -167316,7 +167462,7 @@ "id": 11000, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -167325,13 +167471,103 @@ "id": 11001, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 11002, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11003, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11004, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11005, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11006, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11007, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11008, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11009, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11010, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11011, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11012, "properties": { "facing": "east", "half": "bottom", @@ -167372,118 +167608,118 @@ ] }, "states": [ - { - "id": 6578, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6579, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6580, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6581, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6582, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6583, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6584, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6585, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6586, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6587, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6588, "properties": { "facing": "north", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, { "id": 6589, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6590, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6591, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6592, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6593, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6594, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6595, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6596, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6597, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6598, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6599, "properties": { "facing": "north", "half": "bottom", @@ -167493,7 +167729,7 @@ } }, { - "id": 6590, + "id": 6600, "properties": { "facing": "north", "half": "bottom", @@ -167503,7 +167739,7 @@ } }, { - "id": 6591, + "id": 6601, "properties": { "facing": "north", "half": "bottom", @@ -167513,7 +167749,7 @@ } }, { - "id": 6592, + "id": 6602, "properties": { "facing": "north", "half": "bottom", @@ -167524,7 +167760,7 @@ }, { "default": true, - "id": 6593, + "id": 6603, "properties": { "facing": "north", "half": "bottom", @@ -167533,113 +167769,13 @@ "waterlogged": "false" } }, - { - "id": 6594, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6595, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6596, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6597, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6598, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6599, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6600, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6601, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6602, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6603, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6604, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -167647,9 +167783,9 @@ "id": 6605, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -167657,9 +167793,9 @@ "id": 6606, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -167667,14 +167803,114 @@ "id": 6607, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6608, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6609, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6610, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6611, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6612, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6613, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6614, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6615, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6616, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6617, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6618, "properties": { "facing": "south", "half": "bottom", @@ -167684,7 +167920,7 @@ } }, { - "id": 6609, + "id": 6619, "properties": { "facing": "south", "half": "bottom", @@ -167693,113 +167929,13 @@ "waterlogged": "false" } }, - { - "id": 6610, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6611, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6612, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6613, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6614, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6615, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6616, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6617, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6618, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6619, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6620, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -167807,9 +167943,9 @@ "id": 6621, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -167817,9 +167953,9 @@ "id": 6622, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -167827,14 +167963,114 @@ "id": 6623, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6624, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6625, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6626, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6627, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6628, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6629, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6630, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6631, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6632, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6633, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6634, "properties": { "facing": "west", "half": "bottom", @@ -167844,7 +168080,7 @@ } }, { - "id": 6625, + "id": 6635, "properties": { "facing": "west", "half": "bottom", @@ -167853,113 +168089,13 @@ "waterlogged": "false" } }, - { - "id": 6626, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6627, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6628, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6629, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6630, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6631, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6632, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6633, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6634, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6635, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6636, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -167967,14 +168103,114 @@ "id": 6637, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, { "id": 6638, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6639, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6640, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6641, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6642, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6643, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6644, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6645, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6646, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6647, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6648, "properties": { "facing": "east", "half": "bottom", @@ -167984,7 +168220,7 @@ } }, { - "id": 6639, + "id": 6649, "properties": { "facing": "east", "half": "bottom", @@ -167994,7 +168230,7 @@ } }, { - "id": 6640, + "id": 6650, "properties": { "facing": "east", "half": "bottom", @@ -168004,7 +168240,7 @@ } }, { - "id": 6641, + "id": 6651, "properties": { "facing": "east", "half": "bottom", @@ -168035,7 +168271,7 @@ }, "states": [ { - "id": 5753, + "id": 5762, "properties": { "facing": "north", "waterlogged": "true" @@ -168043,49 +168279,49 @@ }, { "default": true, - "id": 5754, + "id": 5763, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5755, + "id": 5764, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5756, + "id": 5765, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5757, + "id": 5766, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5758, + "id": 5767, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5759, + "id": 5768, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5760, + "id": 5769, "properties": { "facing": "east", "waterlogged": "false" @@ -168113,7 +168349,7 @@ }, "states": [ { - "id": 4905, + "id": 4914, "properties": { "facing": "north", "waterlogged": "true" @@ -168121,49 +168357,49 @@ }, { "default": true, - "id": 4906, + "id": 4915, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 4907, + "id": 4916, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 4908, + "id": 4917, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 4909, + "id": 4918, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 4910, + "id": 4919, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 4911, + "id": 4920, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4912, + "id": 4921, "properties": { "facing": "east", "waterlogged": "false" @@ -168219,20 +168455,20 @@ }, "states": [ { - "id": 27582, + "id": 27629, "properties": { "axis": "x" } }, { "default": true, - "id": 27583, + "id": 27630, "properties": { "axis": "y" } }, { - "id": 27584, + "id": 27631, "properties": { "axis": "z" } @@ -168252,14 +168488,14 @@ }, "states": [ { - "id": 11632, + "id": 11642, "properties": { "half": "upper" } }, { "default": true, - "id": 11633, + "id": 11643, "properties": { "half": "lower" } @@ -168284,21 +168520,21 @@ }, "states": [ { - "id": 12131, + "id": 12141, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12132, + "id": 12142, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12133, + "id": 12143, "properties": { "type": "bottom", "waterlogged": "true" @@ -168306,21 +168542,21 @@ }, { "default": true, - "id": 12134, + "id": 12144, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12135, + "id": 12145, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12136, + "id": 12146, "properties": { "type": "double", "waterlogged": "false" @@ -168360,112 +168596,112 @@ }, "states": [ { - "id": 9866, + "id": 9876, "properties": { "powered": "true", "rotation": "0" } }, { - "id": 9867, + "id": 9877, "properties": { "powered": "true", "rotation": "1" } }, { - "id": 9868, + "id": 9878, "properties": { "powered": "true", "rotation": "2" } }, { - "id": 9869, + "id": 9879, "properties": { "powered": "true", "rotation": "3" } }, { - "id": 9870, + "id": 9880, "properties": { "powered": "true", "rotation": "4" } }, { - "id": 9871, + "id": 9881, "properties": { "powered": "true", "rotation": "5" } }, { - "id": 9872, + "id": 9882, "properties": { "powered": "true", "rotation": "6" } }, { - "id": 9873, + "id": 9883, "properties": { "powered": "true", "rotation": "7" } }, { - "id": 9874, + "id": 9884, "properties": { "powered": "true", "rotation": "8" } }, { - "id": 9875, + "id": 9885, "properties": { "powered": "true", "rotation": "9" } }, { - "id": 9876, + "id": 9886, "properties": { "powered": "true", "rotation": "10" } }, { - "id": 9877, + "id": 9887, "properties": { "powered": "true", "rotation": "11" } }, { - "id": 9878, + "id": 9888, "properties": { "powered": "true", "rotation": "12" } }, { - "id": 9879, + "id": 9889, "properties": { "powered": "true", "rotation": "13" } }, { - "id": 9880, + "id": 9890, "properties": { "powered": "true", "rotation": "14" } }, { - "id": 9881, + "id": 9891, "properties": { "powered": "true", "rotation": "15" @@ -168473,112 +168709,112 @@ }, { "default": true, - "id": 9882, + "id": 9892, "properties": { "powered": "false", "rotation": "0" } }, { - "id": 9883, + "id": 9893, "properties": { "powered": "false", "rotation": "1" } }, { - "id": 9884, + "id": 9894, "properties": { "powered": "false", "rotation": "2" } }, { - "id": 9885, + "id": 9895, "properties": { "powered": "false", "rotation": "3" } }, { - "id": 9886, + "id": 9896, "properties": { "powered": "false", "rotation": "4" } }, { - "id": 9887, + "id": 9897, "properties": { "powered": "false", "rotation": "5" } }, { - "id": 9888, + "id": 9898, "properties": { "powered": "false", "rotation": "6" } }, { - "id": 9889, + "id": 9899, "properties": { "powered": "false", "rotation": "7" } }, { - "id": 9890, + "id": 9900, "properties": { "powered": "false", "rotation": "8" } }, { - "id": 9891, + "id": 9901, "properties": { "powered": "false", "rotation": "9" } }, { - "id": 9892, + "id": 9902, "properties": { "powered": "false", "rotation": "10" } }, { - "id": 9893, + "id": 9903, "properties": { "powered": "false", "rotation": "11" } }, { - "id": 9894, + "id": 9904, "properties": { "powered": "false", "rotation": "12" } }, { - "id": 9895, + "id": 9905, "properties": { "powered": "false", "rotation": "13" } }, { - "id": 9896, + "id": 9906, "properties": { "powered": "false", "rotation": "14" } }, { - "id": 9897, + "id": 9907, "properties": { "powered": "false", "rotation": "15" @@ -168605,7 +168841,7 @@ }, "states": [ { - "id": 9898, + "id": 9908, "properties": { "facing": "north", "powered": "true" @@ -168613,49 +168849,49 @@ }, { "default": true, - "id": 9899, + "id": 9909, "properties": { "facing": "north", "powered": "false" } }, { - "id": 9900, + "id": 9910, "properties": { "facing": "south", "powered": "true" } }, { - "id": 9901, + "id": 9911, "properties": { "facing": "south", "powered": "false" } }, { - "id": 9902, + "id": 9912, "properties": { "facing": "west", "powered": "true" } }, { - "id": 9903, + "id": 9913, "properties": { "facing": "west", "powered": "false" } }, { - "id": 9904, + "id": 9914, "properties": { "facing": "east", "powered": "true" } }, { - "id": 9905, + "id": 9915, "properties": { "facing": "east", "powered": "false" @@ -168692,97 +168928,97 @@ "states": [ { "default": true, - "id": 11734, + "id": 11744, "properties": { "rotation": "0" } }, { - "id": 11735, + "id": 11745, "properties": { "rotation": "1" } }, { - "id": 11736, + "id": 11746, "properties": { "rotation": "2" } }, { - "id": 11737, + "id": 11747, "properties": { "rotation": "3" } }, { - "id": 11738, + "id": 11748, "properties": { "rotation": "4" } }, { - "id": 11739, + "id": 11749, "properties": { "rotation": "5" } }, { - "id": 11740, + "id": 11750, "properties": { "rotation": "6" } }, { - "id": 11741, + "id": 11751, "properties": { "rotation": "7" } }, { - "id": 11742, + "id": 11752, "properties": { "rotation": "8" } }, { - "id": 11743, + "id": 11753, "properties": { "rotation": "9" } }, { - "id": 11744, + "id": 11754, "properties": { "rotation": "10" } }, { - "id": 11745, + "id": 11755, "properties": { "rotation": "11" } }, { - "id": 11746, + "id": 11756, "properties": { "rotation": "12" } }, { - "id": 11747, + "id": 11757, "properties": { "rotation": "13" } }, { - "id": 11748, + "id": 11758, "properties": { "rotation": "14" } }, { - "id": 11749, + "id": 11759, "properties": { "rotation": "15" } @@ -168966,7 +169202,7 @@ }, "states": [ { - "id": 21850, + "id": 21865, "properties": { "candles": "1", "lit": "true", @@ -168974,7 +169210,7 @@ } }, { - "id": 21851, + "id": 21866, "properties": { "candles": "1", "lit": "true", @@ -168982,7 +169218,7 @@ } }, { - "id": 21852, + "id": 21867, "properties": { "candles": "1", "lit": "false", @@ -168991,7 +169227,7 @@ }, { "default": true, - "id": 21853, + "id": 21868, "properties": { "candles": "1", "lit": "false", @@ -168999,7 +169235,7 @@ } }, { - "id": 21854, + "id": 21869, "properties": { "candles": "2", "lit": "true", @@ -169007,7 +169243,7 @@ } }, { - "id": 21855, + "id": 21870, "properties": { "candles": "2", "lit": "true", @@ -169015,7 +169251,7 @@ } }, { - "id": 21856, + "id": 21871, "properties": { "candles": "2", "lit": "false", @@ -169023,7 +169259,7 @@ } }, { - "id": 21857, + "id": 21872, "properties": { "candles": "2", "lit": "false", @@ -169031,7 +169267,7 @@ } }, { - "id": 21858, + "id": 21873, "properties": { "candles": "3", "lit": "true", @@ -169039,7 +169275,7 @@ } }, { - "id": 21859, + "id": 21874, "properties": { "candles": "3", "lit": "true", @@ -169047,7 +169283,7 @@ } }, { - "id": 21860, + "id": 21875, "properties": { "candles": "3", "lit": "false", @@ -169055,7 +169291,7 @@ } }, { - "id": 21861, + "id": 21876, "properties": { "candles": "3", "lit": "false", @@ -169063,7 +169299,7 @@ } }, { - "id": 21862, + "id": 21877, "properties": { "candles": "4", "lit": "true", @@ -169071,7 +169307,7 @@ } }, { - "id": 21863, + "id": 21878, "properties": { "candles": "4", "lit": "true", @@ -169079,7 +169315,7 @@ } }, { - "id": 21864, + "id": 21879, "properties": { "candles": "4", "lit": "false", @@ -169087,7 +169323,7 @@ } }, { - "id": 21865, + "id": 21880, "properties": { "candles": "4", "lit": "false", @@ -169110,14 +169346,14 @@ }, "states": [ { - "id": 22024, + "id": 22039, "properties": { "lit": "true" } }, { "default": true, - "id": 22025, + "id": 22040, "properties": { "lit": "false" } @@ -169133,7 +169369,7 @@ "states": [ { "default": true, - "id": 11613 + "id": 11623 } ] }, @@ -169145,7 +169381,7 @@ "states": [ { "default": true, - "id": 13747 + "id": 13757 } ] }, @@ -169158,7 +169394,7 @@ "states": [ { "default": true, - "id": 13763 + "id": 13773 } ] }, @@ -169178,25 +169414,25 @@ "states": [ { "default": true, - "id": 13701, + "id": 13711, "properties": { "facing": "north" } }, { - "id": 13702, + "id": 13712, "properties": { "facing": "south" } }, { - "id": 13703, + "id": 13713, "properties": { "facing": "west" } }, { - "id": 13704, + "id": 13714, "properties": { "facing": "east" } @@ -169205,7 +169441,7 @@ }, "minecraft:pink_petals": { "definition": { - "type": "minecraft:pink_petals", + "type": "minecraft:flower_bed", "properties": {} }, "properties": { @@ -169225,112 +169461,112 @@ "states": [ { "default": true, - "id": 25840, - "properties": { - "facing": "north", - "flower_amount": "1" - } - }, - { - "id": 25841, - "properties": { - "facing": "north", - "flower_amount": "2" - } - }, - { - "id": 25842, - "properties": { - "facing": "north", - "flower_amount": "3" - } - }, - { - "id": 25843, - "properties": { - "facing": "north", - "flower_amount": "4" - } - }, - { - "id": 25844, - "properties": { - "facing": "south", - "flower_amount": "1" - } - }, - { - "id": 25845, - "properties": { - "facing": "south", - "flower_amount": "2" - } - }, - { - "id": 25846, - "properties": { - "facing": "south", - "flower_amount": "3" - } - }, - { - "id": 25847, - "properties": { - "facing": "south", - "flower_amount": "4" - } - }, - { - "id": 25848, - "properties": { - "facing": "west", - "flower_amount": "1" - } - }, - { - "id": 25849, - "properties": { - "facing": "west", - "flower_amount": "2" - } - }, - { - "id": 25850, - "properties": { - "facing": "west", - "flower_amount": "3" - } - }, - { - "id": 25851, - "properties": { - "facing": "west", - "flower_amount": "4" - } - }, - { - "id": 25852, - "properties": { - "facing": "east", - "flower_amount": "1" - } - }, - { - "id": 25853, - "properties": { - "facing": "east", - "flower_amount": "2" - } - }, - { - "id": 25854, - "properties": { - "facing": "east", - "flower_amount": "3" - } - }, - { "id": 25855, + "properties": { + "facing": "north", + "flower_amount": "1" + } + }, + { + "id": 25856, + "properties": { + "facing": "north", + "flower_amount": "2" + } + }, + { + "id": 25857, + "properties": { + "facing": "north", + "flower_amount": "3" + } + }, + { + "id": 25858, + "properties": { + "facing": "north", + "flower_amount": "4" + } + }, + { + "id": 25859, + "properties": { + "facing": "south", + "flower_amount": "1" + } + }, + { + "id": 25860, + "properties": { + "facing": "south", + "flower_amount": "2" + } + }, + { + "id": 25861, + "properties": { + "facing": "south", + "flower_amount": "3" + } + }, + { + "id": 25862, + "properties": { + "facing": "south", + "flower_amount": "4" + } + }, + { + "id": 25863, + "properties": { + "facing": "west", + "flower_amount": "1" + } + }, + { + "id": 25864, + "properties": { + "facing": "west", + "flower_amount": "2" + } + }, + { + "id": 25865, + "properties": { + "facing": "west", + "flower_amount": "3" + } + }, + { + "id": 25866, + "properties": { + "facing": "west", + "flower_amount": "4" + } + }, + { + "id": 25867, + "properties": { + "facing": "east", + "flower_amount": "1" + } + }, + { + "id": 25868, + "properties": { + "facing": "east", + "flower_amount": "2" + } + }, + { + "id": 25869, + "properties": { + "facing": "east", + "flower_amount": "3" + } + }, + { + "id": 25870, "properties": { "facing": "east", "flower_amount": "4" @@ -169356,38 +169592,38 @@ }, "states": [ { - "id": 13617, + "id": 13627, "properties": { "facing": "north" } }, { - "id": 13618, + "id": 13628, "properties": { "facing": "east" } }, { - "id": 13619, + "id": 13629, "properties": { "facing": "south" } }, { - "id": 13620, + "id": 13630, "properties": { "facing": "west" } }, { "default": true, - "id": 13621, + "id": 13631, "properties": { "facing": "up" } }, { - "id": 13622, + "id": 13632, "properties": { "facing": "down" } @@ -169403,7 +169639,7 @@ "states": [ { "default": true, - "id": 6120 + "id": 6130 } ] }, @@ -169436,113 +169672,13 @@ ] }, "states": [ - { - "id": 10363, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10364, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10365, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10366, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10367, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10368, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10369, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10370, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10371, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10372, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10373, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -169550,9 +169686,9 @@ "id": 10374, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -169560,9 +169696,9 @@ "id": 10375, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -169570,14 +169706,114 @@ "id": 10376, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 10377, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10378, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10379, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10380, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10381, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10382, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10383, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10384, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10385, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10386, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10387, "properties": { "east": "true", "north": "false", @@ -169587,7 +169823,7 @@ } }, { - "id": 10378, + "id": 10388, "properties": { "east": "true", "north": "false", @@ -169596,118 +169832,118 @@ "west": "false" } }, - { - "id": 10379, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10380, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10381, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10382, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10383, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10384, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10385, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10386, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10387, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10388, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10389, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 10390, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10391, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10392, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10393, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10394, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10395, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10396, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10397, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10398, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10399, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10400, "properties": { "east": "false", "north": "false", @@ -169717,7 +169953,7 @@ } }, { - "id": 10391, + "id": 10401, "properties": { "east": "false", "north": "false", @@ -169727,7 +169963,7 @@ } }, { - "id": 10392, + "id": 10402, "properties": { "east": "false", "north": "false", @@ -169737,7 +169973,7 @@ } }, { - "id": 10393, + "id": 10403, "properties": { "east": "false", "north": "false", @@ -169748,7 +169984,7 @@ }, { "default": true, - "id": 10394, + "id": 10404, "properties": { "east": "false", "north": "false", @@ -169761,13 +169997,13 @@ }, "minecraft:pink_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 10161 + "id": 10171 } ] }, @@ -169785,7 +170021,7 @@ "states": [ { "default": true, - "id": 2127 + "id": 2130 } ] }, @@ -169806,25 +170042,25 @@ "states": [ { "default": true, - "id": 11918, + "id": 11928, "properties": { "facing": "north" } }, { - "id": 11919, + "id": 11929, "properties": { "facing": "south" } }, { - "id": 11920, + "id": 11930, "properties": { "facing": "west" } }, { - "id": 11921, + "id": 11931, "properties": { "facing": "east" } @@ -169839,7 +170075,7 @@ "states": [ { "default": true, - "id": 2096 + "id": 2099 } ] }, @@ -169865,42 +170101,42 @@ }, "states": [ { - "id": 2054, + "id": 2057, "properties": { "extended": "true", "facing": "north" } }, { - "id": 2055, + "id": 2058, "properties": { "extended": "true", "facing": "east" } }, { - "id": 2056, + "id": 2059, "properties": { "extended": "true", "facing": "south" } }, { - "id": 2057, + "id": 2060, "properties": { "extended": "true", "facing": "west" } }, { - "id": 2058, + "id": 2061, "properties": { "extended": "true", "facing": "up" } }, { - "id": 2059, + "id": 2062, "properties": { "extended": "true", "facing": "down" @@ -169908,42 +170144,42 @@ }, { "default": true, - "id": 2060, + "id": 2063, "properties": { "extended": "false", "facing": "north" } }, { - "id": 2061, + "id": 2064, "properties": { "extended": "false", "facing": "east" } }, { - "id": 2062, + "id": 2065, "properties": { "extended": "false", "facing": "south" } }, { - "id": 2063, + "id": 2066, "properties": { "extended": "false", "facing": "west" } }, { - "id": 2064, + "id": 2067, "properties": { "extended": "false", "facing": "up" } }, { - "id": 2065, + "id": 2068, "properties": { "extended": "false", "facing": "down" @@ -169976,7 +170212,7 @@ }, "states": [ { - "id": 2066, + "id": 2069, "properties": { "type": "normal", "facing": "north", @@ -169984,7 +170220,7 @@ } }, { - "id": 2067, + "id": 2070, "properties": { "type": "sticky", "facing": "north", @@ -169993,159 +170229,159 @@ }, { "default": true, - "id": 2068, - "properties": { - "type": "normal", - "facing": "north", - "short": "false" - } - }, - { - "id": 2069, - "properties": { - "type": "sticky", - "facing": "north", - "short": "false" - } - }, - { - "id": 2070, - "properties": { - "type": "normal", - "facing": "east", - "short": "true" - } - }, - { "id": 2071, "properties": { - "type": "sticky", - "facing": "east", - "short": "true" + "type": "normal", + "facing": "north", + "short": "false" } }, { "id": 2072, "properties": { - "type": "normal", - "facing": "east", + "type": "sticky", + "facing": "north", "short": "false" } }, { "id": 2073, "properties": { - "type": "sticky", + "type": "normal", "facing": "east", - "short": "false" + "short": "true" } }, { "id": 2074, "properties": { - "type": "normal", - "facing": "south", + "type": "sticky", + "facing": "east", "short": "true" } }, { "id": 2075, "properties": { - "type": "sticky", - "facing": "south", - "short": "true" + "type": "normal", + "facing": "east", + "short": "false" } }, { "id": 2076, "properties": { - "type": "normal", - "facing": "south", + "type": "sticky", + "facing": "east", "short": "false" } }, { "id": 2077, "properties": { - "type": "sticky", + "type": "normal", "facing": "south", - "short": "false" + "short": "true" } }, { "id": 2078, "properties": { - "type": "normal", - "facing": "west", + "type": "sticky", + "facing": "south", "short": "true" } }, { "id": 2079, "properties": { - "type": "sticky", - "facing": "west", - "short": "true" + "type": "normal", + "facing": "south", + "short": "false" } }, { "id": 2080, "properties": { - "type": "normal", - "facing": "west", + "type": "sticky", + "facing": "south", "short": "false" } }, { "id": 2081, "properties": { - "type": "sticky", + "type": "normal", "facing": "west", - "short": "false" + "short": "true" } }, { "id": 2082, "properties": { - "type": "normal", - "facing": "up", + "type": "sticky", + "facing": "west", "short": "true" } }, { "id": 2083, "properties": { - "type": "sticky", - "facing": "up", - "short": "true" + "type": "normal", + "facing": "west", + "short": "false" } }, { "id": 2084, "properties": { - "type": "normal", - "facing": "up", + "type": "sticky", + "facing": "west", "short": "false" } }, { "id": 2085, "properties": { - "type": "sticky", + "type": "normal", "facing": "up", - "short": "false" + "short": "true" } }, { "id": 2086, "properties": { - "type": "normal", - "facing": "down", + "type": "sticky", + "facing": "up", "short": "true" } }, { "id": 2087, + "properties": { + "type": "normal", + "facing": "up", + "short": "false" + } + }, + { + "id": 2088, + "properties": { + "type": "sticky", + "facing": "up", + "short": "false" + } + }, + { + "id": 2089, + "properties": { + "type": "normal", + "facing": "down", + "short": "true" + } + }, + { + "id": 2090, "properties": { "type": "sticky", "facing": "down", @@ -170153,7 +170389,7 @@ } }, { - "id": 2088, + "id": 2091, "properties": { "type": "normal", "facing": "down", @@ -170161,7 +170397,7 @@ } }, { - "id": 2089, + "id": 2092, "properties": { "type": "sticky", "facing": "down", @@ -170190,7 +170426,7 @@ }, "states": [ { - "id": 13510, + "id": 13520, "properties": { "age": "0", "half": "upper" @@ -170198,63 +170434,63 @@ }, { "default": true, - "id": 13511, + "id": 13521, "properties": { "age": "0", "half": "lower" } }, { - "id": 13512, + "id": 13522, "properties": { "age": "1", "half": "upper" } }, { - "id": 13513, + "id": 13523, "properties": { "age": "1", "half": "lower" } }, { - "id": 13514, + "id": 13524, "properties": { "age": "2", "half": "upper" } }, { - "id": 13515, + "id": 13525, "properties": { "age": "2", "half": "lower" } }, { - "id": 13516, + "id": 13526, "properties": { "age": "3", "half": "upper" } }, { - "id": 13517, + "id": 13527, "properties": { "age": "3", "half": "lower" } }, { - "id": 13518, + "id": 13528, "properties": { "age": "4", "half": "upper" } }, { - "id": 13519, + "id": 13529, "properties": { "age": "4", "half": "lower" @@ -170275,14 +170511,14 @@ }, "states": [ { - "id": 13520, + "id": 13530, "properties": { "half": "upper" } }, { "default": true, - "id": 13521, + "id": 13531, "properties": { "half": "lower" } @@ -170320,112 +170556,112 @@ }, "states": [ { - "id": 9746, + "id": 9756, "properties": { "powered": "true", "rotation": "0" } }, { - "id": 9747, + "id": 9757, "properties": { "powered": "true", "rotation": "1" } }, { - "id": 9748, + "id": 9758, "properties": { "powered": "true", "rotation": "2" } }, { - "id": 9749, + "id": 9759, "properties": { "powered": "true", "rotation": "3" } }, { - "id": 9750, + "id": 9760, "properties": { "powered": "true", "rotation": "4" } }, { - "id": 9751, + "id": 9761, "properties": { "powered": "true", "rotation": "5" } }, { - "id": 9752, + "id": 9762, "properties": { "powered": "true", "rotation": "6" } }, { - "id": 9753, + "id": 9763, "properties": { "powered": "true", "rotation": "7" } }, { - "id": 9754, + "id": 9764, "properties": { "powered": "true", "rotation": "8" } }, { - "id": 9755, + "id": 9765, "properties": { "powered": "true", "rotation": "9" } }, { - "id": 9756, + "id": 9766, "properties": { "powered": "true", "rotation": "10" } }, { - "id": 9757, + "id": 9767, "properties": { "powered": "true", "rotation": "11" } }, { - "id": 9758, + "id": 9768, "properties": { "powered": "true", "rotation": "12" } }, { - "id": 9759, + "id": 9769, "properties": { "powered": "true", "rotation": "13" } }, { - "id": 9760, + "id": 9770, "properties": { "powered": "true", "rotation": "14" } }, { - "id": 9761, + "id": 9771, "properties": { "powered": "true", "rotation": "15" @@ -170433,112 +170669,112 @@ }, { "default": true, - "id": 9762, + "id": 9772, "properties": { "powered": "false", "rotation": "0" } }, { - "id": 9763, + "id": 9773, "properties": { "powered": "false", "rotation": "1" } }, { - "id": 9764, + "id": 9774, "properties": { "powered": "false", "rotation": "2" } }, { - "id": 9765, + "id": 9775, "properties": { "powered": "false", "rotation": "3" } }, { - "id": 9766, + "id": 9776, "properties": { "powered": "false", "rotation": "4" } }, { - "id": 9767, + "id": 9777, "properties": { "powered": "false", "rotation": "5" } }, { - "id": 9768, + "id": 9778, "properties": { "powered": "false", "rotation": "6" } }, { - "id": 9769, + "id": 9779, "properties": { "powered": "false", "rotation": "7" } }, { - "id": 9770, + "id": 9780, "properties": { "powered": "false", "rotation": "8" } }, { - "id": 9771, + "id": 9781, "properties": { "powered": "false", "rotation": "9" } }, { - "id": 9772, + "id": 9782, "properties": { "powered": "false", "rotation": "10" } }, { - "id": 9773, + "id": 9783, "properties": { "powered": "false", "rotation": "11" } }, { - "id": 9774, + "id": 9784, "properties": { "powered": "false", "rotation": "12" } }, { - "id": 9775, + "id": 9785, "properties": { "powered": "false", "rotation": "13" } }, { - "id": 9776, + "id": 9786, "properties": { "powered": "false", "rotation": "14" } }, { - "id": 9777, + "id": 9787, "properties": { "powered": "false", "rotation": "15" @@ -170565,7 +170801,7 @@ }, "states": [ { - "id": 9778, + "id": 9788, "properties": { "facing": "north", "powered": "true" @@ -170573,49 +170809,49 @@ }, { "default": true, - "id": 9779, + "id": 9789, "properties": { "facing": "north", "powered": "false" } }, { - "id": 9780, + "id": 9790, "properties": { "facing": "south", "powered": "true" } }, { - "id": 9781, + "id": 9791, "properties": { "facing": "south", "powered": "false" } }, { - "id": 9782, + "id": 9792, "properties": { "facing": "west", "powered": "true" } }, { - "id": 9783, + "id": 9793, "properties": { "facing": "west", "powered": "false" } }, { - "id": 9784, + "id": 9794, "properties": { "facing": "east", "powered": "true" } }, { - "id": 9785, + "id": 9795, "properties": { "facing": "east", "powered": "false" @@ -170674,7 +170910,7 @@ }, "states": [ { - "id": 25761, + "id": 25776, "properties": { "thickness": "tip_merge", "vertical_direction": "up", @@ -170682,7 +170918,7 @@ } }, { - "id": 25762, + "id": 25777, "properties": { "thickness": "tip_merge", "vertical_direction": "up", @@ -170690,7 +170926,7 @@ } }, { - "id": 25763, + "id": 25778, "properties": { "thickness": "tip_merge", "vertical_direction": "down", @@ -170698,7 +170934,7 @@ } }, { - "id": 25764, + "id": 25779, "properties": { "thickness": "tip_merge", "vertical_direction": "down", @@ -170706,7 +170942,7 @@ } }, { - "id": 25765, + "id": 25780, "properties": { "thickness": "tip", "vertical_direction": "up", @@ -170715,7 +170951,7 @@ }, { "default": true, - "id": 25766, + "id": 25781, "properties": { "thickness": "tip", "vertical_direction": "up", @@ -170723,7 +170959,7 @@ } }, { - "id": 25767, + "id": 25782, "properties": { "thickness": "tip", "vertical_direction": "down", @@ -170731,7 +170967,7 @@ } }, { - "id": 25768, + "id": 25783, "properties": { "thickness": "tip", "vertical_direction": "down", @@ -170739,7 +170975,7 @@ } }, { - "id": 25769, + "id": 25784, "properties": { "thickness": "frustum", "vertical_direction": "up", @@ -170747,7 +170983,7 @@ } }, { - "id": 25770, + "id": 25785, "properties": { "thickness": "frustum", "vertical_direction": "up", @@ -170755,7 +170991,7 @@ } }, { - "id": 25771, + "id": 25786, "properties": { "thickness": "frustum", "vertical_direction": "down", @@ -170763,7 +170999,7 @@ } }, { - "id": 25772, + "id": 25787, "properties": { "thickness": "frustum", "vertical_direction": "down", @@ -170771,7 +171007,7 @@ } }, { - "id": 25773, + "id": 25788, "properties": { "thickness": "middle", "vertical_direction": "up", @@ -170779,7 +171015,7 @@ } }, { - "id": 25774, + "id": 25789, "properties": { "thickness": "middle", "vertical_direction": "up", @@ -170787,7 +171023,7 @@ } }, { - "id": 25775, + "id": 25790, "properties": { "thickness": "middle", "vertical_direction": "down", @@ -170795,7 +171031,7 @@ } }, { - "id": 25776, + "id": 25791, "properties": { "thickness": "middle", "vertical_direction": "down", @@ -170803,7 +171039,7 @@ } }, { - "id": 25777, + "id": 25792, "properties": { "thickness": "base", "vertical_direction": "up", @@ -170811,7 +171047,7 @@ } }, { - "id": 25778, + "id": 25793, "properties": { "thickness": "base", "vertical_direction": "up", @@ -170819,7 +171055,7 @@ } }, { - "id": 25779, + "id": 25794, "properties": { "thickness": "base", "vertical_direction": "down", @@ -170827,7 +171063,7 @@ } }, { - "id": 25780, + "id": 25795, "properties": { "thickness": "base", "vertical_direction": "down", @@ -170866,21 +171102,21 @@ }, "states": [ { - "id": 15161, + "id": 15171, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 15162, + "id": 15172, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 15163, + "id": 15173, "properties": { "type": "bottom", "waterlogged": "true" @@ -170888,21 +171124,21 @@ }, { "default": true, - "id": 15164, + "id": 15174, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 15165, + "id": 15175, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 15166, + "id": 15176, "properties": { "type": "double", "waterlogged": "false" @@ -170942,98 +171178,98 @@ ] }, "states": [ - { - "id": 14935, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 14936, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14937, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14938, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14939, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14940, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14941, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14942, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14943, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14944, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 14945, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14946, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14947, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14948, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14949, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14950, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14951, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14952, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14953, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14954, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14955, "properties": { "facing": "north", "half": "bottom", @@ -171043,100 +171279,10 @@ }, { "default": true, - "id": 14946, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14947, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14948, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14949, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14950, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14951, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14952, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14953, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14954, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 14955, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 14956, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -171144,8 +171290,8 @@ { "id": 14957, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -171153,8 +171299,8 @@ { "id": 14958, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -171162,8 +171308,8 @@ { "id": 14959, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -171171,8 +171317,8 @@ { "id": 14960, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -171180,8 +171326,8 @@ { "id": 14961, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -171189,8 +171335,8 @@ { "id": 14962, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -171198,8 +171344,8 @@ { "id": 14963, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -171207,8 +171353,8 @@ { "id": 14964, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -171217,7 +171363,7 @@ "id": 14965, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -171226,7 +171372,7 @@ "id": 14966, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -171235,7 +171381,7 @@ "id": 14967, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -171244,7 +171390,7 @@ "id": 14968, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -171253,7 +171399,7 @@ "id": 14969, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -171262,7 +171408,7 @@ "id": 14970, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -171271,7 +171417,7 @@ "id": 14971, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -171280,7 +171426,7 @@ "id": 14972, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -171289,7 +171435,7 @@ "id": 14973, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -171298,7 +171444,7 @@ "id": 14974, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -171306,8 +171452,8 @@ { "id": 14975, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -171315,8 +171461,8 @@ { "id": 14976, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -171324,8 +171470,8 @@ { "id": 14977, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -171333,8 +171479,8 @@ { "id": 14978, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -171342,8 +171488,8 @@ { "id": 14979, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -171351,8 +171497,8 @@ { "id": 14980, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -171360,8 +171506,8 @@ { "id": 14981, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -171369,8 +171515,8 @@ { "id": 14982, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -171378,8 +171524,8 @@ { "id": 14983, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -171387,8 +171533,8 @@ { "id": 14984, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -171397,7 +171543,7 @@ "id": 14985, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -171406,7 +171552,7 @@ "id": 14986, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -171415,7 +171561,7 @@ "id": 14987, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -171424,7 +171570,7 @@ "id": 14988, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -171433,7 +171579,7 @@ "id": 14989, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -171442,7 +171588,7 @@ "id": 14990, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -171451,7 +171597,7 @@ "id": 14991, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -171460,7 +171606,7 @@ "id": 14992, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -171469,7 +171615,7 @@ "id": 14993, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -171478,7 +171624,7 @@ "id": 14994, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -171486,8 +171632,8 @@ { "id": 14995, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -171495,8 +171641,8 @@ { "id": 14996, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -171504,8 +171650,8 @@ { "id": 14997, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -171513,8 +171659,8 @@ { "id": 14998, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -171522,8 +171668,8 @@ { "id": 14999, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -171531,8 +171677,8 @@ { "id": 15000, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -171540,8 +171686,8 @@ { "id": 15001, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -171549,8 +171695,8 @@ { "id": 15002, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -171558,8 +171704,8 @@ { "id": 15003, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -171567,8 +171713,8 @@ { "id": 15004, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -171577,7 +171723,7 @@ "id": 15005, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -171586,7 +171732,7 @@ "id": 15006, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -171595,7 +171741,7 @@ "id": 15007, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -171604,7 +171750,7 @@ "id": 15008, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -171613,7 +171759,7 @@ "id": 15009, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -171622,7 +171768,7 @@ "id": 15010, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -171631,7 +171777,7 @@ "id": 15011, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -171640,7 +171786,7 @@ "id": 15012, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -171649,13 +171795,103 @@ "id": 15013, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 15014, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15015, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15016, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15017, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15018, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15019, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15020, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15021, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15022, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15023, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15024, "properties": { "facing": "east", "half": "bottom", @@ -171679,20 +171915,20 @@ }, "states": [ { - "id": 6024, + "id": 6034, "properties": { "axis": "x" } }, { "default": true, - "id": 6025, + "id": 6035, "properties": { "axis": "y" } }, { - "id": 6026, + "id": 6036, "properties": { "axis": "z" } @@ -171707,7 +171943,7 @@ "states": [ { "default": true, - "id": 20884 + "id": 20899 } ] }, @@ -171729,21 +171965,21 @@ }, "states": [ { - "id": 20888, + "id": 20903, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 20889, + "id": 20904, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 20890, + "id": 20905, "properties": { "type": "bottom", "waterlogged": "true" @@ -171751,21 +171987,21 @@ }, { "default": true, - "id": 20891, + "id": 20906, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 20892, + "id": 20907, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 20893, + "id": 20908, "properties": { "type": "double", "waterlogged": "false" @@ -171806,7 +172042,7 @@ }, "states": [ { - "id": 20894, + "id": 20909, "properties": { "facing": "north", "half": "top", @@ -171815,7 +172051,7 @@ } }, { - "id": 20895, + "id": 20910, "properties": { "facing": "north", "half": "top", @@ -171824,7 +172060,7 @@ } }, { - "id": 20896, + "id": 20911, "properties": { "facing": "north", "half": "top", @@ -171833,7 +172069,7 @@ } }, { - "id": 20897, + "id": 20912, "properties": { "facing": "north", "half": "top", @@ -171842,7 +172078,7 @@ } }, { - "id": 20898, + "id": 20913, "properties": { "facing": "north", "half": "top", @@ -171851,7 +172087,7 @@ } }, { - "id": 20899, + "id": 20914, "properties": { "facing": "north", "half": "top", @@ -171860,7 +172096,7 @@ } }, { - "id": 20900, + "id": 20915, "properties": { "facing": "north", "half": "top", @@ -171869,7 +172105,7 @@ } }, { - "id": 20901, + "id": 20916, "properties": { "facing": "north", "half": "top", @@ -171878,7 +172114,7 @@ } }, { - "id": 20902, + "id": 20917, "properties": { "facing": "north", "half": "top", @@ -171887,7 +172123,7 @@ } }, { - "id": 20903, + "id": 20918, "properties": { "facing": "north", "half": "top", @@ -171896,7 +172132,7 @@ } }, { - "id": 20904, + "id": 20919, "properties": { "facing": "north", "half": "bottom", @@ -171906,250 +172142,250 @@ }, { "default": true, - "id": 20905, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20906, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20907, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20908, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20909, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20910, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20911, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20912, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 20913, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 20914, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20915, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20916, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20917, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20918, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20919, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { "id": 20920, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { "id": 20921, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 20922, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { "id": 20923, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 20924, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "shape": "inner_right", + "waterlogged": "false" } }, { "id": 20925, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 20926, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "shape": "outer_left", + "waterlogged": "false" } }, { "id": 20927, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "shape": "outer_right", + "waterlogged": "true" } }, { "id": 20928, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "shape": "outer_right", + "waterlogged": "false" } }, { "id": 20929, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 20930, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 20931, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 20932, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20933, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20934, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20935, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20936, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20937, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20938, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20939, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20940, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20941, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20942, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20943, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20944, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20945, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20946, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20947, "properties": { "facing": "south", "half": "bottom", @@ -172158,7 +172394,7 @@ } }, { - "id": 20933, + "id": 20948, "properties": { "facing": "south", "half": "bottom", @@ -172166,170 +172402,170 @@ "waterlogged": "false" } }, - { - "id": 20934, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20935, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20936, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20937, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20938, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20939, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20940, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20941, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20942, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 20943, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 20944, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20945, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20946, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20947, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20948, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 20949, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 20950, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 20951, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 20952, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20953, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20954, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20955, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20956, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20957, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20958, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20959, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20960, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20961, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20962, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20963, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20964, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20965, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20966, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20967, "properties": { "facing": "west", "half": "bottom", @@ -172338,7 +172574,7 @@ } }, { - "id": 20953, + "id": 20968, "properties": { "facing": "west", "half": "bottom", @@ -172346,152 +172582,152 @@ "waterlogged": "false" } }, - { - "id": 20954, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20955, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20956, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20957, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20958, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20959, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20960, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20961, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20962, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 20963, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 20964, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20965, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20966, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20967, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20968, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 20969, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 20970, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20971, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20972, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20973, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20974, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20975, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20976, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20977, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20978, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20979, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20980, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20981, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20982, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20983, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20984, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20985, "properties": { "facing": "east", "half": "bottom", @@ -172500,7 +172736,7 @@ } }, { - "id": 20971, + "id": 20986, "properties": { "facing": "east", "half": "bottom", @@ -172509,7 +172745,7 @@ } }, { - "id": 20972, + "id": 20987, "properties": { "facing": "east", "half": "bottom", @@ -172518,7 +172754,7 @@ } }, { - "id": 20973, + "id": 20988, "properties": { "facing": "east", "half": "bottom", @@ -172565,7 +172801,7 @@ }, "states": [ { - "id": 20974, + "id": 20989, "properties": { "east": "none", "north": "none", @@ -172576,7 +172812,7 @@ } }, { - "id": 20975, + "id": 20990, "properties": { "east": "none", "north": "none", @@ -172587,7 +172823,7 @@ } }, { - "id": 20976, + "id": 20991, "properties": { "east": "none", "north": "none", @@ -172599,178 +172835,13 @@ }, { "default": true, - "id": 20977, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20978, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20979, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20980, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20981, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20982, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20983, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20984, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20985, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20986, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20987, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20988, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20989, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20990, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20991, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { "id": 20992, "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -172779,9 +172850,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -172790,9 +172861,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -172801,9 +172872,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -172812,9 +172883,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -172823,9 +172894,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -172834,9 +172905,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -172845,9 +172916,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -172856,9 +172927,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -172867,9 +172938,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -172878,9 +172949,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -172889,9 +172960,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -172900,9 +172971,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -172911,9 +172982,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -172922,9 +172993,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -172933,9 +173004,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -172944,9 +173015,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -172955,9 +173026,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -172965,10 +173036,10 @@ "id": 21010, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -172976,10 +173047,10 @@ "id": 21011, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -172987,10 +173058,10 @@ "id": 21012, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -172998,10 +173069,10 @@ "id": 21013, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -173009,10 +173080,10 @@ "id": 21014, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -173020,10 +173091,10 @@ "id": 21015, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -173031,10 +173102,10 @@ "id": 21016, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -173042,10 +173113,10 @@ "id": 21017, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -173053,10 +173124,10 @@ "id": 21018, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -173064,10 +173135,10 @@ "id": 21019, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -173075,10 +173146,10 @@ "id": 21020, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -173086,10 +173157,10 @@ "id": 21021, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -173097,10 +173168,10 @@ "id": 21022, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -173108,10 +173179,10 @@ "id": 21023, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -173119,10 +173190,10 @@ "id": 21024, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -173131,9 +173202,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -173142,9 +173213,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -173153,9 +173224,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -173164,9 +173235,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -173175,9 +173246,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -173186,9 +173257,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -173197,9 +173268,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -173208,9 +173279,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -173219,9 +173290,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -173230,9 +173301,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -173241,9 +173312,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -173252,9 +173323,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -173263,9 +173334,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -173274,9 +173345,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -173285,9 +173356,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -173296,9 +173367,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -173307,9 +173378,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -173318,9 +173389,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -173329,9 +173400,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -173340,9 +173411,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -173351,9 +173422,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -173361,10 +173432,10 @@ "id": 21046, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -173372,10 +173443,10 @@ "id": 21047, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -173383,10 +173454,10 @@ "id": 21048, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -173394,10 +173465,10 @@ "id": 21049, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -173405,10 +173476,10 @@ "id": 21050, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -173416,10 +173487,10 @@ "id": 21051, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -173427,10 +173498,10 @@ "id": 21052, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -173438,10 +173509,10 @@ "id": 21053, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -173449,10 +173520,10 @@ "id": 21054, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -173460,10 +173531,10 @@ "id": 21055, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -173471,10 +173542,10 @@ "id": 21056, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -173482,10 +173553,10 @@ "id": 21057, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -173493,10 +173564,10 @@ "id": 21058, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -173504,10 +173575,10 @@ "id": 21059, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -173515,10 +173586,10 @@ "id": 21060, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -173527,9 +173598,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -173538,9 +173609,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -173549,9 +173620,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -173560,9 +173631,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -173571,9 +173642,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -173582,9 +173653,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -173593,9 +173664,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -173604,9 +173675,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -173615,9 +173686,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -173626,9 +173697,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -173637,9 +173708,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -173648,9 +173719,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -173659,9 +173730,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -173670,9 +173741,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -173681,9 +173752,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -173692,9 +173763,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -173703,9 +173774,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -173714,9 +173785,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -173725,14 +173796,179 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 21080, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21081, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21082, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21083, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21084, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21085, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21086, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21087, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21088, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21089, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21090, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21091, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21092, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21093, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21094, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21095, "properties": { "east": "none", "north": "tall", @@ -173743,7 +173979,7 @@ } }, { - "id": 21081, + "id": 21096, "properties": { "east": "none", "north": "tall", @@ -173753,179 +173989,14 @@ "west": "tall" } }, - { - "id": 21082, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21083, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21084, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 21085, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21086, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21087, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 21088, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21089, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21090, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 21091, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21092, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21093, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 21094, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21095, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21096, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 21097, "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -173934,9 +174005,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -173945,9 +174016,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -173956,9 +174027,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -173967,9 +174038,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -173978,9 +174049,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -173989,9 +174060,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -174000,9 +174071,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -174011,9 +174082,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -174022,9 +174093,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -174033,9 +174104,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -174044,9 +174115,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -174055,9 +174126,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -174066,9 +174137,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -174077,9 +174148,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -174088,9 +174159,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -174099,9 +174170,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -174110,9 +174181,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -174121,9 +174192,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -174132,9 +174203,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -174143,9 +174214,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -174153,10 +174224,10 @@ "id": 21118, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -174164,10 +174235,10 @@ "id": 21119, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -174175,10 +174246,10 @@ "id": 21120, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -174186,10 +174257,10 @@ "id": 21121, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -174197,10 +174268,10 @@ "id": 21122, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -174208,10 +174279,10 @@ "id": 21123, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -174219,10 +174290,10 @@ "id": 21124, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -174230,10 +174301,10 @@ "id": 21125, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -174241,10 +174312,10 @@ "id": 21126, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -174252,10 +174323,10 @@ "id": 21127, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -174263,10 +174334,10 @@ "id": 21128, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -174274,10 +174345,10 @@ "id": 21129, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -174285,10 +174356,10 @@ "id": 21130, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -174296,10 +174367,10 @@ "id": 21131, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -174307,10 +174378,10 @@ "id": 21132, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -174319,9 +174390,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -174330,9 +174401,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -174341,9 +174412,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -174352,9 +174423,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -174363,9 +174434,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -174374,9 +174445,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -174385,9 +174456,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -174396,9 +174467,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -174407,9 +174478,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -174418,9 +174489,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -174429,9 +174500,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -174440,9 +174511,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -174451,9 +174522,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -174462,9 +174533,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -174473,9 +174544,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -174484,9 +174555,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -174495,9 +174566,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -174506,9 +174577,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -174517,9 +174588,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -174528,9 +174599,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -174539,9 +174610,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -174549,10 +174620,10 @@ "id": 21154, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -174560,10 +174631,10 @@ "id": 21155, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -174571,10 +174642,10 @@ "id": 21156, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -174582,10 +174653,10 @@ "id": 21157, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -174593,10 +174664,10 @@ "id": 21158, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -174604,10 +174675,10 @@ "id": 21159, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -174615,10 +174686,10 @@ "id": 21160, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -174626,10 +174697,10 @@ "id": 21161, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -174637,10 +174708,10 @@ "id": 21162, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -174648,10 +174719,10 @@ "id": 21163, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -174659,10 +174730,10 @@ "id": 21164, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -174670,10 +174741,10 @@ "id": 21165, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -174681,10 +174752,10 @@ "id": 21166, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -174692,10 +174763,10 @@ "id": 21167, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -174703,10 +174774,10 @@ "id": 21168, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -174715,9 +174786,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -174726,9 +174797,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -174737,9 +174808,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -174748,9 +174819,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -174759,9 +174830,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -174770,9 +174841,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -174781,9 +174852,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -174792,9 +174863,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -174803,9 +174874,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -174814,9 +174885,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -174825,9 +174896,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -174836,9 +174907,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -174847,9 +174918,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -174858,9 +174929,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -174869,9 +174940,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -174880,9 +174951,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -174891,9 +174962,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -174902,9 +174973,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -174913,14 +174984,179 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 21188, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21189, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21190, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21191, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21192, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21193, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21194, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21195, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21196, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21197, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21198, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21199, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21200, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21201, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21202, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21203, "properties": { "east": "low", "north": "tall", @@ -174931,7 +175167,7 @@ } }, { - "id": 21189, + "id": 21204, "properties": { "east": "low", "north": "tall", @@ -174941,179 +175177,14 @@ "west": "tall" } }, - { - "id": 21190, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21191, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21192, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 21193, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21194, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21195, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 21196, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21197, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21198, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 21199, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21200, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21201, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 21202, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21203, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21204, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 21205, "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -175122,9 +175193,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -175133,9 +175204,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -175144,9 +175215,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -175155,9 +175226,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -175166,9 +175237,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -175177,9 +175248,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -175188,9 +175259,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -175199,9 +175270,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -175210,9 +175281,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -175221,9 +175292,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -175232,9 +175303,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -175243,9 +175314,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -175254,9 +175325,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -175265,9 +175336,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -175276,9 +175347,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -175287,9 +175358,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -175298,9 +175369,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -175309,14 +175380,179 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 21224, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21225, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21226, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21227, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21228, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21229, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21230, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21231, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21232, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21233, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21234, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21235, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21236, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21237, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21238, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21239, "properties": { "east": "tall", "north": "none", @@ -175327,7 +175563,7 @@ } }, { - "id": 21225, + "id": 21240, "properties": { "east": "tall", "north": "none", @@ -175337,179 +175573,14 @@ "west": "tall" } }, - { - "id": 21226, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21227, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21228, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 21229, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21230, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21231, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 21232, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21233, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21234, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 21235, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21236, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21237, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 21238, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21239, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21240, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 21241, "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -175518,9 +175589,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -175529,9 +175600,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -175540,9 +175611,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -175551,9 +175622,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -175562,9 +175633,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -175573,9 +175644,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -175584,9 +175655,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -175595,9 +175666,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -175606,9 +175677,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -175617,9 +175688,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -175628,9 +175699,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -175639,9 +175710,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -175650,9 +175721,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -175661,9 +175732,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -175672,9 +175743,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -175683,9 +175754,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -175694,9 +175765,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -175705,14 +175776,179 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 21260, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21261, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21262, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21263, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21264, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21265, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21266, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21267, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21268, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21269, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21270, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21271, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21272, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21273, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21274, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21275, "properties": { "east": "tall", "north": "low", @@ -175723,7 +175959,7 @@ } }, { - "id": 21261, + "id": 21276, "properties": { "east": "tall", "north": "low", @@ -175733,179 +175969,14 @@ "west": "tall" } }, - { - "id": 21262, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21263, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21264, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 21265, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21266, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21267, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 21268, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21269, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21270, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 21271, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21272, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21273, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 21274, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21275, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21276, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 21277, "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -175914,9 +175985,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -175925,9 +175996,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -175936,9 +176007,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -175947,9 +176018,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -175958,9 +176029,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -175969,9 +176040,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -175980,9 +176051,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -175991,9 +176062,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -176002,9 +176073,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -176013,9 +176084,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -176024,9 +176095,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -176035,9 +176106,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -176046,9 +176117,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -176057,14 +176128,179 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, { "id": 21292, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21293, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21294, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21295, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21296, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21297, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21298, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21299, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21300, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21301, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21302, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21303, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21304, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21305, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21306, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21307, "properties": { "east": "tall", "north": "tall", @@ -176075,7 +176311,7 @@ } }, { - "id": 21293, + "id": 21308, "properties": { "east": "tall", "north": "tall", @@ -176086,7 +176322,7 @@ } }, { - "id": 21294, + "id": 21309, "properties": { "east": "tall", "north": "tall", @@ -176097,7 +176333,7 @@ } }, { - "id": 21295, + "id": 21310, "properties": { "east": "tall", "north": "tall", @@ -176108,7 +176344,7 @@ } }, { - "id": 21296, + "id": 21311, "properties": { "east": "tall", "north": "tall", @@ -176119,7 +176355,7 @@ } }, { - "id": 21297, + "id": 21312, "properties": { "east": "tall", "north": "tall", @@ -176139,7 +176375,7 @@ "states": [ { "default": true, - "id": 20885 + "id": 20900 } ] }, @@ -176169,7 +176405,7 @@ }, "states": [ { - "id": 21387, + "id": 21402, "properties": { "face": "floor", "facing": "north", @@ -176177,7 +176413,7 @@ } }, { - "id": 21388, + "id": 21403, "properties": { "face": "floor", "facing": "north", @@ -176185,7 +176421,7 @@ } }, { - "id": 21389, + "id": 21404, "properties": { "face": "floor", "facing": "south", @@ -176193,7 +176429,7 @@ } }, { - "id": 21390, + "id": 21405, "properties": { "face": "floor", "facing": "south", @@ -176201,7 +176437,7 @@ } }, { - "id": 21391, + "id": 21406, "properties": { "face": "floor", "facing": "west", @@ -176209,7 +176445,7 @@ } }, { - "id": 21392, + "id": 21407, "properties": { "face": "floor", "facing": "west", @@ -176217,7 +176453,7 @@ } }, { - "id": 21393, + "id": 21408, "properties": { "face": "floor", "facing": "east", @@ -176225,7 +176461,7 @@ } }, { - "id": 21394, + "id": 21409, "properties": { "face": "floor", "facing": "east", @@ -176233,7 +176469,7 @@ } }, { - "id": 21395, + "id": 21410, "properties": { "face": "wall", "facing": "north", @@ -176242,7 +176478,7 @@ }, { "default": true, - "id": 21396, + "id": 21411, "properties": { "face": "wall", "facing": "north", @@ -176250,7 +176486,7 @@ } }, { - "id": 21397, + "id": 21412, "properties": { "face": "wall", "facing": "south", @@ -176258,7 +176494,7 @@ } }, { - "id": 21398, + "id": 21413, "properties": { "face": "wall", "facing": "south", @@ -176266,7 +176502,7 @@ } }, { - "id": 21399, + "id": 21414, "properties": { "face": "wall", "facing": "west", @@ -176274,7 +176510,7 @@ } }, { - "id": 21400, + "id": 21415, "properties": { "face": "wall", "facing": "west", @@ -176282,7 +176518,7 @@ } }, { - "id": 21401, + "id": 21416, "properties": { "face": "wall", "facing": "east", @@ -176290,7 +176526,7 @@ } }, { - "id": 21402, + "id": 21417, "properties": { "face": "wall", "facing": "east", @@ -176298,7 +176534,7 @@ } }, { - "id": 21403, + "id": 21418, "properties": { "face": "ceiling", "facing": "north", @@ -176306,7 +176542,7 @@ } }, { - "id": 21404, + "id": 21419, "properties": { "face": "ceiling", "facing": "north", @@ -176314,7 +176550,7 @@ } }, { - "id": 21405, + "id": 21420, "properties": { "face": "ceiling", "facing": "south", @@ -176322,7 +176558,7 @@ } }, { - "id": 21406, + "id": 21421, "properties": { "face": "ceiling", "facing": "south", @@ -176330,7 +176566,7 @@ } }, { - "id": 21407, + "id": 21422, "properties": { "face": "ceiling", "facing": "west", @@ -176338,7 +176574,7 @@ } }, { - "id": 21408, + "id": 21423, "properties": { "face": "ceiling", "facing": "west", @@ -176346,7 +176582,7 @@ } }, { - "id": 21409, + "id": 21424, "properties": { "face": "ceiling", "facing": "east", @@ -176354,7 +176590,7 @@ } }, { - "id": 21410, + "id": 21425, "properties": { "face": "ceiling", "facing": "east", @@ -176377,14 +176613,14 @@ }, "states": [ { - "id": 21385, + "id": 21400, "properties": { "powered": "true" } }, { "default": true, - "id": 21386, + "id": 21401, "properties": { "powered": "false" } @@ -176409,21 +176645,21 @@ }, "states": [ { - "id": 21379, + "id": 21394, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 21380, + "id": 21395, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 21381, + "id": 21396, "properties": { "type": "bottom", "waterlogged": "true" @@ -176431,21 +176667,21 @@ }, { "default": true, - "id": 21382, + "id": 21397, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 21383, + "id": 21398, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 21384, + "id": 21399, "properties": { "type": "double", "waterlogged": "false" @@ -176486,7 +176722,7 @@ }, "states": [ { - "id": 21299, + "id": 21314, "properties": { "facing": "north", "half": "top", @@ -176495,7 +176731,7 @@ } }, { - "id": 21300, + "id": 21315, "properties": { "facing": "north", "half": "top", @@ -176504,7 +176740,7 @@ } }, { - "id": 21301, + "id": 21316, "properties": { "facing": "north", "half": "top", @@ -176513,7 +176749,7 @@ } }, { - "id": 21302, + "id": 21317, "properties": { "facing": "north", "half": "top", @@ -176522,7 +176758,7 @@ } }, { - "id": 21303, + "id": 21318, "properties": { "facing": "north", "half": "top", @@ -176531,7 +176767,7 @@ } }, { - "id": 21304, + "id": 21319, "properties": { "facing": "north", "half": "top", @@ -176540,7 +176776,7 @@ } }, { - "id": 21305, + "id": 21320, "properties": { "facing": "north", "half": "top", @@ -176549,7 +176785,7 @@ } }, { - "id": 21306, + "id": 21321, "properties": { "facing": "north", "half": "top", @@ -176558,7 +176794,7 @@ } }, { - "id": 21307, + "id": 21322, "properties": { "facing": "north", "half": "top", @@ -176567,7 +176803,7 @@ } }, { - "id": 21308, + "id": 21323, "properties": { "facing": "north", "half": "top", @@ -176576,7 +176812,7 @@ } }, { - "id": 21309, + "id": 21324, "properties": { "facing": "north", "half": "bottom", @@ -176586,250 +176822,250 @@ }, { "default": true, - "id": 21310, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21311, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21312, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21313, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21314, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21315, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21316, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21317, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21318, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21319, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21320, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21321, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21322, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21323, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21324, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { "id": 21325, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { "id": 21326, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 21327, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { "id": 21328, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 21329, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "shape": "inner_right", + "waterlogged": "false" } }, { "id": 21330, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 21331, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "shape": "outer_left", + "waterlogged": "false" } }, { "id": 21332, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "shape": "outer_right", + "waterlogged": "true" } }, { "id": 21333, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "shape": "outer_right", + "waterlogged": "false" } }, { "id": 21334, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 21335, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 21336, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 21337, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21338, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21339, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21340, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21341, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21342, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21343, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21344, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21345, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21346, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21347, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21348, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21349, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21350, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21351, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21352, "properties": { "facing": "south", "half": "bottom", @@ -176838,7 +177074,7 @@ } }, { - "id": 21338, + "id": 21353, "properties": { "facing": "south", "half": "bottom", @@ -176846,170 +177082,170 @@ "waterlogged": "false" } }, - { - "id": 21339, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21340, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21341, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21342, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21343, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21344, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21345, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21346, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21347, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21348, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21349, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21350, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21351, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21352, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21353, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 21354, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 21355, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 21356, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 21357, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21358, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21359, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21360, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21361, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21362, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21363, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21364, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21365, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21366, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21367, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21368, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21369, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21370, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21371, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21372, "properties": { "facing": "west", "half": "bottom", @@ -177018,7 +177254,7 @@ } }, { - "id": 21358, + "id": 21373, "properties": { "facing": "west", "half": "bottom", @@ -177026,152 +177262,152 @@ "waterlogged": "false" } }, - { - "id": 21359, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21360, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21361, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21362, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21363, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21364, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21365, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21366, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21367, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21368, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21369, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21370, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21371, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21372, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21373, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 21374, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 21375, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21376, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21377, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21378, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21379, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21380, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21381, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21382, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21383, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21384, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21385, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21386, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21387, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21388, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21389, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21390, "properties": { "facing": "east", "half": "bottom", @@ -177180,7 +177416,7 @@ } }, { - "id": 21376, + "id": 21391, "properties": { "facing": "east", "half": "bottom", @@ -177189,7 +177425,7 @@ } }, { - "id": 21377, + "id": 21392, "properties": { "facing": "east", "half": "bottom", @@ -177198,7 +177434,7 @@ } }, { - "id": 21378, + "id": 21393, "properties": { "facing": "east", "half": "bottom", @@ -177245,7 +177481,7 @@ }, "states": [ { - "id": 21411, + "id": 21426, "properties": { "east": "none", "north": "none", @@ -177256,7 +177492,7 @@ } }, { - "id": 21412, + "id": 21427, "properties": { "east": "none", "north": "none", @@ -177267,7 +177503,7 @@ } }, { - "id": 21413, + "id": 21428, "properties": { "east": "none", "north": "none", @@ -177279,178 +177515,13 @@ }, { "default": true, - "id": 21414, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21415, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21416, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 21417, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21418, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21419, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 21420, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21421, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21422, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 21423, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21424, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21425, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 21426, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21427, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21428, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { "id": 21429, "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -177459,9 +177530,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -177470,9 +177541,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -177481,9 +177552,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -177492,9 +177563,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -177503,9 +177574,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -177514,9 +177585,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -177525,9 +177596,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -177536,9 +177607,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -177547,9 +177618,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -177558,9 +177629,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -177569,9 +177640,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -177580,9 +177651,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -177591,9 +177662,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -177602,9 +177673,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -177613,9 +177684,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -177624,9 +177695,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -177635,9 +177706,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -177645,10 +177716,10 @@ "id": 21447, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -177656,10 +177727,10 @@ "id": 21448, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -177667,10 +177738,10 @@ "id": 21449, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -177678,10 +177749,10 @@ "id": 21450, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -177689,10 +177760,10 @@ "id": 21451, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -177700,10 +177771,10 @@ "id": 21452, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -177711,10 +177782,10 @@ "id": 21453, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -177722,10 +177793,10 @@ "id": 21454, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -177733,10 +177804,10 @@ "id": 21455, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -177744,10 +177815,10 @@ "id": 21456, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -177755,10 +177826,10 @@ "id": 21457, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -177766,10 +177837,10 @@ "id": 21458, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -177777,10 +177848,10 @@ "id": 21459, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -177788,10 +177859,10 @@ "id": 21460, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -177799,10 +177870,10 @@ "id": 21461, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -177811,9 +177882,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -177822,9 +177893,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -177833,9 +177904,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -177844,9 +177915,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -177855,9 +177926,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -177866,9 +177937,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -177877,9 +177948,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -177888,9 +177959,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -177899,9 +177970,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -177910,9 +177981,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -177921,9 +177992,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -177932,9 +178003,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -177943,9 +178014,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -177954,9 +178025,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -177965,9 +178036,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -177976,9 +178047,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -177987,9 +178058,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -177998,9 +178069,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -178009,9 +178080,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -178020,9 +178091,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -178031,9 +178102,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -178041,10 +178112,10 @@ "id": 21483, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -178052,10 +178123,10 @@ "id": 21484, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -178063,10 +178134,10 @@ "id": 21485, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -178074,10 +178145,10 @@ "id": 21486, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -178085,10 +178156,10 @@ "id": 21487, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -178096,10 +178167,10 @@ "id": 21488, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -178107,10 +178178,10 @@ "id": 21489, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -178118,10 +178189,10 @@ "id": 21490, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -178129,10 +178200,10 @@ "id": 21491, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -178140,10 +178211,10 @@ "id": 21492, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -178151,10 +178222,10 @@ "id": 21493, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -178162,10 +178233,10 @@ "id": 21494, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -178173,10 +178244,10 @@ "id": 21495, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -178184,10 +178255,10 @@ "id": 21496, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -178195,10 +178266,10 @@ "id": 21497, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -178207,9 +178278,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -178218,9 +178289,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -178229,9 +178300,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -178240,9 +178311,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -178251,9 +178322,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -178262,9 +178333,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -178273,9 +178344,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -178284,9 +178355,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -178295,9 +178366,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -178306,9 +178377,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -178317,9 +178388,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -178328,9 +178399,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -178339,9 +178410,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -178350,9 +178421,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -178361,9 +178432,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -178372,9 +178443,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -178383,9 +178454,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -178394,9 +178465,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -178405,14 +178476,179 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 21517, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21518, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21519, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21520, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21521, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21522, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21523, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21524, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21525, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21526, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21527, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21528, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21529, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21530, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21531, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21532, "properties": { "east": "none", "north": "tall", @@ -178423,7 +178659,7 @@ } }, { - "id": 21518, + "id": 21533, "properties": { "east": "none", "north": "tall", @@ -178433,179 +178669,14 @@ "west": "tall" } }, - { - "id": 21519, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21520, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21521, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 21522, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21523, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21524, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 21525, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21526, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21527, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 21528, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21529, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21530, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 21531, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21532, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21533, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 21534, "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -178614,9 +178685,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -178625,9 +178696,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -178636,9 +178707,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -178647,9 +178718,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -178658,9 +178729,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -178669,9 +178740,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -178680,9 +178751,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -178691,9 +178762,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -178702,9 +178773,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -178713,9 +178784,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -178724,9 +178795,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -178735,9 +178806,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -178746,9 +178817,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -178757,9 +178828,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -178768,9 +178839,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -178779,9 +178850,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -178790,9 +178861,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -178801,9 +178872,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -178812,9 +178883,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -178823,9 +178894,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -178833,10 +178904,10 @@ "id": 21555, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -178844,10 +178915,10 @@ "id": 21556, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -178855,10 +178926,10 @@ "id": 21557, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -178866,10 +178937,10 @@ "id": 21558, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -178877,10 +178948,10 @@ "id": 21559, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -178888,10 +178959,10 @@ "id": 21560, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -178899,10 +178970,10 @@ "id": 21561, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -178910,10 +178981,10 @@ "id": 21562, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -178921,10 +178992,10 @@ "id": 21563, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -178932,10 +179003,10 @@ "id": 21564, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -178943,10 +179014,10 @@ "id": 21565, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -178954,10 +179025,10 @@ "id": 21566, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -178965,10 +179036,10 @@ "id": 21567, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -178976,10 +179047,10 @@ "id": 21568, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -178987,10 +179058,10 @@ "id": 21569, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -178999,9 +179070,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -179010,9 +179081,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -179021,9 +179092,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -179032,9 +179103,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -179043,9 +179114,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -179054,9 +179125,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -179065,9 +179136,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -179076,9 +179147,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -179087,9 +179158,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -179098,9 +179169,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -179109,9 +179180,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -179120,9 +179191,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -179131,9 +179202,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -179142,9 +179213,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -179153,9 +179224,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -179164,9 +179235,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -179175,9 +179246,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -179186,9 +179257,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -179197,9 +179268,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -179208,9 +179279,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -179219,9 +179290,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -179229,10 +179300,10 @@ "id": 21591, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -179240,10 +179311,10 @@ "id": 21592, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -179251,10 +179322,10 @@ "id": 21593, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -179262,10 +179333,10 @@ "id": 21594, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -179273,10 +179344,10 @@ "id": 21595, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -179284,10 +179355,10 @@ "id": 21596, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -179295,10 +179366,10 @@ "id": 21597, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -179306,10 +179377,10 @@ "id": 21598, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -179317,10 +179388,10 @@ "id": 21599, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -179328,10 +179399,10 @@ "id": 21600, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -179339,10 +179410,10 @@ "id": 21601, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -179350,10 +179421,10 @@ "id": 21602, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -179361,10 +179432,10 @@ "id": 21603, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -179372,10 +179443,10 @@ "id": 21604, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -179383,10 +179454,10 @@ "id": 21605, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -179395,9 +179466,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -179406,9 +179477,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -179417,9 +179488,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -179428,9 +179499,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -179439,9 +179510,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -179450,9 +179521,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -179461,9 +179532,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -179472,9 +179543,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -179483,9 +179554,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -179494,9 +179565,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -179505,9 +179576,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -179516,9 +179587,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -179527,9 +179598,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -179538,9 +179609,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -179549,9 +179620,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -179560,9 +179631,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -179571,9 +179642,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -179582,9 +179653,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -179593,14 +179664,179 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 21625, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21626, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21627, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21628, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21629, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21630, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21631, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21632, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21633, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21634, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21635, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21636, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21637, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21638, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21639, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21640, "properties": { "east": "low", "north": "tall", @@ -179611,7 +179847,7 @@ } }, { - "id": 21626, + "id": 21641, "properties": { "east": "low", "north": "tall", @@ -179621,179 +179857,14 @@ "west": "tall" } }, - { - "id": 21627, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21628, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21629, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 21630, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21631, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21632, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 21633, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21634, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21635, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 21636, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21637, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21638, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 21639, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21640, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21641, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 21642, "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -179802,9 +179873,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -179813,9 +179884,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -179824,9 +179895,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -179835,9 +179906,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -179846,9 +179917,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -179857,9 +179928,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -179868,9 +179939,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -179879,9 +179950,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -179890,9 +179961,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -179901,9 +179972,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -179912,9 +179983,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -179923,9 +179994,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -179934,9 +180005,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -179945,9 +180016,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -179956,9 +180027,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -179967,9 +180038,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -179978,9 +180049,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -179989,14 +180060,179 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 21661, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21662, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21663, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21664, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21665, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21666, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21667, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21668, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21669, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21670, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21671, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21672, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21673, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21674, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21675, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21676, "properties": { "east": "tall", "north": "none", @@ -180007,7 +180243,7 @@ } }, { - "id": 21662, + "id": 21677, "properties": { "east": "tall", "north": "none", @@ -180017,179 +180253,14 @@ "west": "tall" } }, - { - "id": 21663, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21664, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21665, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 21666, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21667, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21668, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 21669, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21670, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21671, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 21672, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21673, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21674, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 21675, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21676, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21677, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 21678, "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -180198,9 +180269,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -180209,9 +180280,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -180220,9 +180291,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -180231,9 +180302,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -180242,9 +180313,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -180253,9 +180324,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -180264,9 +180335,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -180275,9 +180346,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -180286,9 +180357,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -180297,9 +180368,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -180308,9 +180379,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -180319,9 +180390,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -180330,9 +180401,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -180341,9 +180412,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -180352,9 +180423,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -180363,9 +180434,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -180374,9 +180445,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -180385,14 +180456,179 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 21697, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21698, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21699, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21700, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21701, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21702, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21703, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21704, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21705, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21706, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21707, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21708, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21709, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21710, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21711, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21712, "properties": { "east": "tall", "north": "low", @@ -180403,7 +180639,7 @@ } }, { - "id": 21698, + "id": 21713, "properties": { "east": "tall", "north": "low", @@ -180413,179 +180649,14 @@ "west": "tall" } }, - { - "id": 21699, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21700, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21701, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 21702, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21703, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21704, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 21705, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21706, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21707, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 21708, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 21709, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 21710, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 21711, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 21712, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 21713, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 21714, "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -180594,9 +180665,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -180605,9 +180676,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -180616,9 +180687,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -180627,9 +180698,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -180638,9 +180709,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -180649,9 +180720,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -180660,9 +180731,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -180671,9 +180742,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -180682,9 +180753,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -180693,9 +180764,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -180704,9 +180775,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -180715,9 +180786,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -180726,9 +180797,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -180737,14 +180808,179 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, { "id": 21729, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21730, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21731, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21732, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21733, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21734, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21735, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21736, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21737, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21738, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21739, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21740, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21741, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21742, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21743, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21744, "properties": { "east": "tall", "north": "tall", @@ -180755,7 +180991,7 @@ } }, { - "id": 21730, + "id": 21745, "properties": { "east": "tall", "north": "tall", @@ -180766,7 +181002,7 @@ } }, { - "id": 21731, + "id": 21746, "properties": { "east": "tall", "north": "tall", @@ -180777,7 +181013,7 @@ } }, { - "id": 21732, + "id": 21747, "properties": { "east": "tall", "north": "tall", @@ -180788,7 +181024,7 @@ } }, { - "id": 21733, + "id": 21748, "properties": { "east": "tall", "north": "tall", @@ -180799,7 +181035,7 @@ } }, { - "id": 21734, + "id": 21749, "properties": { "east": "tall", "north": "tall", @@ -180819,7 +181055,7 @@ "states": [ { "default": true, - "id": 26331 + "id": 26378 } ] }, @@ -180841,21 +181077,21 @@ }, "states": [ { - "id": 26412, + "id": 26459, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 26413, + "id": 26460, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 26414, + "id": 26461, "properties": { "type": "bottom", "waterlogged": "true" @@ -180863,21 +181099,21 @@ }, { "default": true, - "id": 26415, + "id": 26462, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 26416, + "id": 26463, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 26417, + "id": 26464, "properties": { "type": "double", "waterlogged": "false" @@ -180918,7 +181154,7 @@ }, "states": [ { - "id": 26332, + "id": 26379, "properties": { "facing": "north", "half": "top", @@ -180927,7 +181163,7 @@ } }, { - "id": 26333, + "id": 26380, "properties": { "facing": "north", "half": "top", @@ -180936,7 +181172,7 @@ } }, { - "id": 26334, + "id": 26381, "properties": { "facing": "north", "half": "top", @@ -180945,7 +181181,7 @@ } }, { - "id": 26335, + "id": 26382, "properties": { "facing": "north", "half": "top", @@ -180954,7 +181190,7 @@ } }, { - "id": 26336, + "id": 26383, "properties": { "facing": "north", "half": "top", @@ -180963,7 +181199,7 @@ } }, { - "id": 26337, + "id": 26384, "properties": { "facing": "north", "half": "top", @@ -180972,7 +181208,7 @@ } }, { - "id": 26338, + "id": 26385, "properties": { "facing": "north", "half": "top", @@ -180981,7 +181217,7 @@ } }, { - "id": 26339, + "id": 26386, "properties": { "facing": "north", "half": "top", @@ -180990,7 +181226,7 @@ } }, { - "id": 26340, + "id": 26387, "properties": { "facing": "north", "half": "top", @@ -180999,7 +181235,7 @@ } }, { - "id": 26341, + "id": 26388, "properties": { "facing": "north", "half": "top", @@ -181008,7 +181244,7 @@ } }, { - "id": 26342, + "id": 26389, "properties": { "facing": "north", "half": "bottom", @@ -181018,439 +181254,439 @@ }, { "default": true, - "id": 26343, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 26344, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 26345, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 26346, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 26347, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 26348, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 26349, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 26350, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 26351, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 26352, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 26353, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 26354, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 26355, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 26356, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 26357, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 26358, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 26359, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 26360, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 26361, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 26362, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 26363, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 26364, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 26365, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 26366, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 26367, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 26368, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 26369, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 26370, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 26371, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 26372, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 26373, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 26374, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 26375, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 26376, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 26377, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 26378, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 26379, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 26380, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 26381, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 26382, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 26383, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 26384, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 26385, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 26386, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 26387, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 26388, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 26389, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { "id": 26390, "properties": { - "facing": "west", + "facing": "north", "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "shape": "straight", + "waterlogged": "false" } }, { "id": 26391, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26392, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26393, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26394, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26395, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26396, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26397, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26398, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26399, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26400, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26401, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26402, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26403, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26404, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26405, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26406, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26407, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26408, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26409, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26410, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26411, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26412, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26413, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26414, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26415, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26416, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26417, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26418, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26419, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26420, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26421, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26422, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26423, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26424, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26425, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26426, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26427, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26428, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26429, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26430, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26431, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26432, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26433, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26434, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26435, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26436, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26437, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26438, "properties": { "facing": "west", "half": "bottom", @@ -181459,7 +181695,7 @@ } }, { - "id": 26392, + "id": 26439, "properties": { "facing": "east", "half": "top", @@ -181468,7 +181704,7 @@ } }, { - "id": 26393, + "id": 26440, "properties": { "facing": "east", "half": "top", @@ -181477,7 +181713,7 @@ } }, { - "id": 26394, + "id": 26441, "properties": { "facing": "east", "half": "top", @@ -181486,7 +181722,7 @@ } }, { - "id": 26395, + "id": 26442, "properties": { "facing": "east", "half": "top", @@ -181495,7 +181731,7 @@ } }, { - "id": 26396, + "id": 26443, "properties": { "facing": "east", "half": "top", @@ -181504,7 +181740,7 @@ } }, { - "id": 26397, + "id": 26444, "properties": { "facing": "east", "half": "top", @@ -181513,7 +181749,7 @@ } }, { - "id": 26398, + "id": 26445, "properties": { "facing": "east", "half": "top", @@ -181522,7 +181758,7 @@ } }, { - "id": 26399, + "id": 26446, "properties": { "facing": "east", "half": "top", @@ -181531,7 +181767,7 @@ } }, { - "id": 26400, + "id": 26447, "properties": { "facing": "east", "half": "top", @@ -181540,7 +181776,7 @@ } }, { - "id": 26401, + "id": 26448, "properties": { "facing": "east", "half": "top", @@ -181549,7 +181785,7 @@ } }, { - "id": 26402, + "id": 26449, "properties": { "facing": "east", "half": "bottom", @@ -181558,7 +181794,7 @@ } }, { - "id": 26403, + "id": 26450, "properties": { "facing": "east", "half": "bottom", @@ -181567,7 +181803,7 @@ } }, { - "id": 26404, + "id": 26451, "properties": { "facing": "east", "half": "bottom", @@ -181576,7 +181812,7 @@ } }, { - "id": 26405, + "id": 26452, "properties": { "facing": "east", "half": "bottom", @@ -181585,7 +181821,7 @@ } }, { - "id": 26406, + "id": 26453, "properties": { "facing": "east", "half": "bottom", @@ -181594,7 +181830,7 @@ } }, { - "id": 26407, + "id": 26454, "properties": { "facing": "east", "half": "bottom", @@ -181603,7 +181839,7 @@ } }, { - "id": 26408, + "id": 26455, "properties": { "facing": "east", "half": "bottom", @@ -181612,7 +181848,7 @@ } }, { - "id": 26409, + "id": 26456, "properties": { "facing": "east", "half": "bottom", @@ -181621,7 +181857,7 @@ } }, { - "id": 26410, + "id": 26457, "properties": { "facing": "east", "half": "bottom", @@ -181630,7 +181866,7 @@ } }, { - "id": 26411, + "id": 26458, "properties": { "facing": "east", "half": "bottom", @@ -181677,7 +181913,7 @@ }, "states": [ { - "id": 26418, + "id": 26465, "properties": { "east": "none", "north": "none", @@ -181688,7 +181924,7 @@ } }, { - "id": 26419, + "id": 26466, "properties": { "east": "none", "north": "none", @@ -181699,7 +181935,7 @@ } }, { - "id": 26420, + "id": 26467, "properties": { "east": "none", "north": "none", @@ -181711,1140 +181947,1140 @@ }, { "default": true, - "id": 26421, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26422, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26423, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26424, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26425, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26426, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26427, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26428, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26429, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26430, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26431, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26432, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26433, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26434, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26435, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26436, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26437, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26438, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26439, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26440, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26441, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26442, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26443, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26444, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26445, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26446, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26447, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26448, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26449, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26450, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26451, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26452, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26453, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26454, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26455, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26456, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26457, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26458, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26459, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26460, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26461, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26462, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26463, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26464, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26465, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26466, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26467, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { "id": 26468, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26469, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26470, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26471, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26472, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26473, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26474, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26475, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26476, "properties": { "east": "none", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26477, "properties": { "east": "none", - "north": "low", + "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26478, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26479, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26480, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26481, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26482, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26483, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26484, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26485, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26486, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26487, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26488, "properties": { "east": "none", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26489, "properties": { "east": "none", - "north": "low", + "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26490, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26491, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26492, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26493, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26494, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26495, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26496, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26497, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26498, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26499, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26500, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26501, "properties": { "east": "none", - "north": "tall", + "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26502, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26503, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26504, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26505, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26506, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26507, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26508, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26509, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26510, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26511, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26512, "properties": { "east": "none", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26513, "properties": { "east": "none", - "north": "tall", + "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26514, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26515, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26516, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26517, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26518, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26519, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26520, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26521, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26522, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26523, "properties": { "east": "none", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26524, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26525, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26526, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26527, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26528, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26529, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26530, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26531, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26532, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26533, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26534, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26535, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26536, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26537, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26538, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26539, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26540, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26541, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26542, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26543, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26544, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26545, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26546, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26547, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26548, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26549, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26550, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26551, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26552, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26553, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26554, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26555, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26556, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26557, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26558, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26559, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26560, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26561, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26562, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26563, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26564, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26565, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26566, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26567, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26568, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26569, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26570, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26571, "properties": { "east": "none", "north": "tall", @@ -182855,7 +183091,7 @@ } }, { - "id": 26525, + "id": 26572, "properties": { "east": "none", "north": "tall", @@ -182865,1174 +183101,1174 @@ "west": "tall" } }, - { - "id": 26526, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26527, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26528, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26529, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26530, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26531, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26532, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26533, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26534, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26535, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26536, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26537, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26538, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26539, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26540, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26541, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26542, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26543, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26544, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26545, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26546, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26547, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26548, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26549, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26550, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26551, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26552, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26553, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26554, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26555, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26556, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26557, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26558, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26559, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26560, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26561, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26562, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26563, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26564, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26565, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26566, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26567, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26568, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26569, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26570, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26571, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26572, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, { "id": 26573, "properties": { "east": "low", - "north": "low", + "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26574, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26575, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26576, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26577, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26578, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26579, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26580, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26581, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26582, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26583, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26584, "properties": { "east": "low", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26585, "properties": { "east": "low", - "north": "low", + "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26586, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26587, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26588, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26589, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26590, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26591, "properties": { "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26592, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26593, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26594, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26595, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26596, "properties": { "east": "low", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26597, "properties": { "east": "low", - "north": "low", + "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26598, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26599, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26600, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26601, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26602, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26603, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26604, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26605, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26606, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26607, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26608, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26609, "properties": { "east": "low", - "north": "tall", + "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26610, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26611, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26612, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26613, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26614, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26615, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26616, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26617, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26618, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26619, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26620, "properties": { "east": "low", - "north": "tall", - "south": "low", + "north": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26621, "properties": { "east": "low", - "north": "tall", + "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26622, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26623, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26624, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26625, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26626, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26627, "properties": { "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26628, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26629, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26630, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26631, "properties": { "east": "low", - "north": "tall", - "south": "tall", + "north": "low", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26632, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26633, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26634, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26635, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26636, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26637, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26638, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26639, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26640, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26641, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26642, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26643, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26644, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26645, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26646, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26647, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26648, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26649, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26650, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26651, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26652, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26653, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26654, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26655, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26656, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26657, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26658, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26659, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26660, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26661, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26662, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26663, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26664, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26665, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26666, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26667, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26668, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26669, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26670, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26671, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26672, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26673, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26674, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26675, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26676, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26677, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26678, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26679, "properties": { "east": "low", "north": "tall", @@ -184043,7 +184279,7 @@ } }, { - "id": 26633, + "id": 26680, "properties": { "east": "low", "north": "tall", @@ -184053,789 +184289,789 @@ "west": "tall" } }, - { - "id": 26634, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26635, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26636, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26637, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26638, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26639, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26640, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26641, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26642, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26643, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26644, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26645, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26646, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26647, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26648, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26649, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26650, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26651, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26652, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26653, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26654, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26655, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26656, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26657, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26658, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26659, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26660, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26661, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26662, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26663, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26664, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26665, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26666, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26667, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26668, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26669, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26670, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26671, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26672, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26673, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26674, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 26675, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 26676, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 26677, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 26678, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 26679, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 26680, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, { "id": 26681, "properties": { "east": "tall", - "north": "low", + "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26682, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26683, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26684, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26685, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26686, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26687, "properties": { "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26688, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26689, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26690, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26691, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26692, "properties": { "east": "tall", - "north": "low", - "south": "low", + "north": "none", + "south": "none", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26693, "properties": { "east": "tall", - "north": "low", + "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { "id": 26694, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26695, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26696, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26697, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26698, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "true", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26699, "properties": { "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 26700, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "low" } }, { "id": 26701, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "true", - "west": "low" + "west": "tall" } }, { "id": 26702, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "none" } }, { "id": 26703, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "low" } }, { "id": 26704, "properties": { "east": "tall", - "north": "low", - "south": "tall", + "north": "none", + "south": "low", "up": "false", "waterlogged": "false", - "west": "low" + "west": "tall" } }, { "id": 26705, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26706, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26707, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26708, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26709, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26710, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26711, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26712, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26713, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26714, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26715, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26716, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26717, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26718, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26719, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26720, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26721, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26722, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26723, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26724, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26725, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26726, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26727, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26728, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26729, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26730, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26731, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26732, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26733, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26734, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26735, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26736, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26737, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26738, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26739, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26740, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26741, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26742, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26743, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26744, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26745, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26746, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26747, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26748, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26749, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26750, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26751, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26752, "properties": { "east": "tall", "north": "low", @@ -184846,7 +185082,7 @@ } }, { - "id": 26706, + "id": 26753, "properties": { "east": "tall", "north": "tall", @@ -184857,7 +185093,7 @@ } }, { - "id": 26707, + "id": 26754, "properties": { "east": "tall", "north": "tall", @@ -184868,7 +185104,7 @@ } }, { - "id": 26708, + "id": 26755, "properties": { "east": "tall", "north": "tall", @@ -184879,7 +185115,7 @@ } }, { - "id": 26709, + "id": 26756, "properties": { "east": "tall", "north": "tall", @@ -184890,7 +185126,7 @@ } }, { - "id": 26710, + "id": 26757, "properties": { "east": "tall", "north": "tall", @@ -184901,7 +185137,7 @@ } }, { - "id": 26711, + "id": 26758, "properties": { "east": "tall", "north": "tall", @@ -184912,7 +185148,7 @@ } }, { - "id": 26712, + "id": 26759, "properties": { "east": "tall", "north": "tall", @@ -184923,7 +185159,7 @@ } }, { - "id": 26713, + "id": 26760, "properties": { "east": "tall", "north": "tall", @@ -184934,7 +185170,7 @@ } }, { - "id": 26714, + "id": 26761, "properties": { "east": "tall", "north": "tall", @@ -184945,7 +185181,7 @@ } }, { - "id": 26715, + "id": 26762, "properties": { "east": "tall", "north": "tall", @@ -184956,7 +185192,7 @@ } }, { - "id": 26716, + "id": 26763, "properties": { "east": "tall", "north": "tall", @@ -184967,7 +185203,7 @@ } }, { - "id": 26717, + "id": 26764, "properties": { "east": "tall", "north": "tall", @@ -184978,7 +185214,7 @@ } }, { - "id": 26718, + "id": 26765, "properties": { "east": "tall", "north": "tall", @@ -184989,7 +185225,7 @@ } }, { - "id": 26719, + "id": 26766, "properties": { "east": "tall", "north": "tall", @@ -185000,7 +185236,7 @@ } }, { - "id": 26720, + "id": 26767, "properties": { "east": "tall", "north": "tall", @@ -185011,7 +185247,7 @@ } }, { - "id": 26721, + "id": 26768, "properties": { "east": "tall", "north": "tall", @@ -185022,7 +185258,7 @@ } }, { - "id": 26722, + "id": 26769, "properties": { "east": "tall", "north": "tall", @@ -185033,7 +185269,7 @@ } }, { - "id": 26723, + "id": 26770, "properties": { "east": "tall", "north": "tall", @@ -185044,7 +185280,7 @@ } }, { - "id": 26724, + "id": 26771, "properties": { "east": "tall", "north": "tall", @@ -185055,7 +185291,7 @@ } }, { - "id": 26725, + "id": 26772, "properties": { "east": "tall", "north": "tall", @@ -185066,7 +185302,7 @@ } }, { - "id": 26726, + "id": 26773, "properties": { "east": "tall", "north": "tall", @@ -185077,7 +185313,7 @@ } }, { - "id": 26727, + "id": 26774, "properties": { "east": "tall", "north": "tall", @@ -185088,7 +185324,7 @@ } }, { - "id": 26728, + "id": 26775, "properties": { "east": "tall", "north": "tall", @@ -185099,7 +185335,7 @@ } }, { - "id": 26729, + "id": 26776, "properties": { "east": "tall", "north": "tall", @@ -185110,7 +185346,7 @@ } }, { - "id": 26730, + "id": 26777, "properties": { "east": "tall", "north": "tall", @@ -185121,7 +185357,7 @@ } }, { - "id": 26731, + "id": 26778, "properties": { "east": "tall", "north": "tall", @@ -185132,7 +185368,7 @@ } }, { - "id": 26732, + "id": 26779, "properties": { "east": "tall", "north": "tall", @@ -185143,7 +185379,7 @@ } }, { - "id": 26733, + "id": 26780, "properties": { "east": "tall", "north": "tall", @@ -185154,7 +185390,7 @@ } }, { - "id": 26734, + "id": 26781, "properties": { "east": "tall", "north": "tall", @@ -185165,7 +185401,7 @@ } }, { - "id": 26735, + "id": 26782, "properties": { "east": "tall", "north": "tall", @@ -185176,7 +185412,7 @@ } }, { - "id": 26736, + "id": 26783, "properties": { "east": "tall", "north": "tall", @@ -185187,7 +185423,7 @@ } }, { - "id": 26737, + "id": 26784, "properties": { "east": "tall", "north": "tall", @@ -185198,7 +185434,7 @@ } }, { - "id": 26738, + "id": 26785, "properties": { "east": "tall", "north": "tall", @@ -185209,7 +185445,7 @@ } }, { - "id": 26739, + "id": 26786, "properties": { "east": "tall", "north": "tall", @@ -185220,7 +185456,7 @@ } }, { - "id": 26740, + "id": 26787, "properties": { "east": "tall", "north": "tall", @@ -185231,7 +185467,7 @@ } }, { - "id": 26741, + "id": 26788, "properties": { "east": "tall", "north": "tall", @@ -185273,21 +185509,21 @@ }, "states": [ { - "id": 15113, + "id": 15123, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 15114, + "id": 15124, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 15115, + "id": 15125, "properties": { "type": "bottom", "waterlogged": "true" @@ -185295,21 +185531,21 @@ }, { "default": true, - "id": 15116, + "id": 15126, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 15117, + "id": 15127, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 15118, + "id": 15128, "properties": { "type": "double", "waterlogged": "false" @@ -185349,98 +185585,98 @@ ] }, "states": [ - { - "id": 14215, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 14216, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14217, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14218, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14219, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14220, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14221, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14222, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14223, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14224, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 14225, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14226, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14227, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14228, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14229, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14230, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14231, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14232, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14233, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14234, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14235, "properties": { "facing": "north", "half": "bottom", @@ -185450,100 +185686,10 @@ }, { "default": true, - "id": 14226, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14227, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14228, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14229, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14230, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14231, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14232, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14233, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14234, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 14235, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 14236, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -185551,8 +185697,8 @@ { "id": 14237, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -185560,8 +185706,8 @@ { "id": 14238, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -185569,8 +185715,8 @@ { "id": 14239, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -185578,8 +185724,8 @@ { "id": 14240, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -185587,8 +185733,8 @@ { "id": 14241, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -185596,8 +185742,8 @@ { "id": 14242, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -185605,8 +185751,8 @@ { "id": 14243, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -185614,8 +185760,8 @@ { "id": 14244, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -185624,7 +185770,7 @@ "id": 14245, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -185633,7 +185779,7 @@ "id": 14246, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -185642,7 +185788,7 @@ "id": 14247, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -185651,7 +185797,7 @@ "id": 14248, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -185660,7 +185806,7 @@ "id": 14249, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -185669,7 +185815,7 @@ "id": 14250, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -185678,7 +185824,7 @@ "id": 14251, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -185687,7 +185833,7 @@ "id": 14252, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -185696,7 +185842,7 @@ "id": 14253, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -185705,7 +185851,7 @@ "id": 14254, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -185713,8 +185859,8 @@ { "id": 14255, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -185722,8 +185868,8 @@ { "id": 14256, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -185731,8 +185877,8 @@ { "id": 14257, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -185740,8 +185886,8 @@ { "id": 14258, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -185749,8 +185895,8 @@ { "id": 14259, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -185758,8 +185904,8 @@ { "id": 14260, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -185767,8 +185913,8 @@ { "id": 14261, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -185776,8 +185922,8 @@ { "id": 14262, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -185785,8 +185931,8 @@ { "id": 14263, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -185794,8 +185940,8 @@ { "id": 14264, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -185804,7 +185950,7 @@ "id": 14265, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -185813,7 +185959,7 @@ "id": 14266, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -185822,7 +185968,7 @@ "id": 14267, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -185831,7 +185977,7 @@ "id": 14268, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -185840,7 +185986,7 @@ "id": 14269, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -185849,7 +185995,7 @@ "id": 14270, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -185858,7 +186004,7 @@ "id": 14271, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -185867,7 +186013,7 @@ "id": 14272, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -185876,7 +186022,7 @@ "id": 14273, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -185885,7 +186031,7 @@ "id": 14274, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -185893,8 +186039,8 @@ { "id": 14275, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -185902,8 +186048,8 @@ { "id": 14276, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -185911,8 +186057,8 @@ { "id": 14277, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -185920,8 +186066,8 @@ { "id": 14278, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -185929,8 +186075,8 @@ { "id": 14279, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -185938,8 +186084,8 @@ { "id": 14280, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -185947,8 +186093,8 @@ { "id": 14281, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -185956,8 +186102,8 @@ { "id": 14282, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -185965,8 +186111,8 @@ { "id": 14283, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -185974,8 +186120,8 @@ { "id": 14284, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -185984,7 +186130,7 @@ "id": 14285, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -185993,7 +186139,7 @@ "id": 14286, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -186002,7 +186148,7 @@ "id": 14287, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -186011,7 +186157,7 @@ "id": 14288, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -186020,7 +186166,7 @@ "id": 14289, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -186029,7 +186175,7 @@ "id": 14290, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -186038,7 +186184,7 @@ "id": 14291, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -186047,7 +186193,7 @@ "id": 14292, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -186056,13 +186202,103 @@ "id": 14293, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 14294, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14295, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14296, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14297, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14298, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14299, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14300, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14301, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14302, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14303, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14304, "properties": { "facing": "east", "half": "bottom", @@ -186102,21 +186338,21 @@ }, "states": [ { - "id": 15095, + "id": 15105, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 15096, + "id": 15106, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 15097, + "id": 15107, "properties": { "type": "bottom", "waterlogged": "true" @@ -186124,21 +186360,21 @@ }, { "default": true, - "id": 15098, + "id": 15108, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 15099, + "id": 15109, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 15100, + "id": 15110, "properties": { "type": "double", "waterlogged": "false" @@ -186178,98 +186414,98 @@ ] }, "states": [ - { - "id": 13975, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13976, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13977, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13978, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13979, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13980, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13981, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13982, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13983, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13984, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 13985, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13986, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13987, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13988, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13989, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13990, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13991, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13992, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13993, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13994, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13995, "properties": { "facing": "north", "half": "bottom", @@ -186279,100 +186515,10 @@ }, { "default": true, - "id": 13986, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13987, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13988, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13989, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13990, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13991, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13992, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13993, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13994, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13995, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 13996, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -186380,8 +186526,8 @@ { "id": 13997, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -186389,8 +186535,8 @@ { "id": 13998, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -186398,8 +186544,8 @@ { "id": 13999, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -186407,8 +186553,8 @@ { "id": 14000, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -186416,8 +186562,8 @@ { "id": 14001, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -186425,8 +186571,8 @@ { "id": 14002, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -186434,8 +186580,8 @@ { "id": 14003, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -186443,8 +186589,8 @@ { "id": 14004, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -186453,7 +186599,7 @@ "id": 14005, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -186462,7 +186608,7 @@ "id": 14006, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -186471,7 +186617,7 @@ "id": 14007, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -186480,7 +186626,7 @@ "id": 14008, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -186489,7 +186635,7 @@ "id": 14009, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -186498,7 +186644,7 @@ "id": 14010, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -186507,7 +186653,7 @@ "id": 14011, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -186516,7 +186662,7 @@ "id": 14012, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -186525,7 +186671,7 @@ "id": 14013, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -186534,7 +186680,7 @@ "id": 14014, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -186542,8 +186688,8 @@ { "id": 14015, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -186551,8 +186697,8 @@ { "id": 14016, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -186560,8 +186706,8 @@ { "id": 14017, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -186569,8 +186715,8 @@ { "id": 14018, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -186578,8 +186724,8 @@ { "id": 14019, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -186587,8 +186733,8 @@ { "id": 14020, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -186596,8 +186742,8 @@ { "id": 14021, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -186605,8 +186751,8 @@ { "id": 14022, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -186614,8 +186760,8 @@ { "id": 14023, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -186623,8 +186769,8 @@ { "id": 14024, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -186633,7 +186779,7 @@ "id": 14025, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -186642,7 +186788,7 @@ "id": 14026, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -186651,7 +186797,7 @@ "id": 14027, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -186660,7 +186806,7 @@ "id": 14028, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -186669,7 +186815,7 @@ "id": 14029, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -186678,7 +186824,7 @@ "id": 14030, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -186687,7 +186833,7 @@ "id": 14031, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -186696,7 +186842,7 @@ "id": 14032, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -186705,7 +186851,7 @@ "id": 14033, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -186714,7 +186860,7 @@ "id": 14034, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -186722,8 +186868,8 @@ { "id": 14035, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -186731,8 +186877,8 @@ { "id": 14036, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -186740,8 +186886,8 @@ { "id": 14037, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -186749,8 +186895,8 @@ { "id": 14038, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -186758,8 +186904,8 @@ { "id": 14039, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -186767,8 +186913,8 @@ { "id": 14040, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -186776,8 +186922,8 @@ { "id": 14041, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -186785,8 +186931,8 @@ { "id": 14042, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -186794,8 +186940,8 @@ { "id": 14043, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -186803,8 +186949,8 @@ { "id": 14044, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -186813,7 +186959,7 @@ "id": 14045, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -186822,7 +186968,7 @@ "id": 14046, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -186831,7 +186977,7 @@ "id": 14047, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -186840,7 +186986,7 @@ "id": 14048, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -186849,7 +186995,7 @@ "id": 14049, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -186858,7 +187004,7 @@ "id": 14050, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -186867,7 +187013,7 @@ "id": 14051, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -186876,7 +187022,7 @@ "id": 14052, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -186885,13 +187031,103 @@ "id": 14053, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 14054, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14055, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14056, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14057, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14058, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14059, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14060, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14061, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14062, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14063, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14064, "properties": { "facing": "east", "half": "bottom", @@ -186909,7 +187145,7 @@ "states": [ { "default": true, - "id": 22505 + "id": 22520 } ] }, @@ -186931,21 +187167,21 @@ }, "states": [ { - "id": 22506, + "id": 22521, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22507, + "id": 22522, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22508, + "id": 22523, "properties": { "type": "bottom", "waterlogged": "true" @@ -186953,21 +187189,21 @@ }, { "default": true, - "id": 22509, + "id": 22524, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22510, + "id": 22525, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22511, + "id": 22526, "properties": { "type": "double", "waterlogged": "false" @@ -187008,7 +187244,7 @@ }, "states": [ { - "id": 22512, + "id": 22527, "properties": { "facing": "north", "half": "top", @@ -187017,7 +187253,7 @@ } }, { - "id": 22513, + "id": 22528, "properties": { "facing": "north", "half": "top", @@ -187026,7 +187262,7 @@ } }, { - "id": 22514, + "id": 22529, "properties": { "facing": "north", "half": "top", @@ -187035,7 +187271,7 @@ } }, { - "id": 22515, + "id": 22530, "properties": { "facing": "north", "half": "top", @@ -187044,7 +187280,7 @@ } }, { - "id": 22516, + "id": 22531, "properties": { "facing": "north", "half": "top", @@ -187053,7 +187289,7 @@ } }, { - "id": 22517, + "id": 22532, "properties": { "facing": "north", "half": "top", @@ -187062,7 +187298,7 @@ } }, { - "id": 22518, + "id": 22533, "properties": { "facing": "north", "half": "top", @@ -187071,7 +187307,7 @@ } }, { - "id": 22519, + "id": 22534, "properties": { "facing": "north", "half": "top", @@ -187080,7 +187316,7 @@ } }, { - "id": 22520, + "id": 22535, "properties": { "facing": "north", "half": "top", @@ -187089,7 +187325,7 @@ } }, { - "id": 22521, + "id": 22536, "properties": { "facing": "north", "half": "top", @@ -187098,7 +187334,7 @@ } }, { - "id": 22522, + "id": 22537, "properties": { "facing": "north", "half": "bottom", @@ -187108,250 +187344,250 @@ }, { "default": true, - "id": 22523, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22524, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22525, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22526, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22527, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22528, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22529, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22530, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22531, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22532, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22533, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22534, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22535, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22536, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22537, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { "id": 22538, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { "id": 22539, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 22540, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { "id": 22541, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 22542, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "shape": "inner_right", + "waterlogged": "false" } }, { "id": 22543, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 22544, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "shape": "outer_left", + "waterlogged": "false" } }, { "id": 22545, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "shape": "outer_right", + "waterlogged": "true" } }, { "id": 22546, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "shape": "outer_right", + "waterlogged": "false" } }, { "id": 22547, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 22548, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 22549, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 22550, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22551, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22552, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22553, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22554, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22555, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22556, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22557, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22558, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22559, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22560, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22561, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22562, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22563, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22564, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22565, "properties": { "facing": "south", "half": "bottom", @@ -187360,7 +187596,7 @@ } }, { - "id": 22551, + "id": 22566, "properties": { "facing": "south", "half": "bottom", @@ -187368,170 +187604,170 @@ "waterlogged": "false" } }, - { - "id": 22552, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22553, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22554, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22555, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22556, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22557, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22558, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22559, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22560, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22561, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22562, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22563, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22564, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22565, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22566, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 22567, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 22568, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 22569, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 22570, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22571, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22572, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22573, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22574, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22575, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22576, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22577, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22578, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22579, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22580, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22581, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22582, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22583, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22584, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22585, "properties": { "facing": "west", "half": "bottom", @@ -187540,7 +187776,7 @@ } }, { - "id": 22571, + "id": 22586, "properties": { "facing": "west", "half": "bottom", @@ -187548,152 +187784,152 @@ "waterlogged": "false" } }, - { - "id": 22572, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22573, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22574, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22575, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22576, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22577, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22578, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22579, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22580, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22581, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22582, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22583, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22584, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22585, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22586, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 22587, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 22588, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22589, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22590, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22591, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22592, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22593, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22594, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22595, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22596, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22597, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22598, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22599, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22600, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22601, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22602, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22603, "properties": { "facing": "east", "half": "bottom", @@ -187702,7 +187938,7 @@ } }, { - "id": 22589, + "id": 22604, "properties": { "facing": "east", "half": "bottom", @@ -187711,7 +187947,7 @@ } }, { - "id": 22590, + "id": 22605, "properties": { "facing": "east", "half": "bottom", @@ -187720,7 +187956,7 @@ } }, { - "id": 22591, + "id": 22606, "properties": { "facing": "east", "half": "bottom", @@ -187767,7 +188003,7 @@ }, "states": [ { - "id": 22592, + "id": 22607, "properties": { "east": "none", "north": "none", @@ -187778,7 +188014,7 @@ } }, { - "id": 22593, + "id": 22608, "properties": { "east": "none", "north": "none", @@ -187789,7 +188025,7 @@ } }, { - "id": 22594, + "id": 22609, "properties": { "east": "none", "north": "none", @@ -187801,178 +188037,13 @@ }, { "default": true, - "id": 22595, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22596, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22597, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22598, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22599, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22600, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22601, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22602, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22603, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22604, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22605, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22606, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22607, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22608, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22609, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { "id": 22610, "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -187981,9 +188052,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -187992,9 +188063,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -188003,9 +188074,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -188014,9 +188085,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -188025,9 +188096,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -188036,9 +188107,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -188047,9 +188118,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -188058,9 +188129,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -188069,9 +188140,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -188080,9 +188151,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -188091,9 +188162,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -188102,9 +188173,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -188113,9 +188184,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -188124,9 +188195,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -188135,9 +188206,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -188146,9 +188217,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -188157,9 +188228,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -188167,10 +188238,10 @@ "id": 22628, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -188178,10 +188249,10 @@ "id": 22629, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -188189,10 +188260,10 @@ "id": 22630, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -188200,10 +188271,10 @@ "id": 22631, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -188211,10 +188282,10 @@ "id": 22632, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -188222,10 +188293,10 @@ "id": 22633, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -188233,10 +188304,10 @@ "id": 22634, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -188244,10 +188315,10 @@ "id": 22635, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -188255,10 +188326,10 @@ "id": 22636, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -188266,10 +188337,10 @@ "id": 22637, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -188277,10 +188348,10 @@ "id": 22638, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -188288,10 +188359,10 @@ "id": 22639, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -188299,10 +188370,10 @@ "id": 22640, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -188310,10 +188381,10 @@ "id": 22641, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -188321,10 +188392,10 @@ "id": 22642, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -188333,9 +188404,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -188344,9 +188415,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -188355,9 +188426,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -188366,9 +188437,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -188377,9 +188448,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -188388,9 +188459,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -188399,9 +188470,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -188410,9 +188481,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -188421,9 +188492,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -188432,9 +188503,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -188443,9 +188514,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -188454,9 +188525,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -188465,9 +188536,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -188476,9 +188547,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -188487,9 +188558,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -188498,9 +188569,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -188509,9 +188580,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -188520,9 +188591,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -188531,9 +188602,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -188542,9 +188613,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -188553,9 +188624,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -188563,10 +188634,10 @@ "id": 22664, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -188574,10 +188645,10 @@ "id": 22665, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -188585,10 +188656,10 @@ "id": 22666, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -188596,10 +188667,10 @@ "id": 22667, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -188607,10 +188678,10 @@ "id": 22668, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -188618,10 +188689,10 @@ "id": 22669, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -188629,10 +188700,10 @@ "id": 22670, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -188640,10 +188711,10 @@ "id": 22671, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -188651,10 +188722,10 @@ "id": 22672, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -188662,10 +188733,10 @@ "id": 22673, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -188673,10 +188744,10 @@ "id": 22674, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -188684,10 +188755,10 @@ "id": 22675, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -188695,10 +188766,10 @@ "id": 22676, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -188706,10 +188777,10 @@ "id": 22677, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -188717,10 +188788,10 @@ "id": 22678, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -188729,9 +188800,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -188740,9 +188811,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -188751,9 +188822,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -188762,9 +188833,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -188773,9 +188844,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -188784,9 +188855,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -188795,9 +188866,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -188806,9 +188877,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -188817,9 +188888,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -188828,9 +188899,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -188839,9 +188910,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -188850,9 +188921,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -188861,9 +188932,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -188872,9 +188943,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -188883,9 +188954,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -188894,9 +188965,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -188905,9 +188976,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -188916,9 +188987,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -188927,14 +188998,179 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 22698, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22699, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22700, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22701, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22702, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22703, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22704, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22705, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22706, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22707, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22708, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22709, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22710, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22711, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22712, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22713, "properties": { "east": "none", "north": "tall", @@ -188945,7 +189181,7 @@ } }, { - "id": 22699, + "id": 22714, "properties": { "east": "none", "north": "tall", @@ -188955,179 +189191,14 @@ "west": "tall" } }, - { - "id": 22700, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22701, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22702, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22703, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22704, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22705, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22706, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22707, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22708, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22709, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22710, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22711, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22712, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22713, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22714, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 22715, "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -189136,9 +189207,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -189147,9 +189218,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -189158,9 +189229,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -189169,9 +189240,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -189180,9 +189251,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -189191,9 +189262,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -189202,9 +189273,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -189213,9 +189284,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -189224,9 +189295,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -189235,9 +189306,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -189246,9 +189317,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -189257,9 +189328,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -189268,9 +189339,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -189279,9 +189350,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -189290,9 +189361,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -189301,9 +189372,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -189312,9 +189383,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -189323,9 +189394,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -189334,9 +189405,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -189345,9 +189416,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -189355,10 +189426,10 @@ "id": 22736, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -189366,10 +189437,10 @@ "id": 22737, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -189377,10 +189448,10 @@ "id": 22738, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -189388,10 +189459,10 @@ "id": 22739, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -189399,10 +189470,10 @@ "id": 22740, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -189410,10 +189481,10 @@ "id": 22741, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -189421,10 +189492,10 @@ "id": 22742, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -189432,10 +189503,10 @@ "id": 22743, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -189443,10 +189514,10 @@ "id": 22744, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -189454,10 +189525,10 @@ "id": 22745, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -189465,10 +189536,10 @@ "id": 22746, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -189476,10 +189547,10 @@ "id": 22747, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -189487,10 +189558,10 @@ "id": 22748, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -189498,10 +189569,10 @@ "id": 22749, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -189509,10 +189580,10 @@ "id": 22750, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -189521,9 +189592,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -189532,9 +189603,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -189543,9 +189614,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -189554,9 +189625,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -189565,9 +189636,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -189576,9 +189647,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -189587,9 +189658,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -189598,9 +189669,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -189609,9 +189680,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -189620,9 +189691,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -189631,9 +189702,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -189642,9 +189713,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -189653,9 +189724,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -189664,9 +189735,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -189675,9 +189746,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -189686,9 +189757,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -189697,9 +189768,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -189708,9 +189779,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -189719,9 +189790,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -189730,9 +189801,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -189741,9 +189812,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -189751,10 +189822,10 @@ "id": 22772, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -189762,10 +189833,10 @@ "id": 22773, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -189773,10 +189844,10 @@ "id": 22774, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -189784,10 +189855,10 @@ "id": 22775, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -189795,10 +189866,10 @@ "id": 22776, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -189806,10 +189877,10 @@ "id": 22777, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -189817,10 +189888,10 @@ "id": 22778, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -189828,10 +189899,10 @@ "id": 22779, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -189839,10 +189910,10 @@ "id": 22780, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -189850,10 +189921,10 @@ "id": 22781, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -189861,10 +189932,10 @@ "id": 22782, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -189872,10 +189943,10 @@ "id": 22783, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -189883,10 +189954,10 @@ "id": 22784, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -189894,10 +189965,10 @@ "id": 22785, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -189905,10 +189976,10 @@ "id": 22786, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -189917,9 +189988,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -189928,9 +189999,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -189939,9 +190010,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -189950,9 +190021,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -189961,9 +190032,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -189972,9 +190043,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -189983,9 +190054,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -189994,9 +190065,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -190005,9 +190076,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -190016,9 +190087,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -190027,9 +190098,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -190038,9 +190109,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -190049,9 +190120,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -190060,9 +190131,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -190071,9 +190142,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -190082,9 +190153,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -190093,9 +190164,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -190104,9 +190175,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -190115,14 +190186,179 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 22806, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22807, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22808, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22809, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22810, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22811, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22812, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22813, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22814, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22815, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22816, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22817, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22818, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22819, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22820, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22821, "properties": { "east": "low", "north": "tall", @@ -190133,7 +190369,7 @@ } }, { - "id": 22807, + "id": 22822, "properties": { "east": "low", "north": "tall", @@ -190143,179 +190379,14 @@ "west": "tall" } }, - { - "id": 22808, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22809, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22810, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22811, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22812, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22813, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22814, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22815, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22816, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22817, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22818, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22819, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22820, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22821, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22822, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 22823, "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -190324,9 +190395,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -190335,9 +190406,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -190346,9 +190417,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -190357,9 +190428,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -190368,9 +190439,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -190379,9 +190450,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -190390,9 +190461,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -190401,9 +190472,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -190412,9 +190483,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -190423,9 +190494,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -190434,9 +190505,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -190445,9 +190516,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -190456,9 +190527,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -190467,9 +190538,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -190478,9 +190549,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -190489,9 +190560,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -190500,9 +190571,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -190511,14 +190582,179 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 22842, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22843, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22844, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22845, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22846, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22847, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22848, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22849, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22850, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22851, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22852, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22853, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22854, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22855, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22856, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22857, "properties": { "east": "tall", "north": "none", @@ -190529,7 +190765,7 @@ } }, { - "id": 22843, + "id": 22858, "properties": { "east": "tall", "north": "none", @@ -190539,179 +190775,14 @@ "west": "tall" } }, - { - "id": 22844, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22845, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22846, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22847, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22848, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22849, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22850, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22851, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22852, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22853, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22854, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22855, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22856, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22857, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22858, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 22859, "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -190720,9 +190791,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -190731,9 +190802,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -190742,9 +190813,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -190753,9 +190824,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -190764,9 +190835,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -190775,9 +190846,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -190786,9 +190857,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -190797,9 +190868,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -190808,9 +190879,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -190819,9 +190890,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -190830,9 +190901,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -190841,9 +190912,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -190852,9 +190923,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -190863,9 +190934,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -190874,9 +190945,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -190885,9 +190956,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -190896,9 +190967,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -190907,14 +190978,179 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 22878, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22879, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22880, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22881, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22882, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22883, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22884, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22885, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22886, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22887, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22888, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22889, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22890, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22891, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22892, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22893, "properties": { "east": "tall", "north": "low", @@ -190925,7 +191161,7 @@ } }, { - "id": 22879, + "id": 22894, "properties": { "east": "tall", "north": "low", @@ -190935,179 +191171,14 @@ "west": "tall" } }, - { - "id": 22880, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22881, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22882, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22883, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22884, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22885, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22886, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22887, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22888, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22889, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22890, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22891, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22892, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22893, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22894, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 22895, "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -191116,9 +191187,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -191127,9 +191198,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -191138,9 +191209,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -191149,9 +191220,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -191160,9 +191231,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -191171,9 +191242,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -191182,9 +191253,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -191193,9 +191264,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -191204,9 +191275,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -191215,9 +191286,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -191226,9 +191297,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -191237,9 +191308,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -191248,9 +191319,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -191259,14 +191330,179 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, { "id": 22910, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22911, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22912, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22913, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22914, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22915, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22916, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22917, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22918, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22919, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22920, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22921, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22922, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22923, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22924, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22925, "properties": { "east": "tall", "north": "tall", @@ -191277,7 +191513,7 @@ } }, { - "id": 22911, + "id": 22926, "properties": { "east": "tall", "north": "tall", @@ -191288,7 +191524,7 @@ } }, { - "id": 22912, + "id": 22927, "properties": { "east": "tall", "north": "tall", @@ -191299,7 +191535,7 @@ } }, { - "id": 22913, + "id": 22928, "properties": { "east": "tall", "north": "tall", @@ -191310,7 +191546,7 @@ } }, { - "id": 22914, + "id": 22929, "properties": { "east": "tall", "north": "tall", @@ -191321,7 +191557,7 @@ } }, { - "id": 22915, + "id": 22930, "properties": { "east": "tall", "north": "tall", @@ -191347,7 +191583,7 @@ "states": [ { "default": true, - "id": 2120 + "id": 2123 } ] }, @@ -191371,49 +191607,49 @@ "states": [ { "default": true, - "id": 9378, + "id": 9388, "properties": { "age": "0" } }, { - "id": 9379, + "id": 9389, "properties": { "age": "1" } }, { - "id": 9380, + "id": 9390, "properties": { "age": "2" } }, { - "id": 9381, + "id": 9391, "properties": { "age": "3" } }, { - "id": 9382, + "id": 9392, "properties": { "age": "4" } }, { - "id": 9383, + "id": 9393, "properties": { "age": "5" } }, { - "id": 9384, + "id": 9394, "properties": { "age": "6" } }, { - "id": 9385, + "id": 9395, "properties": { "age": "7" } @@ -191429,7 +191665,7 @@ "states": [ { "default": true, - "id": 9347 + "id": 9357 } ] }, @@ -191442,7 +191678,7 @@ "states": [ { "default": true, - "id": 9356 + "id": 9366 } ] }, @@ -191455,7 +191691,7 @@ "states": [ { "default": true, - "id": 27574 + "id": 27621 } ] }, @@ -191468,7 +191704,7 @@ "states": [ { "default": true, - "id": 9357 + "id": 9367 } ] }, @@ -191481,7 +191717,7 @@ "states": [ { "default": true, - "id": 13970 + "id": 13980 } ] }, @@ -191494,7 +191730,7 @@ "states": [ { "default": true, - "id": 9345 + "id": 9355 } ] }, @@ -191507,7 +191743,7 @@ "states": [ { "default": true, - "id": 9355 + "id": 9365 } ] }, @@ -191520,7 +191756,7 @@ "states": [ { "default": true, - "id": 9367 + "id": 9377 } ] }, @@ -191533,7 +191769,7 @@ "states": [ { "default": true, - "id": 9369 + "id": 9379 } ] }, @@ -191546,7 +191782,7 @@ "states": [ { "default": true, - "id": 9348 + "id": 9358 } ] }, @@ -191559,7 +191795,7 @@ "states": [ { "default": true, - "id": 27865 + "id": 27912 } ] }, @@ -191572,7 +191808,7 @@ "states": [ { "default": true, - "id": 9363 + "id": 9373 } ] }, @@ -191585,7 +191821,7 @@ "states": [ { "default": true, - "id": 20468 + "id": 20483 } ] }, @@ -191598,7 +191834,7 @@ "states": [ { "default": true, - "id": 20470 + "id": 20485 } ] }, @@ -191611,7 +191847,7 @@ "states": [ { "default": true, - "id": 9353 + "id": 9363 } ] }, @@ -191624,7 +191860,7 @@ "states": [ { "default": true, - "id": 9349 + "id": 9359 } ] }, @@ -191637,7 +191873,7 @@ "states": [ { "default": true, - "id": 9368 + "id": 9378 } ] }, @@ -191650,7 +191886,7 @@ "states": [ { "default": true, - "id": 9352 + "id": 9362 } ] }, @@ -191663,7 +191899,7 @@ "states": [ { "default": true, - "id": 27575 + "id": 27622 } ] }, @@ -191676,7 +191912,7 @@ "states": [ { "default": true, - "id": 9346 + "id": 9356 } ] }, @@ -191689,7 +191925,7 @@ "states": [ { "default": true, - "id": 9364 + "id": 9374 } ] }, @@ -191702,7 +191938,7 @@ "states": [ { "default": true, - "id": 9351 + "id": 9361 } ] }, @@ -191715,7 +191951,7 @@ "states": [ { "default": true, - "id": 9343 + "id": 9353 } ] }, @@ -191728,7 +191964,7 @@ "states": [ { "default": true, - "id": 27864 + "id": 27911 } ] }, @@ -191741,7 +191977,7 @@ "states": [ { "default": true, - "id": 9359 + "id": 9369 } ] }, @@ -191754,7 +191990,7 @@ "states": [ { "default": true, - "id": 9362 + "id": 9372 } ] }, @@ -191767,7 +192003,7 @@ "states": [ { "default": true, - "id": 9350 + "id": 9360 } ] }, @@ -191780,7 +192016,7 @@ "states": [ { "default": true, - "id": 9361 + "id": 9371 } ] }, @@ -191793,7 +192029,7 @@ "states": [ { "default": true, - "id": 9354 + "id": 9364 } ] }, @@ -191806,7 +192042,7 @@ "states": [ { "default": true, - "id": 9366 + "id": 9376 } ] }, @@ -191819,7 +192055,7 @@ "states": [ { "default": true, - "id": 9358 + "id": 9368 } ] }, @@ -191832,7 +192068,7 @@ "states": [ { "default": true, - "id": 9344 + "id": 9354 } ] }, @@ -191845,7 +192081,7 @@ "states": [ { "default": true, - "id": 9342 + "id": 9352 } ] }, @@ -191858,7 +192094,7 @@ "states": [ { "default": true, - "id": 20469 + "id": 20484 } ] }, @@ -191871,7 +192107,7 @@ "states": [ { "default": true, - "id": 20471 + "id": 20486 } ] }, @@ -191884,7 +192120,7 @@ "states": [ { "default": true, - "id": 9360 + "id": 9370 } ] }, @@ -191897,7 +192133,7 @@ "states": [ { "default": true, - "id": 9365 + "id": 9375 } ] }, @@ -191909,7 +192145,7 @@ "states": [ { "default": true, - "id": 23331 + "id": 23346 } ] }, @@ -191930,19 +192166,19 @@ "states": [ { "default": true, - "id": 8177, + "id": 8187, "properties": { "level": "1" } }, { - "id": 8178, + "id": 8188, "properties": { "level": "2" } }, { - "id": 8179, + "id": 8189, "properties": { "level": "3" } @@ -192176,7 +192412,7 @@ "states": [ { "default": true, - "id": 11342 + "id": 11352 } ] }, @@ -192198,21 +192434,21 @@ }, "states": [ { - "id": 11591, + "id": 11601, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11592, + "id": 11602, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11593, + "id": 11603, "properties": { "type": "bottom", "waterlogged": "true" @@ -192220,21 +192456,21 @@ }, { "default": true, - "id": 11594, + "id": 11604, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11595, + "id": 11605, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11596, + "id": 11606, "properties": { "type": "double", "waterlogged": "false" @@ -192274,98 +192510,98 @@ ] }, "states": [ - { - "id": 11425, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 11426, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 11427, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 11428, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 11429, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 11430, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 11431, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 11432, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 11433, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11434, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 11435, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11436, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11437, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11438, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11439, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11440, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11441, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11442, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11443, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11444, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11445, "properties": { "facing": "north", "half": "bottom", @@ -192375,100 +192611,10 @@ }, { "default": true, - "id": 11436, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 11437, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 11438, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 11439, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 11440, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 11441, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 11442, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 11443, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11444, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 11445, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 11446, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -192476,8 +192622,8 @@ { "id": 11447, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -192485,8 +192631,8 @@ { "id": 11448, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -192494,8 +192640,8 @@ { "id": 11449, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -192503,8 +192649,8 @@ { "id": 11450, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -192512,8 +192658,8 @@ { "id": 11451, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -192521,8 +192667,8 @@ { "id": 11452, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -192530,8 +192676,8 @@ { "id": 11453, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -192539,8 +192685,8 @@ { "id": 11454, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -192549,7 +192695,7 @@ "id": 11455, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -192558,7 +192704,7 @@ "id": 11456, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -192567,7 +192713,7 @@ "id": 11457, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -192576,7 +192722,7 @@ "id": 11458, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -192585,7 +192731,7 @@ "id": 11459, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -192594,7 +192740,7 @@ "id": 11460, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -192603,7 +192749,7 @@ "id": 11461, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -192612,7 +192758,7 @@ "id": 11462, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -192621,7 +192767,7 @@ "id": 11463, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -192630,7 +192776,7 @@ "id": 11464, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -192638,8 +192784,8 @@ { "id": 11465, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -192647,8 +192793,8 @@ { "id": 11466, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -192656,8 +192802,8 @@ { "id": 11467, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -192665,8 +192811,8 @@ { "id": 11468, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -192674,8 +192820,8 @@ { "id": 11469, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -192683,8 +192829,8 @@ { "id": 11470, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -192692,8 +192838,8 @@ { "id": 11471, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -192701,8 +192847,8 @@ { "id": 11472, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -192710,8 +192856,8 @@ { "id": 11473, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -192719,8 +192865,8 @@ { "id": 11474, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -192729,7 +192875,7 @@ "id": 11475, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -192738,7 +192884,7 @@ "id": 11476, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -192747,7 +192893,7 @@ "id": 11477, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -192756,7 +192902,7 @@ "id": 11478, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -192765,7 +192911,7 @@ "id": 11479, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -192774,7 +192920,7 @@ "id": 11480, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -192783,7 +192929,7 @@ "id": 11481, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -192792,7 +192938,7 @@ "id": 11482, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -192801,7 +192947,7 @@ "id": 11483, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -192810,7 +192956,7 @@ "id": 11484, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -192818,8 +192964,8 @@ { "id": 11485, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -192827,8 +192973,8 @@ { "id": 11486, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -192836,8 +192982,8 @@ { "id": 11487, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -192845,8 +192991,8 @@ { "id": 11488, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -192854,8 +193000,8 @@ { "id": 11489, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -192863,8 +193009,8 @@ { "id": 11490, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -192872,8 +193018,8 @@ { "id": 11491, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -192881,8 +193027,8 @@ { "id": 11492, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -192890,8 +193036,8 @@ { "id": 11493, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -192899,8 +193045,8 @@ { "id": 11494, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -192909,7 +193055,7 @@ "id": 11495, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -192918,7 +193064,7 @@ "id": 11496, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -192927,7 +193073,7 @@ "id": 11497, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -192936,7 +193082,7 @@ "id": 11498, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -192945,7 +193091,7 @@ "id": 11499, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -192954,7 +193100,7 @@ "id": 11500, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -192963,7 +193109,7 @@ "id": 11501, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -192972,7 +193118,7 @@ "id": 11502, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -192981,13 +193127,103 @@ "id": 11503, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 11504, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11505, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11506, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11507, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11508, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11509, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11510, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11511, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11512, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11513, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11514, "properties": { "facing": "east", "half": "bottom", @@ -193005,7 +193241,7 @@ "states": [ { "default": true, - "id": 11343 + "id": 11353 } ] }, @@ -193027,21 +193263,21 @@ }, "states": [ { - "id": 11585, + "id": 11595, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11586, + "id": 11596, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11587, + "id": 11597, "properties": { "type": "bottom", "waterlogged": "true" @@ -193049,21 +193285,21 @@ }, { "default": true, - "id": 11588, + "id": 11598, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11589, + "id": 11599, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11590, + "id": 11600, "properties": { "type": "double", "waterlogged": "false" @@ -193103,98 +193339,98 @@ ] }, "states": [ - { - "id": 11345, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 11346, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 11347, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 11348, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 11349, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 11350, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 11351, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 11352, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 11353, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11354, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 11355, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11356, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11357, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11358, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11359, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11360, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11361, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11362, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11363, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11364, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11365, "properties": { "facing": "north", "half": "bottom", @@ -193204,100 +193440,10 @@ }, { "default": true, - "id": 11356, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 11357, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 11358, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 11359, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 11360, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 11361, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 11362, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 11363, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11364, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 11365, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 11366, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -193305,8 +193451,8 @@ { "id": 11367, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -193314,8 +193460,8 @@ { "id": 11368, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -193323,8 +193469,8 @@ { "id": 11369, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -193332,8 +193478,8 @@ { "id": 11370, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -193341,8 +193487,8 @@ { "id": 11371, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -193350,8 +193496,8 @@ { "id": 11372, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -193359,8 +193505,8 @@ { "id": 11373, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -193368,8 +193514,8 @@ { "id": 11374, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -193378,7 +193524,7 @@ "id": 11375, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -193387,7 +193533,7 @@ "id": 11376, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -193396,7 +193542,7 @@ "id": 11377, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -193405,7 +193551,7 @@ "id": 11378, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -193414,7 +193560,7 @@ "id": 11379, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -193423,7 +193569,7 @@ "id": 11380, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -193432,7 +193578,7 @@ "id": 11381, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -193441,7 +193587,7 @@ "id": 11382, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -193450,7 +193596,7 @@ "id": 11383, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -193459,7 +193605,7 @@ "id": 11384, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -193467,8 +193613,8 @@ { "id": 11385, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -193476,8 +193622,8 @@ { "id": 11386, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -193485,8 +193631,8 @@ { "id": 11387, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -193494,8 +193640,8 @@ { "id": 11388, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -193503,8 +193649,8 @@ { "id": 11389, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -193512,8 +193658,8 @@ { "id": 11390, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -193521,8 +193667,8 @@ { "id": 11391, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -193530,8 +193676,8 @@ { "id": 11392, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -193539,8 +193685,8 @@ { "id": 11393, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -193548,8 +193694,8 @@ { "id": 11394, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -193558,7 +193704,7 @@ "id": 11395, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -193567,7 +193713,7 @@ "id": 11396, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -193576,7 +193722,7 @@ "id": 11397, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -193585,7 +193731,7 @@ "id": 11398, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -193594,7 +193740,7 @@ "id": 11399, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -193603,7 +193749,7 @@ "id": 11400, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -193612,7 +193758,7 @@ "id": 11401, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -193621,7 +193767,7 @@ "id": 11402, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -193630,7 +193776,7 @@ "id": 11403, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -193639,7 +193785,7 @@ "id": 11404, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -193647,8 +193793,8 @@ { "id": 11405, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -193656,8 +193802,8 @@ { "id": 11406, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -193665,8 +193811,8 @@ { "id": 11407, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -193674,8 +193820,8 @@ { "id": 11408, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -193683,8 +193829,8 @@ { "id": 11409, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -193692,8 +193838,8 @@ { "id": 11410, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -193701,8 +193847,8 @@ { "id": 11411, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -193710,8 +193856,8 @@ { "id": 11412, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -193719,8 +193865,8 @@ { "id": 11413, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -193728,8 +193874,8 @@ { "id": 11414, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -193738,7 +193884,7 @@ "id": 11415, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -193747,7 +193893,7 @@ "id": 11416, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -193756,7 +193902,7 @@ "id": 11417, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -193765,7 +193911,7 @@ "id": 11418, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -193774,7 +193920,7 @@ "id": 11419, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -193783,7 +193929,7 @@ "id": 11420, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -193792,7 +193938,7 @@ "id": 11421, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -193801,7 +193947,7 @@ "id": 11422, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -193810,13 +193956,103 @@ "id": 11423, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 11424, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11425, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11426, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11427, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11428, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11429, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11430, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11431, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11432, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11433, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11434, "properties": { "facing": "east", "half": "bottom", @@ -193863,7 +194099,7 @@ }, "states": [ { - "id": 15497, + "id": 15507, "properties": { "east": "none", "north": "none", @@ -193874,7 +194110,7 @@ } }, { - "id": 15498, + "id": 15508, "properties": { "east": "none", "north": "none", @@ -193885,7 +194121,7 @@ } }, { - "id": 15499, + "id": 15509, "properties": { "east": "none", "north": "none", @@ -193897,124 +194133,14 @@ }, { "default": true, - "id": 15500, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15501, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15502, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15503, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15504, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15505, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15506, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15507, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15508, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15509, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { "id": 15510, "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -194022,10 +194148,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -194033,10 +194159,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -194044,10 +194170,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -194055,10 +194181,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -194066,10 +194192,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -194077,10 +194203,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -194088,10 +194214,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -194099,10 +194225,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -194111,9 +194237,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -194122,9 +194248,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -194132,10 +194258,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -194143,10 +194269,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -194154,10 +194280,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -194165,10 +194291,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -194176,10 +194302,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -194187,10 +194313,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -194198,10 +194324,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -194209,10 +194335,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -194220,10 +194346,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -194231,10 +194357,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -194243,9 +194369,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -194254,130 +194380,130 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 15533, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 15534, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 15535, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 15536, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15537, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 15538, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15539, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15540, - "properties": { - "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 15541, + "id": 15539, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 15542, + "id": 15540, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 15541, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15542, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 15543, "properties": { "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -194386,9 +194512,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -194396,10 +194522,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -194407,10 +194533,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -194418,10 +194544,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -194429,10 +194555,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -194440,10 +194566,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -194451,10 +194577,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -194462,10 +194588,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -194473,10 +194599,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -194484,10 +194610,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -194495,10 +194621,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -194507,9 +194633,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -194518,9 +194644,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -194528,10 +194654,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -194539,10 +194665,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -194550,10 +194676,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -194561,10 +194687,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -194572,10 +194698,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -194583,10 +194709,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -194594,10 +194720,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -194605,10 +194731,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -194616,10 +194742,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -194627,10 +194753,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -194639,9 +194765,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -194650,130 +194776,130 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 15569, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 15570, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 15571, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 15572, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15573, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 15574, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15575, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15576, - "properties": { - "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 15577, + "id": 15575, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 15578, + "id": 15576, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 15577, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15578, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 15579, "properties": { "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -194782,9 +194908,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -194792,10 +194918,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -194803,10 +194929,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -194814,10 +194940,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -194825,10 +194951,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -194836,10 +194962,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -194847,10 +194973,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -194858,10 +194984,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -194869,10 +194995,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -194880,10 +195006,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -194891,10 +195017,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -194903,9 +195029,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -194914,9 +195040,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -194924,10 +195050,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -194935,10 +195061,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -194946,10 +195072,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -194957,10 +195083,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -194968,10 +195094,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -194979,10 +195105,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -194990,10 +195116,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -195001,10 +195127,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -195012,10 +195138,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -195023,14 +195149,124 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15603, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15604, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15605, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15606, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15607, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15608, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15609, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15610, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15611, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15612, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15613, "properties": { "east": "none", "north": "tall", @@ -195041,7 +195277,7 @@ } }, { - "id": 15604, + "id": 15614, "properties": { "east": "none", "north": "tall", @@ -195051,125 +195287,15 @@ "west": "tall" } }, - { - "id": 15605, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15606, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15607, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15608, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15609, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15610, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15611, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15612, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15613, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15614, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 15615, "properties": { "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -195178,9 +195304,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -195188,10 +195314,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -195199,10 +195325,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -195210,10 +195336,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -195221,10 +195347,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -195232,10 +195358,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -195243,10 +195369,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -195254,10 +195380,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -195265,10 +195391,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -195276,10 +195402,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -195287,10 +195413,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -195299,9 +195425,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -195310,9 +195436,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -195320,10 +195446,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -195331,10 +195457,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -195342,10 +195468,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -195353,10 +195479,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -195364,10 +195490,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -195375,10 +195501,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -195386,10 +195512,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -195397,10 +195523,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -195408,10 +195534,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -195419,10 +195545,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -195431,9 +195557,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -195442,130 +195568,130 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 15641, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 15642, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 15643, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 15644, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15645, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 15646, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15647, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15648, - "properties": { - "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 15649, + "id": 15647, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 15650, + "id": 15648, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 15649, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15650, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 15651, "properties": { "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -195574,9 +195700,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -195584,10 +195710,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -195595,10 +195721,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -195606,10 +195732,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -195617,10 +195743,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -195628,10 +195754,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -195639,10 +195765,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -195650,10 +195776,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -195661,10 +195787,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -195672,10 +195798,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -195683,10 +195809,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -195695,9 +195821,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -195706,9 +195832,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -195716,10 +195842,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -195727,10 +195853,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -195738,10 +195864,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -195749,10 +195875,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -195760,10 +195886,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -195771,10 +195897,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -195782,10 +195908,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -195793,10 +195919,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -195804,10 +195930,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -195815,10 +195941,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -195827,9 +195953,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -195838,130 +195964,130 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 15677, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 15678, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 15679, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 15680, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15681, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 15682, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15683, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15684, - "properties": { - "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 15685, + "id": 15683, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 15686, + "id": 15684, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 15685, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15686, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 15687, "properties": { "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -195970,9 +196096,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -195980,10 +196106,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -195991,10 +196117,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -196002,10 +196128,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -196013,10 +196139,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -196024,10 +196150,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -196035,10 +196161,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -196046,10 +196172,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -196057,10 +196183,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -196068,10 +196194,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -196079,10 +196205,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -196091,9 +196217,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -196102,9 +196228,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -196112,10 +196238,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -196123,10 +196249,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -196134,10 +196260,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -196145,10 +196271,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -196156,10 +196282,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -196167,10 +196293,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -196178,10 +196304,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -196189,10 +196315,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -196200,10 +196326,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -196211,14 +196337,124 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15711, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15712, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15713, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15714, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15715, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15716, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15717, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15718, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15719, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15720, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15721, "properties": { "east": "low", "north": "tall", @@ -196229,7 +196465,7 @@ } }, { - "id": 15712, + "id": 15722, "properties": { "east": "low", "north": "tall", @@ -196239,125 +196475,15 @@ "west": "tall" } }, - { - "id": 15713, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15714, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15715, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15716, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15717, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15718, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15719, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15720, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15721, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15722, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 15723, "properties": { "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -196366,9 +196492,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -196376,10 +196502,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -196387,10 +196513,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -196398,10 +196524,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -196409,10 +196535,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -196420,10 +196546,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -196431,10 +196557,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -196442,10 +196568,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -196453,10 +196579,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -196464,10 +196590,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -196475,10 +196601,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -196487,9 +196613,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -196498,9 +196624,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -196508,10 +196634,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -196519,10 +196645,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -196530,10 +196656,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -196541,10 +196667,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -196552,10 +196678,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -196563,10 +196689,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -196574,10 +196700,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -196585,10 +196711,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -196596,10 +196722,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -196607,14 +196733,124 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15747, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15748, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15749, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15750, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15751, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15752, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15753, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15754, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15755, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15756, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15757, "properties": { "east": "tall", "north": "none", @@ -196625,7 +196861,7 @@ } }, { - "id": 15748, + "id": 15758, "properties": { "east": "tall", "north": "none", @@ -196635,125 +196871,15 @@ "west": "tall" } }, - { - "id": 15749, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15750, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15751, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15752, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15753, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15754, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15755, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15756, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15757, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15758, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 15759, "properties": { "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -196762,9 +196888,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -196772,10 +196898,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -196783,10 +196909,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -196794,10 +196920,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -196805,10 +196931,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -196816,10 +196942,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -196827,10 +196953,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -196838,10 +196964,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -196849,10 +196975,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -196860,10 +196986,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -196871,10 +196997,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -196883,9 +197009,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -196894,9 +197020,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -196904,10 +197030,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -196915,10 +197041,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -196926,10 +197052,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -196937,10 +197063,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -196948,10 +197074,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -196959,10 +197085,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -196970,10 +197096,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -196981,10 +197107,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -196992,10 +197118,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -197003,14 +197129,124 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15783, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15784, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15785, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15786, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15787, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15788, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15789, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15790, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15791, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15792, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15793, "properties": { "east": "tall", "north": "low", @@ -197021,7 +197257,7 @@ } }, { - "id": 15784, + "id": 15794, "properties": { "east": "tall", "north": "low", @@ -197031,125 +197267,15 @@ "west": "tall" } }, - { - "id": 15785, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15786, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15787, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15788, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15789, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15790, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15791, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15792, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15793, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15794, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 15795, "properties": { "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -197158,9 +197284,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -197168,10 +197294,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -197179,10 +197305,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -197190,10 +197316,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -197201,10 +197327,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -197212,10 +197338,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -197223,10 +197349,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -197234,10 +197360,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -197245,10 +197371,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -197256,10 +197382,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -197267,14 +197393,124 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15807, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15808, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15809, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15810, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15811, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15812, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15813, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15814, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15815, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15816, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15817, "properties": { "east": "tall", "north": "tall", @@ -197285,7 +197521,7 @@ } }, { - "id": 15808, + "id": 15818, "properties": { "east": "tall", "north": "tall", @@ -197295,118 +197531,118 @@ "west": "tall" } }, - { - "id": 15809, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15810, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15811, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15812, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15813, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15814, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15815, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15816, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15817, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15818, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 15819, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15820, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15821, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15822, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15823, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15824, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15825, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15826, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15827, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15828, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15829, "properties": { "east": "tall", "north": "tall", @@ -197417,7 +197653,7 @@ } }, { - "id": 15820, + "id": 15830, "properties": { "east": "tall", "north": "tall", @@ -197437,7 +197673,7 @@ "states": [ { "default": true, - "id": 7044 + "id": 7054 } ] }, @@ -197464,49 +197700,49 @@ "states": [ { "default": true, - "id": 7054, + "id": 7064, "properties": { "age": "0" } }, { - "id": 7055, + "id": 7065, "properties": { "age": "1" } }, { - "id": 7056, + "id": 7066, "properties": { "age": "2" } }, { - "id": 7057, + "id": 7067, "properties": { "age": "3" } }, { - "id": 7058, + "id": 7068, "properties": { "age": "4" } }, { - "id": 7059, + "id": 7069, "properties": { "age": "5" } }, { - "id": 7060, + "id": 7070, "properties": { "age": "6" } }, { - "id": 7061, + "id": 7071, "properties": { "age": "7" } @@ -197542,97 +197778,97 @@ "states": [ { "default": true, - "id": 11798, + "id": 11808, "properties": { "rotation": "0" } }, { - "id": 11799, + "id": 11809, "properties": { "rotation": "1" } }, { - "id": 11800, + "id": 11810, "properties": { "rotation": "2" } }, { - "id": 11801, + "id": 11811, "properties": { "rotation": "3" } }, { - "id": 11802, + "id": 11812, "properties": { "rotation": "4" } }, { - "id": 11803, + "id": 11813, "properties": { "rotation": "5" } }, { - "id": 11804, + "id": 11814, "properties": { "rotation": "6" } }, { - "id": 11805, + "id": 11815, "properties": { "rotation": "7" } }, { - "id": 11806, + "id": 11816, "properties": { "rotation": "8" } }, { - "id": 11807, + "id": 11817, "properties": { "rotation": "9" } }, { - "id": 11808, + "id": 11818, "properties": { "rotation": "10" } }, { - "id": 11809, + "id": 11819, "properties": { "rotation": "11" } }, { - "id": 11810, + "id": 11820, "properties": { "rotation": "12" } }, { - "id": 11811, + "id": 11821, "properties": { "rotation": "13" } }, { - "id": 11812, + "id": 11822, "properties": { "rotation": "14" } }, { - "id": 11813, + "id": 11823, "properties": { "rotation": "15" } @@ -197816,7 +198052,7 @@ }, "states": [ { - "id": 21914, + "id": 21929, "properties": { "candles": "1", "lit": "true", @@ -197824,7 +198060,7 @@ } }, { - "id": 21915, + "id": 21930, "properties": { "candles": "1", "lit": "true", @@ -197832,7 +198068,7 @@ } }, { - "id": 21916, + "id": 21931, "properties": { "candles": "1", "lit": "false", @@ -197841,7 +198077,7 @@ }, { "default": true, - "id": 21917, + "id": 21932, "properties": { "candles": "1", "lit": "false", @@ -197849,7 +198085,7 @@ } }, { - "id": 21918, + "id": 21933, "properties": { "candles": "2", "lit": "true", @@ -197857,7 +198093,7 @@ } }, { - "id": 21919, + "id": 21934, "properties": { "candles": "2", "lit": "true", @@ -197865,7 +198101,7 @@ } }, { - "id": 21920, + "id": 21935, "properties": { "candles": "2", "lit": "false", @@ -197873,7 +198109,7 @@ } }, { - "id": 21921, + "id": 21936, "properties": { "candles": "2", "lit": "false", @@ -197881,7 +198117,7 @@ } }, { - "id": 21922, + "id": 21937, "properties": { "candles": "3", "lit": "true", @@ -197889,7 +198125,7 @@ } }, { - "id": 21923, + "id": 21938, "properties": { "candles": "3", "lit": "true", @@ -197897,7 +198133,7 @@ } }, { - "id": 21924, + "id": 21939, "properties": { "candles": "3", "lit": "false", @@ -197905,7 +198141,7 @@ } }, { - "id": 21925, + "id": 21940, "properties": { "candles": "3", "lit": "false", @@ -197913,7 +198149,7 @@ } }, { - "id": 21926, + "id": 21941, "properties": { "candles": "4", "lit": "true", @@ -197921,7 +198157,7 @@ } }, { - "id": 21927, + "id": 21942, "properties": { "candles": "4", "lit": "true", @@ -197929,7 +198165,7 @@ } }, { - "id": 21928, + "id": 21943, "properties": { "candles": "4", "lit": "false", @@ -197937,7 +198173,7 @@ } }, { - "id": 21929, + "id": 21944, "properties": { "candles": "4", "lit": "false", @@ -197960,14 +198196,14 @@ }, "states": [ { - "id": 22032, + "id": 22047, "properties": { "lit": "true" } }, { "default": true, - "id": 22033, + "id": 22048, "properties": { "lit": "false" } @@ -197983,7 +198219,7 @@ "states": [ { "default": true, - "id": 11617 + "id": 11627 } ] }, @@ -197995,7 +198231,7 @@ "states": [ { "default": true, - "id": 13751 + "id": 13761 } ] }, @@ -198008,7 +198244,7 @@ "states": [ { "default": true, - "id": 13767 + "id": 13777 } ] }, @@ -198028,25 +198264,25 @@ "states": [ { "default": true, - "id": 13717, + "id": 13727, "properties": { "facing": "north" } }, { - "id": 13718, + "id": 13728, "properties": { "facing": "south" } }, { - "id": 13719, + "id": 13729, "properties": { "facing": "west" } }, { - "id": 13720, + "id": 13730, "properties": { "facing": "east" } @@ -198071,38 +198307,38 @@ }, "states": [ { - "id": 13641, + "id": 13651, "properties": { "facing": "north" } }, { - "id": 13642, + "id": 13652, "properties": { "facing": "east" } }, { - "id": 13643, + "id": 13653, "properties": { "facing": "south" } }, { - "id": 13644, + "id": 13654, "properties": { "facing": "west" } }, { "default": true, - "id": 13645, + "id": 13655, "properties": { "facing": "up" } }, { - "id": 13646, + "id": 13656, "properties": { "facing": "down" } @@ -198118,7 +198354,7 @@ "states": [ { "default": true, - "id": 6124 + "id": 6134 } ] }, @@ -198151,113 +198387,13 @@ ] }, "states": [ - { - "id": 10491, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10492, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10493, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10494, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10495, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10496, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10497, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10498, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10499, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10500, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10501, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -198265,9 +198401,9 @@ "id": 10502, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -198275,9 +198411,9 @@ "id": 10503, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -198285,14 +198421,114 @@ "id": 10504, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 10505, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10506, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10507, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10508, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10509, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10510, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10511, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10512, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10513, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10514, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10515, "properties": { "east": "true", "north": "false", @@ -198302,7 +198538,7 @@ } }, { - "id": 10506, + "id": 10516, "properties": { "east": "true", "north": "false", @@ -198311,118 +198547,118 @@ "west": "false" } }, - { - "id": 10507, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10508, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10509, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10510, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10511, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10512, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10513, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10514, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10515, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10516, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10517, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 10518, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10519, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10520, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10521, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10522, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10523, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10524, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10525, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10526, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10527, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10528, "properties": { "east": "false", "north": "false", @@ -198432,7 +198668,7 @@ } }, { - "id": 10519, + "id": 10529, "properties": { "east": "false", "north": "false", @@ -198442,7 +198678,7 @@ } }, { - "id": 10520, + "id": 10530, "properties": { "east": "false", "north": "false", @@ -198452,7 +198688,7 @@ } }, { - "id": 10521, + "id": 10531, "properties": { "east": "false", "north": "false", @@ -198463,7 +198699,7 @@ }, { "default": true, - "id": 10522, + "id": 10532, "properties": { "east": "false", "north": "false", @@ -198476,13 +198712,13 @@ }, "minecraft:purple_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 10165 + "id": 10175 } ] }, @@ -198503,25 +198739,25 @@ "states": [ { "default": true, - "id": 11934, + "id": 11944, "properties": { "facing": "north" } }, { - "id": 11935, + "id": 11945, "properties": { "facing": "south" } }, { - "id": 11936, + "id": 11946, "properties": { "facing": "west" } }, { - "id": 11937, + "id": 11947, "properties": { "facing": "east" } @@ -198536,7 +198772,7 @@ "states": [ { "default": true, - "id": 2100 + "id": 2103 } ] }, @@ -198548,7 +198784,7 @@ "states": [ { "default": true, - "id": 13423 + "id": 13433 } ] }, @@ -198566,20 +198802,20 @@ }, "states": [ { - "id": 13424, + "id": 13434, "properties": { "axis": "x" } }, { "default": true, - "id": 13425, + "id": 13435, "properties": { "axis": "y" } }, { - "id": 13426, + "id": 13436, "properties": { "axis": "z" } @@ -198604,21 +198840,21 @@ }, "states": [ { - "id": 12185, + "id": 12195, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12186, + "id": 12196, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12187, + "id": 12197, "properties": { "type": "bottom", "waterlogged": "true" @@ -198626,21 +198862,21 @@ }, { "default": true, - "id": 12188, + "id": 12198, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12189, + "id": 12199, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12190, + "id": 12200, "properties": { "type": "double", "waterlogged": "false" @@ -198680,98 +198916,98 @@ ] }, "states": [ - { - "id": 13427, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13428, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13429, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13430, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13431, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13432, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13433, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13434, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13435, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13436, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 13437, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13438, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13439, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13440, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13441, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13442, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13443, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13444, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13445, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13446, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13447, "properties": { "facing": "north", "half": "bottom", @@ -198781,100 +199017,10 @@ }, { "default": true, - "id": 13438, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13439, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13440, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13441, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13442, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13443, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13444, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13445, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13446, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13447, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 13448, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -198882,8 +199028,8 @@ { "id": 13449, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -198891,8 +199037,8 @@ { "id": 13450, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -198900,8 +199046,8 @@ { "id": 13451, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -198909,8 +199055,8 @@ { "id": 13452, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -198918,8 +199064,8 @@ { "id": 13453, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -198927,8 +199073,8 @@ { "id": 13454, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -198936,8 +199082,8 @@ { "id": 13455, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -198945,8 +199091,8 @@ { "id": 13456, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -198955,7 +199101,7 @@ "id": 13457, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -198964,7 +199110,7 @@ "id": 13458, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -198973,7 +199119,7 @@ "id": 13459, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -198982,7 +199128,7 @@ "id": 13460, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -198991,7 +199137,7 @@ "id": 13461, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -199000,7 +199146,7 @@ "id": 13462, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -199009,7 +199155,7 @@ "id": 13463, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -199018,7 +199164,7 @@ "id": 13464, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -199027,7 +199173,7 @@ "id": 13465, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -199036,7 +199182,7 @@ "id": 13466, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -199044,8 +199190,8 @@ { "id": 13467, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -199053,8 +199199,8 @@ { "id": 13468, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -199062,8 +199208,8 @@ { "id": 13469, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -199071,8 +199217,8 @@ { "id": 13470, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -199080,8 +199226,8 @@ { "id": 13471, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -199089,8 +199235,8 @@ { "id": 13472, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -199098,8 +199244,8 @@ { "id": 13473, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -199107,8 +199253,8 @@ { "id": 13474, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -199116,8 +199262,8 @@ { "id": 13475, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -199125,8 +199271,8 @@ { "id": 13476, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -199135,7 +199281,7 @@ "id": 13477, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -199144,7 +199290,7 @@ "id": 13478, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -199153,7 +199299,7 @@ "id": 13479, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -199162,7 +199308,7 @@ "id": 13480, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -199171,7 +199317,7 @@ "id": 13481, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -199180,7 +199326,7 @@ "id": 13482, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -199189,7 +199335,7 @@ "id": 13483, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -199198,7 +199344,7 @@ "id": 13484, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -199207,7 +199353,7 @@ "id": 13485, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -199216,7 +199362,7 @@ "id": 13486, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -199224,8 +199370,8 @@ { "id": 13487, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -199233,8 +199379,8 @@ { "id": 13488, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -199242,8 +199388,8 @@ { "id": 13489, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -199251,8 +199397,8 @@ { "id": 13490, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -199260,8 +199406,8 @@ { "id": 13491, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -199269,8 +199415,8 @@ { "id": 13492, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -199278,8 +199424,8 @@ { "id": 13493, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -199287,8 +199433,8 @@ { "id": 13494, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -199296,8 +199442,8 @@ { "id": 13495, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -199305,8 +199451,8 @@ { "id": 13496, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -199315,7 +199461,7 @@ "id": 13497, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -199324,7 +199470,7 @@ "id": 13498, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -199333,7 +199479,7 @@ "id": 13499, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -199342,7 +199488,7 @@ "id": 13500, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -199351,7 +199497,7 @@ "id": 13501, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -199360,7 +199506,7 @@ "id": 13502, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -199369,7 +199515,7 @@ "id": 13503, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -199378,7 +199524,7 @@ "id": 13504, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -199387,13 +199533,103 @@ "id": 13505, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 13506, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13507, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13508, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13509, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13510, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13511, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13512, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13513, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13514, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13515, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13516, "properties": { "facing": "east", "half": "bottom", @@ -199411,7 +199647,7 @@ "states": [ { "default": true, - "id": 10034 + "id": 10044 } ] }, @@ -199423,7 +199659,7 @@ "states": [ { "default": true, - "id": 21737 + "id": 21752 } ] }, @@ -199441,20 +199677,20 @@ }, "states": [ { - "id": 10036, + "id": 10046, "properties": { "axis": "x" } }, { "default": true, - "id": 10037, + "id": 10047, "properties": { "axis": "y" } }, { - "id": 10038, + "id": 10048, "properties": { "axis": "z" } @@ -199479,21 +199715,21 @@ }, "states": [ { - "id": 12167, + "id": 12177, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12168, + "id": 12178, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12169, + "id": 12179, "properties": { "type": "bottom", "waterlogged": "true" @@ -199501,21 +199737,21 @@ }, { "default": true, - "id": 12170, + "id": 12180, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12171, + "id": 12181, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12172, + "id": 12182, "properties": { "type": "double", "waterlogged": "false" @@ -199555,98 +199791,98 @@ ] }, "states": [ - { - "id": 10039, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10040, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10041, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10042, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10043, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10044, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10045, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10046, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10047, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10048, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 10049, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10050, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10051, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10052, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10053, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10054, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10055, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10056, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10057, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10058, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10059, "properties": { "facing": "north", "half": "bottom", @@ -199656,100 +199892,10 @@ }, { "default": true, - "id": 10050, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10051, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10052, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10053, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10054, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10055, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10056, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10057, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10058, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10059, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 10060, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -199757,8 +199903,8 @@ { "id": 10061, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -199766,8 +199912,8 @@ { "id": 10062, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -199775,8 +199921,8 @@ { "id": 10063, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -199784,8 +199930,8 @@ { "id": 10064, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -199793,8 +199939,8 @@ { "id": 10065, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -199802,8 +199948,8 @@ { "id": 10066, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -199811,8 +199957,8 @@ { "id": 10067, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -199820,8 +199966,8 @@ { "id": 10068, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -199830,7 +199976,7 @@ "id": 10069, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -199839,7 +199985,7 @@ "id": 10070, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -199848,7 +199994,7 @@ "id": 10071, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -199857,7 +200003,7 @@ "id": 10072, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -199866,7 +200012,7 @@ "id": 10073, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -199875,7 +200021,7 @@ "id": 10074, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -199884,7 +200030,7 @@ "id": 10075, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -199893,7 +200039,7 @@ "id": 10076, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -199902,7 +200048,7 @@ "id": 10077, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -199911,7 +200057,7 @@ "id": 10078, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -199919,8 +200065,8 @@ { "id": 10079, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -199928,8 +200074,8 @@ { "id": 10080, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -199937,8 +200083,8 @@ { "id": 10081, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -199946,8 +200092,8 @@ { "id": 10082, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -199955,8 +200101,8 @@ { "id": 10083, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -199964,8 +200110,8 @@ { "id": 10084, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -199973,8 +200119,8 @@ { "id": 10085, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -199982,8 +200128,8 @@ { "id": 10086, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -199991,8 +200137,8 @@ { "id": 10087, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -200000,8 +200146,8 @@ { "id": 10088, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -200010,7 +200156,7 @@ "id": 10089, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -200019,7 +200165,7 @@ "id": 10090, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -200028,7 +200174,7 @@ "id": 10091, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -200037,7 +200183,7 @@ "id": 10092, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -200046,7 +200192,7 @@ "id": 10093, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -200055,7 +200201,7 @@ "id": 10094, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -200064,7 +200210,7 @@ "id": 10095, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -200073,7 +200219,7 @@ "id": 10096, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -200082,7 +200228,7 @@ "id": 10097, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -200091,7 +200237,7 @@ "id": 10098, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -200099,8 +200245,8 @@ { "id": 10099, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -200108,8 +200254,8 @@ { "id": 10100, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -200117,8 +200263,8 @@ { "id": 10101, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -200126,8 +200272,8 @@ { "id": 10102, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -200135,8 +200281,8 @@ { "id": 10103, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -200144,8 +200290,8 @@ { "id": 10104, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -200153,8 +200299,8 @@ { "id": 10105, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -200162,8 +200308,8 @@ { "id": 10106, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -200171,8 +200317,8 @@ { "id": 10107, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -200180,8 +200326,8 @@ { "id": 10108, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -200190,7 +200336,7 @@ "id": 10109, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -200199,7 +200345,7 @@ "id": 10110, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -200208,7 +200354,7 @@ "id": 10111, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -200217,7 +200363,7 @@ "id": 10112, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -200226,7 +200372,7 @@ "id": 10113, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -200235,7 +200381,7 @@ "id": 10114, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -200244,7 +200390,7 @@ "id": 10115, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -200253,7 +200399,7 @@ "id": 10116, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -200262,13 +200408,103 @@ "id": 10117, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 10118, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10119, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10120, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10121, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10122, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10123, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10124, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10125, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10126, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10127, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10128, "properties": { "facing": "east", "half": "bottom", @@ -200303,7 +200539,7 @@ }, "states": [ { - "id": 4749, + "id": 4758, "properties": { "shape": "north_south", "waterlogged": "true" @@ -200311,133 +200547,133 @@ }, { "default": true, - "id": 4750, + "id": 4759, "properties": { "shape": "north_south", "waterlogged": "false" } }, - { - "id": 4751, - "properties": { - "shape": "east_west", - "waterlogged": "true" - } - }, - { - "id": 4752, - "properties": { - "shape": "east_west", - "waterlogged": "false" - } - }, - { - "id": 4753, - "properties": { - "shape": "ascending_east", - "waterlogged": "true" - } - }, - { - "id": 4754, - "properties": { - "shape": "ascending_east", - "waterlogged": "false" - } - }, - { - "id": 4755, - "properties": { - "shape": "ascending_west", - "waterlogged": "true" - } - }, - { - "id": 4756, - "properties": { - "shape": "ascending_west", - "waterlogged": "false" - } - }, - { - "id": 4757, - "properties": { - "shape": "ascending_north", - "waterlogged": "true" - } - }, - { - "id": 4758, - "properties": { - "shape": "ascending_north", - "waterlogged": "false" - } - }, - { - "id": 4759, - "properties": { - "shape": "ascending_south", - "waterlogged": "true" - } - }, { "id": 4760, "properties": { - "shape": "ascending_south", - "waterlogged": "false" + "shape": "east_west", + "waterlogged": "true" } }, { "id": 4761, "properties": { - "shape": "south_east", - "waterlogged": "true" + "shape": "east_west", + "waterlogged": "false" } }, { "id": 4762, "properties": { - "shape": "south_east", - "waterlogged": "false" + "shape": "ascending_east", + "waterlogged": "true" } }, { "id": 4763, "properties": { - "shape": "south_west", - "waterlogged": "true" + "shape": "ascending_east", + "waterlogged": "false" } }, { "id": 4764, + "properties": { + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 4765, + "properties": { + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 4766, + "properties": { + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 4767, + "properties": { + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 4768, + "properties": { + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 4769, + "properties": { + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 4770, + "properties": { + "shape": "south_east", + "waterlogged": "true" + } + }, + { + "id": 4771, + "properties": { + "shape": "south_east", + "waterlogged": "false" + } + }, + { + "id": 4772, + "properties": { + "shape": "south_west", + "waterlogged": "true" + } + }, + { + "id": 4773, "properties": { "shape": "south_west", "waterlogged": "false" } }, { - "id": 4765, + "id": 4774, "properties": { "shape": "north_west", "waterlogged": "true" } }, { - "id": 4766, + "id": 4775, "properties": { "shape": "north_west", "waterlogged": "false" } }, { - "id": 4767, + "id": 4776, "properties": { "shape": "north_east", "waterlogged": "true" } }, { - "id": 4768, + "id": 4777, "properties": { "shape": "north_east", "waterlogged": "false" @@ -200453,7 +200689,7 @@ "states": [ { "default": true, - "id": 27572 + "id": 27619 } ] }, @@ -200465,7 +200701,7 @@ "states": [ { "default": true, - "id": 27573 + "id": 27620 } ] }, @@ -200477,7 +200713,7 @@ "states": [ { "default": true, - "id": 27571 + "id": 27618 } ] }, @@ -200510,97 +200746,97 @@ "states": [ { "default": true, - "id": 11862, + "id": 11872, "properties": { "rotation": "0" } }, { - "id": 11863, + "id": 11873, "properties": { "rotation": "1" } }, { - "id": 11864, + "id": 11874, "properties": { "rotation": "2" } }, { - "id": 11865, + "id": 11875, "properties": { "rotation": "3" } }, { - "id": 11866, + "id": 11876, "properties": { "rotation": "4" } }, { - "id": 11867, + "id": 11877, "properties": { "rotation": "5" } }, { - "id": 11868, + "id": 11878, "properties": { "rotation": "6" } }, { - "id": 11869, + "id": 11879, "properties": { "rotation": "7" } }, { - "id": 11870, + "id": 11880, "properties": { "rotation": "8" } }, { - "id": 11871, + "id": 11881, "properties": { "rotation": "9" } }, { - "id": 11872, + "id": 11882, "properties": { "rotation": "10" } }, { - "id": 11873, + "id": 11883, "properties": { "rotation": "11" } }, { - "id": 11874, + "id": 11884, "properties": { "rotation": "12" } }, { - "id": 11875, + "id": 11885, "properties": { "rotation": "13" } }, { - "id": 11876, + "id": 11886, "properties": { "rotation": "14" } }, { - "id": 11877, + "id": 11887, "properties": { "rotation": "15" } @@ -200784,7 +201020,7 @@ }, "states": [ { - "id": 21978, + "id": 21993, "properties": { "candles": "1", "lit": "true", @@ -200792,7 +201028,7 @@ } }, { - "id": 21979, + "id": 21994, "properties": { "candles": "1", "lit": "true", @@ -200800,7 +201036,7 @@ } }, { - "id": 21980, + "id": 21995, "properties": { "candles": "1", "lit": "false", @@ -200809,7 +201045,7 @@ }, { "default": true, - "id": 21981, + "id": 21996, "properties": { "candles": "1", "lit": "false", @@ -200817,7 +201053,7 @@ } }, { - "id": 21982, + "id": 21997, "properties": { "candles": "2", "lit": "true", @@ -200825,7 +201061,7 @@ } }, { - "id": 21983, + "id": 21998, "properties": { "candles": "2", "lit": "true", @@ -200833,7 +201069,7 @@ } }, { - "id": 21984, + "id": 21999, "properties": { "candles": "2", "lit": "false", @@ -200841,7 +201077,7 @@ } }, { - "id": 21985, + "id": 22000, "properties": { "candles": "2", "lit": "false", @@ -200849,7 +201085,7 @@ } }, { - "id": 21986, + "id": 22001, "properties": { "candles": "3", "lit": "true", @@ -200857,7 +201093,7 @@ } }, { - "id": 21987, + "id": 22002, "properties": { "candles": "3", "lit": "true", @@ -200865,7 +201101,7 @@ } }, { - "id": 21988, + "id": 22003, "properties": { "candles": "3", "lit": "false", @@ -200873,7 +201109,7 @@ } }, { - "id": 21989, + "id": 22004, "properties": { "candles": "3", "lit": "false", @@ -200881,7 +201117,7 @@ } }, { - "id": 21990, + "id": 22005, "properties": { "candles": "4", "lit": "true", @@ -200889,7 +201125,7 @@ } }, { - "id": 21991, + "id": 22006, "properties": { "candles": "4", "lit": "true", @@ -200897,7 +201133,7 @@ } }, { - "id": 21992, + "id": 22007, "properties": { "candles": "4", "lit": "false", @@ -200905,7 +201141,7 @@ } }, { - "id": 21993, + "id": 22008, "properties": { "candles": "4", "lit": "false", @@ -200928,14 +201164,14 @@ }, "states": [ { - "id": 22040, + "id": 22055, "properties": { "lit": "true" } }, { "default": true, - "id": 22041, + "id": 22056, "properties": { "lit": "false" } @@ -200951,7 +201187,7 @@ "states": [ { "default": true, - "id": 11621 + "id": 11631 } ] }, @@ -200963,7 +201199,7 @@ "states": [ { "default": true, - "id": 13755 + "id": 13765 } ] }, @@ -200976,7 +201212,7 @@ "states": [ { "default": true, - "id": 13771 + "id": 13781 } ] }, @@ -200996,25 +201232,25 @@ "states": [ { "default": true, - "id": 13733, + "id": 13743, "properties": { "facing": "north" } }, { - "id": 13734, + "id": 13744, "properties": { "facing": "south" } }, { - "id": 13735, + "id": 13745, "properties": { "facing": "west" } }, { - "id": 13736, + "id": 13746, "properties": { "facing": "east" } @@ -201030,7 +201266,7 @@ "states": [ { "default": true, - "id": 2133 + "id": 2136 } ] }, @@ -201068,123 +201304,13 @@ "states": [ { "default": true, - "id": 6846, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6847, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6848, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6849, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6850, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6851, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6852, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6853, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6854, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6855, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { "id": 6856, "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -201193,9 +201319,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, @@ -201204,9 +201330,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "true" } }, @@ -201215,9 +201341,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "false" } }, @@ -201226,9 +201352,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", - "up": "false", + "up": "true", "west": "true" } }, @@ -201237,9 +201363,9 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", - "up": "false", + "up": "true", "west": "false" } }, @@ -201247,10 +201373,10 @@ "id": 6862, "properties": { "down": "true", - "east": "false", + "east": "true", "north": "true", - "south": "true", - "up": "true", + "south": "false", + "up": "false", "west": "true" } }, @@ -201258,10 +201384,10 @@ "id": 6863, "properties": { "down": "true", - "east": "false", + "east": "true", "north": "true", - "south": "true", - "up": "true", + "south": "false", + "up": "false", "west": "false" } }, @@ -201269,10 +201395,10 @@ "id": 6864, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -201280,10 +201406,10 @@ "id": 6865, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, @@ -201291,10 +201417,10 @@ "id": 6866, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "west": "true" } }, @@ -201302,10 +201428,10 @@ "id": 6867, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "west": "false" } }, @@ -201313,10 +201439,10 @@ "id": 6868, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", - "up": "false", + "up": "true", "west": "true" } }, @@ -201324,10 +201450,10 @@ "id": 6869, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", - "up": "false", + "up": "true", "west": "false" } }, @@ -201335,10 +201461,10 @@ "id": 6870, "properties": { "down": "true", - "east": "false", + "east": "true", "north": "false", - "south": "true", - "up": "true", + "south": "false", + "up": "false", "west": "true" } }, @@ -201346,10 +201472,10 @@ "id": 6871, "properties": { "down": "true", - "east": "false", + "east": "true", "north": "false", - "south": "true", - "up": "true", + "south": "false", + "up": "false", "west": "false" } }, @@ -201358,9 +201484,9 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -201369,9 +201495,9 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, @@ -201380,9 +201506,9 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "true" } }, @@ -201391,14 +201517,124 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "false" } }, { "id": 6876, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6877, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6878, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6879, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6880, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6881, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6882, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6883, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6884, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6885, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6886, "properties": { "down": "true", "east": "false", @@ -201409,7 +201645,7 @@ } }, { - "id": 6877, + "id": 6887, "properties": { "down": "true", "east": "false", @@ -201419,124 +201655,14 @@ "west": "false" } }, - { - "id": 6878, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6879, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6880, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6881, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6882, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6883, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6884, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6885, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6886, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6887, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, { "id": 6888, "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -201545,9 +201671,9 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, @@ -201556,9 +201682,9 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "true" } }, @@ -201567,14 +201693,124 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "false" } }, { "id": 6892, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6893, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6894, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6895, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6896, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6897, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6898, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6899, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6900, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6901, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6902, "properties": { "down": "false", "east": "true", @@ -201585,7 +201821,7 @@ } }, { - "id": 6893, + "id": 6903, "properties": { "down": "false", "east": "true", @@ -201595,124 +201831,14 @@ "west": "false" } }, - { - "id": 6894, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6895, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6896, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6897, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6898, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6899, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6900, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6901, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6902, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6903, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, { "id": 6904, "properties": { "down": "false", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -201721,14 +201847,124 @@ "properties": { "down": "false", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, { "id": 6906, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6907, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6908, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6909, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6910, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6911, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6912, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6913, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6914, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6915, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6916, "properties": { "down": "false", "east": "false", @@ -201739,7 +201975,7 @@ } }, { - "id": 6907, + "id": 6917, "properties": { "down": "false", "east": "false", @@ -201750,7 +201986,7 @@ } }, { - "id": 6908, + "id": 6918, "properties": { "down": "false", "east": "false", @@ -201761,7 +201997,7 @@ } }, { - "id": 6909, + "id": 6919, "properties": { "down": "false", "east": "false", @@ -201791,21 +202027,21 @@ }, "states": [ { - "id": 15155, + "id": 15165, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 15156, + "id": 15166, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 15157, + "id": 15167, "properties": { "type": "bottom", "waterlogged": "true" @@ -201813,21 +202049,21 @@ }, { "default": true, - "id": 15158, + "id": 15168, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 15159, + "id": 15169, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 15160, + "id": 15170, "properties": { "type": "double", "waterlogged": "false" @@ -201867,98 +202103,98 @@ ] }, "states": [ - { - "id": 14855, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 14856, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14857, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14858, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14859, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14860, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14861, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14862, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14863, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14864, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 14865, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14866, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14867, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14868, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14869, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14870, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14871, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14872, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14873, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14874, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14875, "properties": { "facing": "north", "half": "bottom", @@ -201968,100 +202204,10 @@ }, { "default": true, - "id": 14866, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14867, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14868, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14869, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14870, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14871, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14872, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14873, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14874, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 14875, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 14876, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -202069,8 +202215,8 @@ { "id": 14877, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -202078,8 +202224,8 @@ { "id": 14878, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -202087,8 +202233,8 @@ { "id": 14879, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -202096,8 +202242,8 @@ { "id": 14880, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -202105,8 +202251,8 @@ { "id": 14881, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -202114,8 +202260,8 @@ { "id": 14882, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -202123,8 +202269,8 @@ { "id": 14883, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -202132,8 +202278,8 @@ { "id": 14884, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -202142,7 +202288,7 @@ "id": 14885, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -202151,7 +202297,7 @@ "id": 14886, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -202160,7 +202306,7 @@ "id": 14887, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -202169,7 +202315,7 @@ "id": 14888, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -202178,7 +202324,7 @@ "id": 14889, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -202187,7 +202333,7 @@ "id": 14890, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -202196,7 +202342,7 @@ "id": 14891, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -202205,7 +202351,7 @@ "id": 14892, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -202214,7 +202360,7 @@ "id": 14893, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -202223,7 +202369,7 @@ "id": 14894, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -202231,8 +202377,8 @@ { "id": 14895, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -202240,8 +202386,8 @@ { "id": 14896, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -202249,8 +202395,8 @@ { "id": 14897, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -202258,8 +202404,8 @@ { "id": 14898, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -202267,8 +202413,8 @@ { "id": 14899, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -202276,8 +202422,8 @@ { "id": 14900, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -202285,8 +202431,8 @@ { "id": 14901, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -202294,8 +202440,8 @@ { "id": 14902, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -202303,8 +202449,8 @@ { "id": 14903, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -202312,8 +202458,8 @@ { "id": 14904, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -202322,7 +202468,7 @@ "id": 14905, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -202331,7 +202477,7 @@ "id": 14906, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -202340,7 +202486,7 @@ "id": 14907, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -202349,7 +202495,7 @@ "id": 14908, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -202358,7 +202504,7 @@ "id": 14909, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -202367,7 +202513,7 @@ "id": 14910, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -202376,7 +202522,7 @@ "id": 14911, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -202385,7 +202531,7 @@ "id": 14912, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -202394,7 +202540,7 @@ "id": 14913, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -202403,7 +202549,7 @@ "id": 14914, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -202411,8 +202557,8 @@ { "id": 14915, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -202420,8 +202566,8 @@ { "id": 14916, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -202429,8 +202575,8 @@ { "id": 14917, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -202438,8 +202584,8 @@ { "id": 14918, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -202447,8 +202593,8 @@ { "id": 14919, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -202456,8 +202602,8 @@ { "id": 14920, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -202465,8 +202611,8 @@ { "id": 14921, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -202474,8 +202620,8 @@ { "id": 14922, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -202483,8 +202629,8 @@ { "id": 14923, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -202492,8 +202638,8 @@ { "id": 14924, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -202502,7 +202648,7 @@ "id": 14925, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -202511,7 +202657,7 @@ "id": 14926, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -202520,7 +202666,7 @@ "id": 14927, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -202529,7 +202675,7 @@ "id": 14928, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -202538,7 +202684,7 @@ "id": 14929, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -202547,7 +202693,7 @@ "id": 14930, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -202556,7 +202702,7 @@ "id": 14931, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -202565,7 +202711,7 @@ "id": 14932, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -202574,13 +202720,103 @@ "id": 14933, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 14934, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14935, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14936, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14937, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14938, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14939, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14940, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14941, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14942, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14943, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14944, "properties": { "facing": "east", "half": "bottom", @@ -202627,7 +202863,7 @@ }, "states": [ { - "id": 18089, + "id": 18099, "properties": { "east": "none", "north": "none", @@ -202638,7 +202874,7 @@ } }, { - "id": 18090, + "id": 18100, "properties": { "east": "none", "north": "none", @@ -202649,7 +202885,7 @@ } }, { - "id": 18091, + "id": 18101, "properties": { "east": "none", "north": "none", @@ -202661,124 +202897,14 @@ }, { "default": true, - "id": 18092, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18093, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18094, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18095, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18096, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18097, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18098, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18099, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18100, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18101, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { "id": 18102, "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -202786,10 +202912,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -202797,10 +202923,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -202808,10 +202934,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -202819,10 +202945,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -202830,10 +202956,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -202841,10 +202967,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -202852,10 +202978,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -202863,10 +202989,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -202875,9 +203001,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -202886,9 +203012,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -202896,10 +203022,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -202907,10 +203033,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -202918,10 +203044,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -202929,10 +203055,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -202940,10 +203066,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -202951,10 +203077,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -202962,10 +203088,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -202973,10 +203099,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -202984,10 +203110,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -202995,10 +203121,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -203007,9 +203133,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -203018,130 +203144,130 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 18125, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 18126, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 18127, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 18128, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18129, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 18130, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18131, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18132, - "properties": { - "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 18133, + "id": 18131, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 18134, + "id": 18132, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 18133, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18134, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 18135, "properties": { "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -203150,9 +203276,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -203160,10 +203286,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -203171,10 +203297,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -203182,10 +203308,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -203193,10 +203319,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -203204,10 +203330,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -203215,10 +203341,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -203226,10 +203352,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -203237,10 +203363,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -203248,10 +203374,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -203259,10 +203385,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -203271,9 +203397,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -203282,9 +203408,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -203292,10 +203418,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -203303,10 +203429,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -203314,10 +203440,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -203325,10 +203451,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -203336,10 +203462,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -203347,10 +203473,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -203358,10 +203484,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -203369,10 +203495,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -203380,10 +203506,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -203391,10 +203517,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -203403,9 +203529,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -203414,130 +203540,130 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 18161, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 18162, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 18163, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 18164, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18165, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 18166, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18167, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18168, - "properties": { - "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 18169, + "id": 18167, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 18170, + "id": 18168, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 18169, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18170, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 18171, "properties": { "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -203546,9 +203672,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -203556,10 +203682,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -203567,10 +203693,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -203578,10 +203704,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -203589,10 +203715,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -203600,10 +203726,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -203611,10 +203737,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -203622,10 +203748,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -203633,10 +203759,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -203644,10 +203770,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -203655,10 +203781,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -203667,9 +203793,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -203678,9 +203804,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -203688,10 +203814,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -203699,10 +203825,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -203710,10 +203836,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -203721,10 +203847,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -203732,10 +203858,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -203743,10 +203869,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -203754,10 +203880,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -203765,10 +203891,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -203776,10 +203902,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -203787,14 +203913,124 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18195, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18196, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18197, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18198, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18199, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18200, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18201, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18202, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18203, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18204, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18205, "properties": { "east": "none", "north": "tall", @@ -203805,7 +204041,7 @@ } }, { - "id": 18196, + "id": 18206, "properties": { "east": "none", "north": "tall", @@ -203815,125 +204051,15 @@ "west": "tall" } }, - { - "id": 18197, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18198, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18199, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18200, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18201, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18202, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18203, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18204, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18205, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18206, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 18207, "properties": { "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -203942,9 +204068,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -203952,10 +204078,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -203963,10 +204089,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -203974,10 +204100,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -203985,10 +204111,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -203996,10 +204122,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -204007,10 +204133,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -204018,10 +204144,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -204029,10 +204155,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -204040,10 +204166,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -204051,10 +204177,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -204063,9 +204189,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -204074,9 +204200,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -204084,10 +204210,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -204095,10 +204221,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -204106,10 +204232,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -204117,10 +204243,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -204128,10 +204254,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -204139,10 +204265,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -204150,10 +204276,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -204161,10 +204287,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -204172,10 +204298,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -204183,10 +204309,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -204195,9 +204321,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -204206,130 +204332,130 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 18233, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 18234, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 18235, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 18236, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18237, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 18238, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18239, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18240, - "properties": { - "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 18241, + "id": 18239, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 18242, + "id": 18240, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 18241, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18242, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 18243, "properties": { "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -204338,9 +204464,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -204348,10 +204474,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -204359,10 +204485,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -204370,10 +204496,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -204381,10 +204507,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -204392,10 +204518,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -204403,10 +204529,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -204414,10 +204540,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -204425,10 +204551,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -204436,10 +204562,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -204447,10 +204573,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -204459,9 +204585,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -204470,9 +204596,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -204480,10 +204606,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -204491,10 +204617,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -204502,10 +204628,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -204513,10 +204639,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -204524,10 +204650,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -204535,10 +204661,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -204546,10 +204672,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -204557,10 +204683,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -204568,10 +204694,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -204579,10 +204705,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -204591,9 +204717,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -204602,130 +204728,130 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 18269, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 18270, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 18271, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 18272, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18273, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 18274, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18275, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18276, - "properties": { - "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 18277, + "id": 18275, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 18278, + "id": 18276, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 18277, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18278, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 18279, "properties": { "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -204734,9 +204860,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -204744,10 +204870,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -204755,10 +204881,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -204766,10 +204892,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -204777,10 +204903,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -204788,10 +204914,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -204799,10 +204925,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -204810,10 +204936,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -204821,10 +204947,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -204832,10 +204958,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -204843,10 +204969,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -204855,9 +204981,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -204866,9 +204992,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -204876,10 +205002,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -204887,10 +205013,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -204898,10 +205024,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -204909,10 +205035,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -204920,10 +205046,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -204931,10 +205057,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -204942,10 +205068,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -204953,10 +205079,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -204964,10 +205090,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -204975,14 +205101,124 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18303, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18304, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18305, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18306, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18307, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18308, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18309, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18310, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18311, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18312, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18313, "properties": { "east": "low", "north": "tall", @@ -204993,7 +205229,7 @@ } }, { - "id": 18304, + "id": 18314, "properties": { "east": "low", "north": "tall", @@ -205003,125 +205239,15 @@ "west": "tall" } }, - { - "id": 18305, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18306, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18307, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18308, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18309, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18310, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18311, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18312, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18313, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18314, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 18315, "properties": { "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -205130,9 +205256,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -205140,10 +205266,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -205151,10 +205277,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -205162,10 +205288,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -205173,10 +205299,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -205184,10 +205310,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -205195,10 +205321,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -205206,10 +205332,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -205217,10 +205343,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -205228,10 +205354,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -205239,10 +205365,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -205251,9 +205377,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -205262,9 +205388,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -205272,10 +205398,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -205283,10 +205409,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -205294,10 +205420,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -205305,10 +205431,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -205316,10 +205442,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -205327,10 +205453,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -205338,10 +205464,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -205349,10 +205475,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -205360,10 +205486,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -205371,14 +205497,124 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18339, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18340, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18341, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18342, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18343, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18344, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18345, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18346, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18347, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18348, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18349, "properties": { "east": "tall", "north": "none", @@ -205389,7 +205625,7 @@ } }, { - "id": 18340, + "id": 18350, "properties": { "east": "tall", "north": "none", @@ -205399,125 +205635,15 @@ "west": "tall" } }, - { - "id": 18341, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18342, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18343, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18344, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18345, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18346, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18347, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18348, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18349, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18350, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 18351, "properties": { "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -205526,9 +205652,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -205536,10 +205662,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -205547,10 +205673,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -205558,10 +205684,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -205569,10 +205695,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -205580,10 +205706,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -205591,10 +205717,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -205602,10 +205728,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -205613,10 +205739,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -205624,10 +205750,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -205635,10 +205761,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -205647,9 +205773,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -205658,9 +205784,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -205668,10 +205794,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -205679,10 +205805,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -205690,10 +205816,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -205701,10 +205827,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -205712,10 +205838,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -205723,10 +205849,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -205734,10 +205860,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -205745,10 +205871,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -205756,10 +205882,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -205767,14 +205893,124 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18375, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18376, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18377, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18378, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18379, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18380, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18381, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18382, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18383, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18384, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18385, "properties": { "east": "tall", "north": "low", @@ -205785,7 +206021,7 @@ } }, { - "id": 18376, + "id": 18386, "properties": { "east": "tall", "north": "low", @@ -205795,125 +206031,15 @@ "west": "tall" } }, - { - "id": 18377, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18378, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18379, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18380, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18381, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18382, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18383, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18384, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18385, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18386, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 18387, "properties": { "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -205922,9 +206048,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -205932,10 +206058,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -205943,10 +206069,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -205954,10 +206080,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -205965,10 +206091,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -205976,10 +206102,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -205987,10 +206113,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -205998,10 +206124,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -206009,10 +206135,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -206020,10 +206146,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -206031,14 +206157,124 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18399, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18400, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18401, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18402, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18403, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18404, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18405, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18406, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18407, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18408, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18409, "properties": { "east": "tall", "north": "tall", @@ -206049,7 +206285,7 @@ } }, { - "id": 18400, + "id": 18410, "properties": { "east": "tall", "north": "tall", @@ -206059,118 +206295,118 @@ "west": "tall" } }, - { - "id": 18401, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18402, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18403, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18404, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18405, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18406, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18407, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18408, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18409, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18410, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 18411, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18412, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18413, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18414, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18415, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18416, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18417, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18418, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18419, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18420, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18421, "properties": { "east": "tall", "north": "tall", @@ -206181,7 +206417,7 @@ } }, { - "id": 18412, + "id": 18422, "properties": { "east": "tall", "north": "tall", @@ -206201,13 +206437,13 @@ "states": [ { "default": true, - "id": 13558 + "id": 13568 } ] }, "minecraft:red_sand": { "definition": { - "type": "minecraft:colored_falling", + "type": "minecraft:sand", "falling_dust_color": "#00A95821", "properties": {} }, @@ -206226,7 +206462,7 @@ "states": [ { "default": true, - "id": 11958 + "id": 11968 } ] }, @@ -206248,21 +206484,21 @@ }, "states": [ { - "id": 12173, + "id": 12183, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12174, + "id": 12184, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12175, + "id": 12185, "properties": { "type": "bottom", "waterlogged": "true" @@ -206270,21 +206506,21 @@ }, { "default": true, - "id": 12176, + "id": 12186, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12177, + "id": 12187, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12178, + "id": 12188, "properties": { "type": "double", "waterlogged": "false" @@ -206324,98 +206560,98 @@ ] }, "states": [ - { - "id": 11961, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 11962, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 11963, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 11964, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 11965, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 11966, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 11967, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 11968, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 11969, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11970, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 11971, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11972, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11973, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11974, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11975, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11976, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11977, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11978, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11979, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11980, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11981, "properties": { "facing": "north", "half": "bottom", @@ -206425,100 +206661,10 @@ }, { "default": true, - "id": 11972, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 11973, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 11974, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 11975, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 11976, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 11977, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 11978, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 11979, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11980, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 11981, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 11982, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -206526,8 +206672,8 @@ { "id": 11983, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -206535,8 +206681,8 @@ { "id": 11984, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -206544,8 +206690,8 @@ { "id": 11985, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -206553,8 +206699,8 @@ { "id": 11986, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -206562,8 +206708,8 @@ { "id": 11987, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -206571,8 +206717,8 @@ { "id": 11988, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -206580,8 +206726,8 @@ { "id": 11989, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -206589,8 +206735,8 @@ { "id": 11990, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -206599,7 +206745,7 @@ "id": 11991, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -206608,7 +206754,7 @@ "id": 11992, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -206617,7 +206763,7 @@ "id": 11993, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -206626,7 +206772,7 @@ "id": 11994, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -206635,7 +206781,7 @@ "id": 11995, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -206644,7 +206790,7 @@ "id": 11996, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -206653,7 +206799,7 @@ "id": 11997, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -206662,7 +206808,7 @@ "id": 11998, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -206671,7 +206817,7 @@ "id": 11999, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -206680,7 +206826,7 @@ "id": 12000, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -206688,8 +206834,8 @@ { "id": 12001, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -206697,8 +206843,8 @@ { "id": 12002, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -206706,8 +206852,8 @@ { "id": 12003, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -206715,8 +206861,8 @@ { "id": 12004, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -206724,8 +206870,8 @@ { "id": 12005, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -206733,8 +206879,8 @@ { "id": 12006, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -206742,8 +206888,8 @@ { "id": 12007, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -206751,8 +206897,8 @@ { "id": 12008, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -206760,8 +206906,8 @@ { "id": 12009, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -206769,8 +206915,8 @@ { "id": 12010, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -206779,7 +206925,7 @@ "id": 12011, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -206788,7 +206934,7 @@ "id": 12012, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -206797,7 +206943,7 @@ "id": 12013, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -206806,7 +206952,7 @@ "id": 12014, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -206815,7 +206961,7 @@ "id": 12015, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -206824,7 +206970,7 @@ "id": 12016, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -206833,7 +206979,7 @@ "id": 12017, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -206842,7 +206988,7 @@ "id": 12018, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -206851,7 +206997,7 @@ "id": 12019, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -206860,7 +207006,7 @@ "id": 12020, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -206868,8 +207014,8 @@ { "id": 12021, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -206877,8 +207023,8 @@ { "id": 12022, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -206886,8 +207032,8 @@ { "id": 12023, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -206895,8 +207041,8 @@ { "id": 12024, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -206904,8 +207050,8 @@ { "id": 12025, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -206913,8 +207059,8 @@ { "id": 12026, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -206922,8 +207068,8 @@ { "id": 12027, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -206931,8 +207077,8 @@ { "id": 12028, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -206940,8 +207086,8 @@ { "id": 12029, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -206949,8 +207095,8 @@ { "id": 12030, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -206959,7 +207105,7 @@ "id": 12031, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -206968,7 +207114,7 @@ "id": 12032, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -206977,7 +207123,7 @@ "id": 12033, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -206986,7 +207132,7 @@ "id": 12034, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -206995,7 +207141,7 @@ "id": 12035, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -207004,7 +207150,7 @@ "id": 12036, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -207013,7 +207159,7 @@ "id": 12037, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -207022,7 +207168,7 @@ "id": 12038, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -207031,13 +207177,103 @@ "id": 12039, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 12040, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12041, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12042, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12043, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12044, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12045, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12046, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12047, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12048, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12049, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12050, "properties": { "facing": "east", "half": "bottom", @@ -207084,7 +207320,7 @@ }, "states": [ { - "id": 15821, + "id": 15831, "properties": { "east": "none", "north": "none", @@ -207095,7 +207331,7 @@ } }, { - "id": 15822, + "id": 15832, "properties": { "east": "none", "north": "none", @@ -207106,7 +207342,7 @@ } }, { - "id": 15823, + "id": 15833, "properties": { "east": "none", "north": "none", @@ -207118,124 +207354,14 @@ }, { "default": true, - "id": 15824, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15825, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15826, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15827, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15828, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15829, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15830, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15831, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15832, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15833, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { "id": 15834, "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -207243,10 +207369,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -207254,10 +207380,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -207265,10 +207391,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -207276,10 +207402,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -207287,10 +207413,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -207298,10 +207424,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -207309,10 +207435,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -207320,10 +207446,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -207332,9 +207458,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -207343,9 +207469,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -207353,10 +207479,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -207364,10 +207490,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -207375,10 +207501,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -207386,10 +207512,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -207397,10 +207523,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -207408,10 +207534,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -207419,10 +207545,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -207430,10 +207556,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -207441,10 +207567,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -207452,10 +207578,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -207464,9 +207590,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -207475,130 +207601,130 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 15857, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 15858, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 15859, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 15860, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15861, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 15862, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15863, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15864, - "properties": { - "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 15865, + "id": 15863, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 15866, + "id": 15864, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 15865, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15866, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 15867, "properties": { "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -207607,9 +207733,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -207617,10 +207743,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -207628,10 +207754,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -207639,10 +207765,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -207650,10 +207776,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -207661,10 +207787,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -207672,10 +207798,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -207683,10 +207809,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -207694,10 +207820,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -207705,10 +207831,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -207716,10 +207842,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -207728,9 +207854,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -207739,9 +207865,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -207749,10 +207875,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -207760,10 +207886,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -207771,10 +207897,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -207782,10 +207908,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -207793,10 +207919,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -207804,10 +207930,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -207815,10 +207941,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -207826,10 +207952,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -207837,10 +207963,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -207848,10 +207974,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -207860,9 +207986,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -207871,130 +207997,130 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 15893, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 15894, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 15895, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 15896, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15897, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 15898, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15899, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15900, - "properties": { - "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 15901, + "id": 15899, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 15902, + "id": 15900, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 15901, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15902, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 15903, "properties": { "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -208003,9 +208129,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -208013,10 +208139,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -208024,10 +208150,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -208035,10 +208161,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -208046,10 +208172,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -208057,10 +208183,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -208068,10 +208194,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -208079,10 +208205,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -208090,10 +208216,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -208101,10 +208227,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -208112,10 +208238,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -208124,9 +208250,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -208135,9 +208261,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -208145,10 +208271,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -208156,10 +208282,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -208167,10 +208293,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -208178,10 +208304,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -208189,10 +208315,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -208200,10 +208326,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -208211,10 +208337,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -208222,10 +208348,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -208233,10 +208359,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -208244,14 +208370,124 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15927, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15928, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15929, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15930, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15931, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15932, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15933, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15934, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15935, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15936, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15937, "properties": { "east": "none", "north": "tall", @@ -208262,7 +208498,7 @@ } }, { - "id": 15928, + "id": 15938, "properties": { "east": "none", "north": "tall", @@ -208272,125 +208508,15 @@ "west": "tall" } }, - { - "id": 15929, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15930, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15931, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15932, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15933, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15934, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15935, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15936, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15937, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15938, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 15939, "properties": { "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -208399,9 +208525,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -208409,10 +208535,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -208420,10 +208546,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -208431,10 +208557,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -208442,10 +208568,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -208453,10 +208579,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -208464,10 +208590,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -208475,10 +208601,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -208486,10 +208612,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -208497,10 +208623,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -208508,10 +208634,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -208520,9 +208646,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -208531,9 +208657,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -208541,10 +208667,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -208552,10 +208678,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -208563,10 +208689,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -208574,10 +208700,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -208585,10 +208711,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -208596,10 +208722,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -208607,10 +208733,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -208618,10 +208744,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -208629,10 +208755,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -208640,10 +208766,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -208652,9 +208778,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -208663,130 +208789,130 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 15965, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 15966, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 15967, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 15968, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 15969, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 15970, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15971, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15972, - "properties": { - "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 15973, + "id": 15971, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 15974, + "id": 15972, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 15973, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15974, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 15975, "properties": { "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -208795,9 +208921,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -208805,10 +208931,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -208816,10 +208942,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -208827,10 +208953,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -208838,10 +208964,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -208849,10 +208975,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -208860,10 +208986,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -208871,10 +208997,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -208882,10 +209008,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -208893,10 +209019,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -208904,10 +209030,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -208916,9 +209042,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -208927,9 +209053,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -208937,10 +209063,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -208948,10 +209074,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -208959,10 +209085,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -208970,10 +209096,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -208981,10 +209107,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -208992,10 +209118,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -209003,10 +209129,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -209014,10 +209140,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -209025,10 +209151,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -209036,10 +209162,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -209048,9 +209174,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -209059,130 +209185,130 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 16001, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 16002, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 16003, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 16004, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16005, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 16006, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16007, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16008, - "properties": { - "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 16009, + "id": 16007, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 16010, + "id": 16008, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 16009, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16010, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 16011, "properties": { "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -209191,9 +209317,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -209201,10 +209327,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -209212,10 +209338,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -209223,10 +209349,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -209234,10 +209360,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -209245,10 +209371,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -209256,10 +209382,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -209267,10 +209393,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -209278,10 +209404,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -209289,10 +209415,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -209300,10 +209426,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -209312,9 +209438,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -209323,9 +209449,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -209333,10 +209459,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -209344,10 +209470,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -209355,10 +209481,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -209366,10 +209492,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -209377,10 +209503,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -209388,10 +209514,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -209399,10 +209525,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -209410,10 +209536,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -209421,10 +209547,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -209432,14 +209558,124 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16035, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16036, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16037, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16038, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16039, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16040, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16041, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16042, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16043, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16044, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16045, "properties": { "east": "low", "north": "tall", @@ -209450,7 +209686,7 @@ } }, { - "id": 16036, + "id": 16046, "properties": { "east": "low", "north": "tall", @@ -209460,125 +209696,15 @@ "west": "tall" } }, - { - "id": 16037, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16038, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16039, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16040, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16041, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16042, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16043, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16044, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16045, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16046, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 16047, "properties": { "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -209587,9 +209713,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -209597,10 +209723,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -209608,10 +209734,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -209619,10 +209745,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -209630,10 +209756,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -209641,10 +209767,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -209652,10 +209778,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -209663,10 +209789,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -209674,10 +209800,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -209685,10 +209811,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -209696,10 +209822,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -209708,9 +209834,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -209719,9 +209845,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -209729,10 +209855,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -209740,10 +209866,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -209751,10 +209877,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -209762,10 +209888,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -209773,10 +209899,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -209784,10 +209910,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -209795,10 +209921,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -209806,10 +209932,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -209817,10 +209943,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -209828,14 +209954,124 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16071, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16072, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16073, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16074, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16075, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16076, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16077, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16078, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16079, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16080, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16081, "properties": { "east": "tall", "north": "none", @@ -209846,7 +210082,7 @@ } }, { - "id": 16072, + "id": 16082, "properties": { "east": "tall", "north": "none", @@ -209856,125 +210092,15 @@ "west": "tall" } }, - { - "id": 16073, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16074, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16075, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16076, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16077, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16078, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16079, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16080, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16081, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16082, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 16083, "properties": { "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -209983,9 +210109,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -209993,10 +210119,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -210004,10 +210130,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -210015,10 +210141,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -210026,10 +210152,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -210037,10 +210163,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -210048,10 +210174,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -210059,10 +210185,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -210070,10 +210196,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -210081,10 +210207,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -210092,10 +210218,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -210104,9 +210230,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -210115,9 +210241,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -210125,10 +210251,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -210136,10 +210262,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -210147,10 +210273,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -210158,10 +210284,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -210169,10 +210295,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -210180,10 +210306,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -210191,10 +210317,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -210202,10 +210328,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -210213,10 +210339,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -210224,14 +210350,124 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16107, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16108, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16109, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16110, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16111, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16112, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16113, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16114, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16115, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16116, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16117, "properties": { "east": "tall", "north": "low", @@ -210242,7 +210478,7 @@ } }, { - "id": 16108, + "id": 16118, "properties": { "east": "tall", "north": "low", @@ -210252,125 +210488,15 @@ "west": "tall" } }, - { - "id": 16109, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16110, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16111, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16112, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16113, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16114, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16115, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16116, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16117, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16118, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 16119, "properties": { "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -210379,9 +210505,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -210389,10 +210515,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -210400,10 +210526,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -210411,10 +210537,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -210422,10 +210548,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -210433,10 +210559,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -210444,10 +210570,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -210455,10 +210581,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -210466,10 +210592,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -210477,10 +210603,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -210488,14 +210614,124 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16131, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16132, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16133, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16134, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16135, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16136, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16137, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16138, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16139, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16140, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16141, "properties": { "east": "tall", "north": "tall", @@ -210506,7 +210742,7 @@ } }, { - "id": 16132, + "id": 16142, "properties": { "east": "tall", "north": "tall", @@ -210516,118 +210752,118 @@ "west": "tall" } }, - { - "id": 16133, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16134, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16135, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16136, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16137, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16138, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16139, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16140, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16141, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16142, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 16143, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16144, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16145, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16146, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16147, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16148, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16149, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16150, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16151, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16152, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16153, "properties": { "east": "tall", "north": "tall", @@ -210638,7 +210874,7 @@ } }, { - "id": 16144, + "id": 16154, "properties": { "east": "tall", "north": "tall", @@ -210668,38 +210904,38 @@ }, "states": [ { - "id": 13665, + "id": 13675, "properties": { "facing": "north" } }, { - "id": 13666, + "id": 13676, "properties": { "facing": "east" } }, { - "id": 13667, + "id": 13677, "properties": { "facing": "south" } }, { - "id": 13668, + "id": 13678, "properties": { "facing": "west" } }, { "default": true, - "id": 13669, + "id": 13679, "properties": { "facing": "up" } }, { - "id": 13670, + "id": 13680, "properties": { "facing": "down" } @@ -210715,7 +210951,7 @@ "states": [ { "default": true, - "id": 6128 + "id": 6138 } ] }, @@ -210748,113 +210984,13 @@ ] }, "states": [ - { - "id": 10619, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10620, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10621, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10622, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10623, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10624, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10625, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10626, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10627, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10628, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10629, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -210862,9 +210998,9 @@ "id": 10630, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -210872,9 +211008,9 @@ "id": 10631, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -210882,14 +211018,114 @@ "id": 10632, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 10633, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10634, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10635, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10636, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10637, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10638, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10639, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10640, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10641, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10642, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10643, "properties": { "east": "true", "north": "false", @@ -210899,7 +211135,7 @@ } }, { - "id": 10634, + "id": 10644, "properties": { "east": "true", "north": "false", @@ -210908,118 +211144,118 @@ "west": "false" } }, - { - "id": 10635, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10636, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10637, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10638, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10639, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10640, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10641, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10642, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10643, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10644, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10645, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 10646, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10647, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10648, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10649, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10650, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10651, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10652, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10653, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10654, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10655, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10656, "properties": { "east": "false", "north": "false", @@ -211029,7 +211265,7 @@ } }, { - "id": 10647, + "id": 10657, "properties": { "east": "false", "north": "false", @@ -211039,7 +211275,7 @@ } }, { - "id": 10648, + "id": 10658, "properties": { "east": "false", "north": "false", @@ -211049,7 +211285,7 @@ } }, { - "id": 10649, + "id": 10659, "properties": { "east": "false", "north": "false", @@ -211060,7 +211296,7 @@ }, { "default": true, - "id": 10650, + "id": 10660, "properties": { "east": "false", "north": "false", @@ -211073,13 +211309,13 @@ }, "minecraft:red_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 10169 + "id": 10179 } ] }, @@ -211097,7 +211333,7 @@ "states": [ { "default": true, - "id": 2124 + "id": 2127 } ] }, @@ -211118,25 +211354,25 @@ "states": [ { "default": true, - "id": 11950, + "id": 11960, "properties": { "facing": "north" } }, { - "id": 11951, + "id": 11961, "properties": { "facing": "south" } }, { - "id": 11952, + "id": 11962, "properties": { "facing": "west" } }, { - "id": 11953, + "id": 11963, "properties": { "facing": "east" } @@ -211151,7 +211387,7 @@ "states": [ { "default": true, - "id": 2104 + "id": 2107 } ] }, @@ -211163,7 +211399,7 @@ "states": [ { "default": true, - "id": 10022 + "id": 10032 } ] }, @@ -211180,14 +211416,14 @@ }, "states": [ { - "id": 8191, + "id": 8201, "properties": { "lit": "true" } }, { "default": true, - "id": 8192, + "id": 8202, "properties": { "lit": "false" } @@ -211207,14 +211443,14 @@ }, "states": [ { - "id": 5903, + "id": 5912, "properties": { "lit": "true" } }, { "default": true, - "id": 5904, + "id": 5913, "properties": { "lit": "false" } @@ -211235,13 +211471,13 @@ "states": [ { "default": true, - "id": 5907, + "id": 5916, "properties": { "lit": "true" } }, { - "id": 5908, + "id": 5917, "properties": { "lit": "false" } @@ -211268,56 +211504,56 @@ "states": [ { "default": true, - "id": 5909, + "id": 5918, "properties": { "facing": "north", "lit": "true" } }, { - "id": 5910, + "id": 5919, "properties": { "facing": "north", "lit": "false" } }, { - "id": 5911, + "id": 5920, "properties": { "facing": "south", "lit": "true" } }, { - "id": 5912, + "id": 5921, "properties": { "facing": "south", "lit": "false" } }, { - "id": 5913, + "id": 5922, "properties": { "facing": "west", "lit": "true" } }, { - "id": 5914, + "id": 5923, "properties": { "facing": "west", "lit": "false" } }, { - "id": 5915, + "id": 5924, "properties": { "facing": "east", "lit": "true" } }, { - "id": 5916, + "id": 5925, "properties": { "facing": "east", "lit": "false" @@ -211371,102 +211607,12 @@ ] }, "states": [ - { - "id": 3033, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 3034, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 3035, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 3036, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 3037, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 3038, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 3039, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 3040, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 3041, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "none" - } - }, { "id": 3042, "properties": { "east": "up", "north": "up", - "power": "1", + "power": "0", "south": "up", "west": "up" } @@ -211476,7 +211622,7 @@ "properties": { "east": "up", "north": "up", - "power": "1", + "power": "0", "south": "up", "west": "side" } @@ -211486,7 +211632,7 @@ "properties": { "east": "up", "north": "up", - "power": "1", + "power": "0", "south": "up", "west": "none" } @@ -211496,7 +211642,7 @@ "properties": { "east": "up", "north": "up", - "power": "1", + "power": "0", "south": "side", "west": "up" } @@ -211506,7 +211652,7 @@ "properties": { "east": "up", "north": "up", - "power": "1", + "power": "0", "south": "side", "west": "side" } @@ -211516,7 +211662,7 @@ "properties": { "east": "up", "north": "up", - "power": "1", + "power": "0", "south": "side", "west": "none" } @@ -211526,7 +211672,7 @@ "properties": { "east": "up", "north": "up", - "power": "1", + "power": "0", "south": "none", "west": "up" } @@ -211536,7 +211682,7 @@ "properties": { "east": "up", "north": "up", - "power": "1", + "power": "0", "south": "none", "west": "side" } @@ -211546,7 +211692,7 @@ "properties": { "east": "up", "north": "up", - "power": "1", + "power": "0", "south": "none", "west": "none" } @@ -211556,7 +211702,7 @@ "properties": { "east": "up", "north": "up", - "power": "2", + "power": "1", "south": "up", "west": "up" } @@ -211566,7 +211712,7 @@ "properties": { "east": "up", "north": "up", - "power": "2", + "power": "1", "south": "up", "west": "side" } @@ -211576,7 +211722,7 @@ "properties": { "east": "up", "north": "up", - "power": "2", + "power": "1", "south": "up", "west": "none" } @@ -211586,7 +211732,7 @@ "properties": { "east": "up", "north": "up", - "power": "2", + "power": "1", "south": "side", "west": "up" } @@ -211596,7 +211742,7 @@ "properties": { "east": "up", "north": "up", - "power": "2", + "power": "1", "south": "side", "west": "side" } @@ -211606,7 +211752,7 @@ "properties": { "east": "up", "north": "up", - "power": "2", + "power": "1", "south": "side", "west": "none" } @@ -211616,7 +211762,7 @@ "properties": { "east": "up", "north": "up", - "power": "2", + "power": "1", "south": "none", "west": "up" } @@ -211626,7 +211772,7 @@ "properties": { "east": "up", "north": "up", - "power": "2", + "power": "1", "south": "none", "west": "side" } @@ -211636,7 +211782,7 @@ "properties": { "east": "up", "north": "up", - "power": "2", + "power": "1", "south": "none", "west": "none" } @@ -211646,7 +211792,7 @@ "properties": { "east": "up", "north": "up", - "power": "3", + "power": "2", "south": "up", "west": "up" } @@ -211656,7 +211802,7 @@ "properties": { "east": "up", "north": "up", - "power": "3", + "power": "2", "south": "up", "west": "side" } @@ -211666,7 +211812,7 @@ "properties": { "east": "up", "north": "up", - "power": "3", + "power": "2", "south": "up", "west": "none" } @@ -211676,7 +211822,7 @@ "properties": { "east": "up", "north": "up", - "power": "3", + "power": "2", "south": "side", "west": "up" } @@ -211686,7 +211832,7 @@ "properties": { "east": "up", "north": "up", - "power": "3", + "power": "2", "south": "side", "west": "side" } @@ -211696,7 +211842,7 @@ "properties": { "east": "up", "north": "up", - "power": "3", + "power": "2", "south": "side", "west": "none" } @@ -211706,7 +211852,7 @@ "properties": { "east": "up", "north": "up", - "power": "3", + "power": "2", "south": "none", "west": "up" } @@ -211716,7 +211862,7 @@ "properties": { "east": "up", "north": "up", - "power": "3", + "power": "2", "south": "none", "west": "side" } @@ -211726,7 +211872,7 @@ "properties": { "east": "up", "north": "up", - "power": "3", + "power": "2", "south": "none", "west": "none" } @@ -211736,7 +211882,7 @@ "properties": { "east": "up", "north": "up", - "power": "4", + "power": "3", "south": "up", "west": "up" } @@ -211746,7 +211892,7 @@ "properties": { "east": "up", "north": "up", - "power": "4", + "power": "3", "south": "up", "west": "side" } @@ -211756,7 +211902,7 @@ "properties": { "east": "up", "north": "up", - "power": "4", + "power": "3", "south": "up", "west": "none" } @@ -211766,7 +211912,7 @@ "properties": { "east": "up", "north": "up", - "power": "4", + "power": "3", "south": "side", "west": "up" } @@ -211776,7 +211922,7 @@ "properties": { "east": "up", "north": "up", - "power": "4", + "power": "3", "south": "side", "west": "side" } @@ -211786,7 +211932,7 @@ "properties": { "east": "up", "north": "up", - "power": "4", + "power": "3", "south": "side", "west": "none" } @@ -211796,7 +211942,7 @@ "properties": { "east": "up", "north": "up", - "power": "4", + "power": "3", "south": "none", "west": "up" } @@ -211806,7 +211952,7 @@ "properties": { "east": "up", "north": "up", - "power": "4", + "power": "3", "south": "none", "west": "side" } @@ -211816,7 +211962,7 @@ "properties": { "east": "up", "north": "up", - "power": "4", + "power": "3", "south": "none", "west": "none" } @@ -211826,7 +211972,7 @@ "properties": { "east": "up", "north": "up", - "power": "5", + "power": "4", "south": "up", "west": "up" } @@ -211836,7 +211982,7 @@ "properties": { "east": "up", "north": "up", - "power": "5", + "power": "4", "south": "up", "west": "side" } @@ -211846,7 +211992,7 @@ "properties": { "east": "up", "north": "up", - "power": "5", + "power": "4", "south": "up", "west": "none" } @@ -211856,7 +212002,7 @@ "properties": { "east": "up", "north": "up", - "power": "5", + "power": "4", "south": "side", "west": "up" } @@ -211866,7 +212012,7 @@ "properties": { "east": "up", "north": "up", - "power": "5", + "power": "4", "south": "side", "west": "side" } @@ -211876,7 +212022,7 @@ "properties": { "east": "up", "north": "up", - "power": "5", + "power": "4", "south": "side", "west": "none" } @@ -211886,7 +212032,7 @@ "properties": { "east": "up", "north": "up", - "power": "5", + "power": "4", "south": "none", "west": "up" } @@ -211896,7 +212042,7 @@ "properties": { "east": "up", "north": "up", - "power": "5", + "power": "4", "south": "none", "west": "side" } @@ -211906,7 +212052,7 @@ "properties": { "east": "up", "north": "up", - "power": "5", + "power": "4", "south": "none", "west": "none" } @@ -211916,7 +212062,7 @@ "properties": { "east": "up", "north": "up", - "power": "6", + "power": "5", "south": "up", "west": "up" } @@ -211926,7 +212072,7 @@ "properties": { "east": "up", "north": "up", - "power": "6", + "power": "5", "south": "up", "west": "side" } @@ -211936,7 +212082,7 @@ "properties": { "east": "up", "north": "up", - "power": "6", + "power": "5", "south": "up", "west": "none" } @@ -211946,7 +212092,7 @@ "properties": { "east": "up", "north": "up", - "power": "6", + "power": "5", "south": "side", "west": "up" } @@ -211956,7 +212102,7 @@ "properties": { "east": "up", "north": "up", - "power": "6", + "power": "5", "south": "side", "west": "side" } @@ -211966,7 +212112,7 @@ "properties": { "east": "up", "north": "up", - "power": "6", + "power": "5", "south": "side", "west": "none" } @@ -211976,7 +212122,7 @@ "properties": { "east": "up", "north": "up", - "power": "6", + "power": "5", "south": "none", "west": "up" } @@ -211986,7 +212132,7 @@ "properties": { "east": "up", "north": "up", - "power": "6", + "power": "5", "south": "none", "west": "side" } @@ -211996,7 +212142,7 @@ "properties": { "east": "up", "north": "up", - "power": "6", + "power": "5", "south": "none", "west": "none" } @@ -212006,7 +212152,7 @@ "properties": { "east": "up", "north": "up", - "power": "7", + "power": "6", "south": "up", "west": "up" } @@ -212016,7 +212162,7 @@ "properties": { "east": "up", "north": "up", - "power": "7", + "power": "6", "south": "up", "west": "side" } @@ -212026,7 +212172,7 @@ "properties": { "east": "up", "north": "up", - "power": "7", + "power": "6", "south": "up", "west": "none" } @@ -212036,7 +212182,7 @@ "properties": { "east": "up", "north": "up", - "power": "7", + "power": "6", "south": "side", "west": "up" } @@ -212046,7 +212192,7 @@ "properties": { "east": "up", "north": "up", - "power": "7", + "power": "6", "south": "side", "west": "side" } @@ -212056,7 +212202,7 @@ "properties": { "east": "up", "north": "up", - "power": "7", + "power": "6", "south": "side", "west": "none" } @@ -212066,7 +212212,7 @@ "properties": { "east": "up", "north": "up", - "power": "7", + "power": "6", "south": "none", "west": "up" } @@ -212076,7 +212222,7 @@ "properties": { "east": "up", "north": "up", - "power": "7", + "power": "6", "south": "none", "west": "side" } @@ -212086,7 +212232,7 @@ "properties": { "east": "up", "north": "up", - "power": "7", + "power": "6", "south": "none", "west": "none" } @@ -212096,7 +212242,7 @@ "properties": { "east": "up", "north": "up", - "power": "8", + "power": "7", "south": "up", "west": "up" } @@ -212106,7 +212252,7 @@ "properties": { "east": "up", "north": "up", - "power": "8", + "power": "7", "south": "up", "west": "side" } @@ -212116,7 +212262,7 @@ "properties": { "east": "up", "north": "up", - "power": "8", + "power": "7", "south": "up", "west": "none" } @@ -212126,7 +212272,7 @@ "properties": { "east": "up", "north": "up", - "power": "8", + "power": "7", "south": "side", "west": "up" } @@ -212136,7 +212282,7 @@ "properties": { "east": "up", "north": "up", - "power": "8", + "power": "7", "south": "side", "west": "side" } @@ -212146,7 +212292,7 @@ "properties": { "east": "up", "north": "up", - "power": "8", + "power": "7", "south": "side", "west": "none" } @@ -212156,7 +212302,7 @@ "properties": { "east": "up", "north": "up", - "power": "8", + "power": "7", "south": "none", "west": "up" } @@ -212166,7 +212312,7 @@ "properties": { "east": "up", "north": "up", - "power": "8", + "power": "7", "south": "none", "west": "side" } @@ -212176,7 +212322,7 @@ "properties": { "east": "up", "north": "up", - "power": "8", + "power": "7", "south": "none", "west": "none" } @@ -212186,7 +212332,7 @@ "properties": { "east": "up", "north": "up", - "power": "9", + "power": "8", "south": "up", "west": "up" } @@ -212196,7 +212342,7 @@ "properties": { "east": "up", "north": "up", - "power": "9", + "power": "8", "south": "up", "west": "side" } @@ -212206,7 +212352,7 @@ "properties": { "east": "up", "north": "up", - "power": "9", + "power": "8", "south": "up", "west": "none" } @@ -212216,7 +212362,7 @@ "properties": { "east": "up", "north": "up", - "power": "9", + "power": "8", "south": "side", "west": "up" } @@ -212226,7 +212372,7 @@ "properties": { "east": "up", "north": "up", - "power": "9", + "power": "8", "south": "side", "west": "side" } @@ -212236,7 +212382,7 @@ "properties": { "east": "up", "north": "up", - "power": "9", + "power": "8", "south": "side", "west": "none" } @@ -212246,7 +212392,7 @@ "properties": { "east": "up", "north": "up", - "power": "9", + "power": "8", "south": "none", "west": "up" } @@ -212256,7 +212402,7 @@ "properties": { "east": "up", "north": "up", - "power": "9", + "power": "8", "south": "none", "west": "side" } @@ -212266,7 +212412,7 @@ "properties": { "east": "up", "north": "up", - "power": "9", + "power": "8", "south": "none", "west": "none" } @@ -212276,7 +212422,7 @@ "properties": { "east": "up", "north": "up", - "power": "10", + "power": "9", "south": "up", "west": "up" } @@ -212286,7 +212432,7 @@ "properties": { "east": "up", "north": "up", - "power": "10", + "power": "9", "south": "up", "west": "side" } @@ -212296,7 +212442,7 @@ "properties": { "east": "up", "north": "up", - "power": "10", + "power": "9", "south": "up", "west": "none" } @@ -212306,7 +212452,7 @@ "properties": { "east": "up", "north": "up", - "power": "10", + "power": "9", "south": "side", "west": "up" } @@ -212316,7 +212462,7 @@ "properties": { "east": "up", "north": "up", - "power": "10", + "power": "9", "south": "side", "west": "side" } @@ -212326,7 +212472,7 @@ "properties": { "east": "up", "north": "up", - "power": "10", + "power": "9", "south": "side", "west": "none" } @@ -212336,7 +212482,7 @@ "properties": { "east": "up", "north": "up", - "power": "10", + "power": "9", "south": "none", "west": "up" } @@ -212346,7 +212492,7 @@ "properties": { "east": "up", "north": "up", - "power": "10", + "power": "9", "south": "none", "west": "side" } @@ -212356,7 +212502,7 @@ "properties": { "east": "up", "north": "up", - "power": "10", + "power": "9", "south": "none", "west": "none" } @@ -212366,7 +212512,7 @@ "properties": { "east": "up", "north": "up", - "power": "11", + "power": "10", "south": "up", "west": "up" } @@ -212376,7 +212522,7 @@ "properties": { "east": "up", "north": "up", - "power": "11", + "power": "10", "south": "up", "west": "side" } @@ -212386,7 +212532,7 @@ "properties": { "east": "up", "north": "up", - "power": "11", + "power": "10", "south": "up", "west": "none" } @@ -212396,7 +212542,7 @@ "properties": { "east": "up", "north": "up", - "power": "11", + "power": "10", "south": "side", "west": "up" } @@ -212406,7 +212552,7 @@ "properties": { "east": "up", "north": "up", - "power": "11", + "power": "10", "south": "side", "west": "side" } @@ -212416,7 +212562,7 @@ "properties": { "east": "up", "north": "up", - "power": "11", + "power": "10", "south": "side", "west": "none" } @@ -212426,7 +212572,7 @@ "properties": { "east": "up", "north": "up", - "power": "11", + "power": "10", "south": "none", "west": "up" } @@ -212436,7 +212582,7 @@ "properties": { "east": "up", "north": "up", - "power": "11", + "power": "10", "south": "none", "west": "side" } @@ -212446,7 +212592,7 @@ "properties": { "east": "up", "north": "up", - "power": "11", + "power": "10", "south": "none", "west": "none" } @@ -212456,7 +212602,7 @@ "properties": { "east": "up", "north": "up", - "power": "12", + "power": "11", "south": "up", "west": "up" } @@ -212466,7 +212612,7 @@ "properties": { "east": "up", "north": "up", - "power": "12", + "power": "11", "south": "up", "west": "side" } @@ -212476,7 +212622,7 @@ "properties": { "east": "up", "north": "up", - "power": "12", + "power": "11", "south": "up", "west": "none" } @@ -212486,7 +212632,7 @@ "properties": { "east": "up", "north": "up", - "power": "12", + "power": "11", "south": "side", "west": "up" } @@ -212496,7 +212642,7 @@ "properties": { "east": "up", "north": "up", - "power": "12", + "power": "11", "south": "side", "west": "side" } @@ -212506,7 +212652,7 @@ "properties": { "east": "up", "north": "up", - "power": "12", + "power": "11", "south": "side", "west": "none" } @@ -212516,7 +212662,7 @@ "properties": { "east": "up", "north": "up", - "power": "12", + "power": "11", "south": "none", "west": "up" } @@ -212526,7 +212672,7 @@ "properties": { "east": "up", "north": "up", - "power": "12", + "power": "11", "south": "none", "west": "side" } @@ -212536,7 +212682,7 @@ "properties": { "east": "up", "north": "up", - "power": "12", + "power": "11", "south": "none", "west": "none" } @@ -212546,7 +212692,7 @@ "properties": { "east": "up", "north": "up", - "power": "13", + "power": "12", "south": "up", "west": "up" } @@ -212556,7 +212702,7 @@ "properties": { "east": "up", "north": "up", - "power": "13", + "power": "12", "south": "up", "west": "side" } @@ -212566,7 +212712,7 @@ "properties": { "east": "up", "north": "up", - "power": "13", + "power": "12", "south": "up", "west": "none" } @@ -212576,7 +212722,7 @@ "properties": { "east": "up", "north": "up", - "power": "13", + "power": "12", "south": "side", "west": "up" } @@ -212586,7 +212732,7 @@ "properties": { "east": "up", "north": "up", - "power": "13", + "power": "12", "south": "side", "west": "side" } @@ -212596,7 +212742,7 @@ "properties": { "east": "up", "north": "up", - "power": "13", + "power": "12", "south": "side", "west": "none" } @@ -212606,7 +212752,7 @@ "properties": { "east": "up", "north": "up", - "power": "13", + "power": "12", "south": "none", "west": "up" } @@ -212616,7 +212762,7 @@ "properties": { "east": "up", "north": "up", - "power": "13", + "power": "12", "south": "none", "west": "side" } @@ -212626,7 +212772,7 @@ "properties": { "east": "up", "north": "up", - "power": "13", + "power": "12", "south": "none", "west": "none" } @@ -212636,7 +212782,7 @@ "properties": { "east": "up", "north": "up", - "power": "14", + "power": "13", "south": "up", "west": "up" } @@ -212646,7 +212792,7 @@ "properties": { "east": "up", "north": "up", - "power": "14", + "power": "13", "south": "up", "west": "side" } @@ -212656,7 +212802,7 @@ "properties": { "east": "up", "north": "up", - "power": "14", + "power": "13", "south": "up", "west": "none" } @@ -212666,7 +212812,7 @@ "properties": { "east": "up", "north": "up", - "power": "14", + "power": "13", "south": "side", "west": "up" } @@ -212676,7 +212822,7 @@ "properties": { "east": "up", "north": "up", - "power": "14", + "power": "13", "south": "side", "west": "side" } @@ -212686,7 +212832,7 @@ "properties": { "east": "up", "north": "up", - "power": "14", + "power": "13", "south": "side", "west": "none" } @@ -212696,7 +212842,7 @@ "properties": { "east": "up", "north": "up", - "power": "14", + "power": "13", "south": "none", "west": "up" } @@ -212706,7 +212852,7 @@ "properties": { "east": "up", "north": "up", - "power": "14", + "power": "13", "south": "none", "west": "side" } @@ -212716,7 +212862,7 @@ "properties": { "east": "up", "north": "up", - "power": "14", + "power": "13", "south": "none", "west": "none" } @@ -212726,7 +212872,7 @@ "properties": { "east": "up", "north": "up", - "power": "15", + "power": "14", "south": "up", "west": "up" } @@ -212736,7 +212882,7 @@ "properties": { "east": "up", "north": "up", - "power": "15", + "power": "14", "south": "up", "west": "side" } @@ -212746,7 +212892,7 @@ "properties": { "east": "up", "north": "up", - "power": "15", + "power": "14", "south": "up", "west": "none" } @@ -212756,7 +212902,7 @@ "properties": { "east": "up", "north": "up", - "power": "15", + "power": "14", "south": "side", "west": "up" } @@ -212766,7 +212912,7 @@ "properties": { "east": "up", "north": "up", - "power": "15", + "power": "14", "south": "side", "west": "side" } @@ -212776,7 +212922,7 @@ "properties": { "east": "up", "north": "up", - "power": "15", + "power": "14", "south": "side", "west": "none" } @@ -212786,7 +212932,7 @@ "properties": { "east": "up", "north": "up", - "power": "15", + "power": "14", "south": "none", "west": "up" } @@ -212796,7 +212942,7 @@ "properties": { "east": "up", "north": "up", - "power": "15", + "power": "14", "south": "none", "west": "side" } @@ -212806,7 +212952,7 @@ "properties": { "east": "up", "north": "up", - "power": "15", + "power": "14", "south": "none", "west": "none" } @@ -212815,8 +212961,8 @@ "id": 3177, "properties": { "east": "up", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "up", "west": "up" } @@ -212825,8 +212971,8 @@ "id": 3178, "properties": { "east": "up", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "up", "west": "side" } @@ -212835,8 +212981,8 @@ "id": 3179, "properties": { "east": "up", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "up", "west": "none" } @@ -212845,8 +212991,8 @@ "id": 3180, "properties": { "east": "up", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "side", "west": "up" } @@ -212855,8 +213001,8 @@ "id": 3181, "properties": { "east": "up", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "side", "west": "side" } @@ -212865,8 +213011,8 @@ "id": 3182, "properties": { "east": "up", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "side", "west": "none" } @@ -212875,8 +213021,8 @@ "id": 3183, "properties": { "east": "up", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "none", "west": "up" } @@ -212885,8 +213031,8 @@ "id": 3184, "properties": { "east": "up", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "none", "west": "side" } @@ -212895,8 +213041,8 @@ "id": 3185, "properties": { "east": "up", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "none", "west": "none" } @@ -212906,7 +213052,7 @@ "properties": { "east": "up", "north": "side", - "power": "1", + "power": "0", "south": "up", "west": "up" } @@ -212916,7 +213062,7 @@ "properties": { "east": "up", "north": "side", - "power": "1", + "power": "0", "south": "up", "west": "side" } @@ -212926,7 +213072,7 @@ "properties": { "east": "up", "north": "side", - "power": "1", + "power": "0", "south": "up", "west": "none" } @@ -212936,7 +213082,7 @@ "properties": { "east": "up", "north": "side", - "power": "1", + "power": "0", "south": "side", "west": "up" } @@ -212946,7 +213092,7 @@ "properties": { "east": "up", "north": "side", - "power": "1", + "power": "0", "south": "side", "west": "side" } @@ -212956,7 +213102,7 @@ "properties": { "east": "up", "north": "side", - "power": "1", + "power": "0", "south": "side", "west": "none" } @@ -212966,7 +213112,7 @@ "properties": { "east": "up", "north": "side", - "power": "1", + "power": "0", "south": "none", "west": "up" } @@ -212976,7 +213122,7 @@ "properties": { "east": "up", "north": "side", - "power": "1", + "power": "0", "south": "none", "west": "side" } @@ -212986,7 +213132,7 @@ "properties": { "east": "up", "north": "side", - "power": "1", + "power": "0", "south": "none", "west": "none" } @@ -212996,7 +213142,7 @@ "properties": { "east": "up", "north": "side", - "power": "2", + "power": "1", "south": "up", "west": "up" } @@ -213006,7 +213152,7 @@ "properties": { "east": "up", "north": "side", - "power": "2", + "power": "1", "south": "up", "west": "side" } @@ -213016,7 +213162,7 @@ "properties": { "east": "up", "north": "side", - "power": "2", + "power": "1", "south": "up", "west": "none" } @@ -213026,7 +213172,7 @@ "properties": { "east": "up", "north": "side", - "power": "2", + "power": "1", "south": "side", "west": "up" } @@ -213036,7 +213182,7 @@ "properties": { "east": "up", "north": "side", - "power": "2", + "power": "1", "south": "side", "west": "side" } @@ -213046,7 +213192,7 @@ "properties": { "east": "up", "north": "side", - "power": "2", + "power": "1", "south": "side", "west": "none" } @@ -213056,7 +213202,7 @@ "properties": { "east": "up", "north": "side", - "power": "2", + "power": "1", "south": "none", "west": "up" } @@ -213066,7 +213212,7 @@ "properties": { "east": "up", "north": "side", - "power": "2", + "power": "1", "south": "none", "west": "side" } @@ -213076,7 +213222,7 @@ "properties": { "east": "up", "north": "side", - "power": "2", + "power": "1", "south": "none", "west": "none" } @@ -213086,7 +213232,7 @@ "properties": { "east": "up", "north": "side", - "power": "3", + "power": "2", "south": "up", "west": "up" } @@ -213096,7 +213242,7 @@ "properties": { "east": "up", "north": "side", - "power": "3", + "power": "2", "south": "up", "west": "side" } @@ -213106,7 +213252,7 @@ "properties": { "east": "up", "north": "side", - "power": "3", + "power": "2", "south": "up", "west": "none" } @@ -213116,7 +213262,7 @@ "properties": { "east": "up", "north": "side", - "power": "3", + "power": "2", "south": "side", "west": "up" } @@ -213126,7 +213272,7 @@ "properties": { "east": "up", "north": "side", - "power": "3", + "power": "2", "south": "side", "west": "side" } @@ -213136,7 +213282,7 @@ "properties": { "east": "up", "north": "side", - "power": "3", + "power": "2", "south": "side", "west": "none" } @@ -213146,7 +213292,7 @@ "properties": { "east": "up", "north": "side", - "power": "3", + "power": "2", "south": "none", "west": "up" } @@ -213156,7 +213302,7 @@ "properties": { "east": "up", "north": "side", - "power": "3", + "power": "2", "south": "none", "west": "side" } @@ -213166,7 +213312,7 @@ "properties": { "east": "up", "north": "side", - "power": "3", + "power": "2", "south": "none", "west": "none" } @@ -213176,7 +213322,7 @@ "properties": { "east": "up", "north": "side", - "power": "4", + "power": "3", "south": "up", "west": "up" } @@ -213186,7 +213332,7 @@ "properties": { "east": "up", "north": "side", - "power": "4", + "power": "3", "south": "up", "west": "side" } @@ -213196,7 +213342,7 @@ "properties": { "east": "up", "north": "side", - "power": "4", + "power": "3", "south": "up", "west": "none" } @@ -213206,7 +213352,7 @@ "properties": { "east": "up", "north": "side", - "power": "4", + "power": "3", "south": "side", "west": "up" } @@ -213216,7 +213362,7 @@ "properties": { "east": "up", "north": "side", - "power": "4", + "power": "3", "south": "side", "west": "side" } @@ -213226,7 +213372,7 @@ "properties": { "east": "up", "north": "side", - "power": "4", + "power": "3", "south": "side", "west": "none" } @@ -213236,7 +213382,7 @@ "properties": { "east": "up", "north": "side", - "power": "4", + "power": "3", "south": "none", "west": "up" } @@ -213246,7 +213392,7 @@ "properties": { "east": "up", "north": "side", - "power": "4", + "power": "3", "south": "none", "west": "side" } @@ -213256,7 +213402,7 @@ "properties": { "east": "up", "north": "side", - "power": "4", + "power": "3", "south": "none", "west": "none" } @@ -213266,7 +213412,7 @@ "properties": { "east": "up", "north": "side", - "power": "5", + "power": "4", "south": "up", "west": "up" } @@ -213276,7 +213422,7 @@ "properties": { "east": "up", "north": "side", - "power": "5", + "power": "4", "south": "up", "west": "side" } @@ -213286,7 +213432,7 @@ "properties": { "east": "up", "north": "side", - "power": "5", + "power": "4", "south": "up", "west": "none" } @@ -213296,7 +213442,7 @@ "properties": { "east": "up", "north": "side", - "power": "5", + "power": "4", "south": "side", "west": "up" } @@ -213306,7 +213452,7 @@ "properties": { "east": "up", "north": "side", - "power": "5", + "power": "4", "south": "side", "west": "side" } @@ -213316,7 +213462,7 @@ "properties": { "east": "up", "north": "side", - "power": "5", + "power": "4", "south": "side", "west": "none" } @@ -213326,7 +213472,7 @@ "properties": { "east": "up", "north": "side", - "power": "5", + "power": "4", "south": "none", "west": "up" } @@ -213336,7 +213482,7 @@ "properties": { "east": "up", "north": "side", - "power": "5", + "power": "4", "south": "none", "west": "side" } @@ -213346,7 +213492,7 @@ "properties": { "east": "up", "north": "side", - "power": "5", + "power": "4", "south": "none", "west": "none" } @@ -213356,7 +213502,7 @@ "properties": { "east": "up", "north": "side", - "power": "6", + "power": "5", "south": "up", "west": "up" } @@ -213366,7 +213512,7 @@ "properties": { "east": "up", "north": "side", - "power": "6", + "power": "5", "south": "up", "west": "side" } @@ -213376,7 +213522,7 @@ "properties": { "east": "up", "north": "side", - "power": "6", + "power": "5", "south": "up", "west": "none" } @@ -213386,7 +213532,7 @@ "properties": { "east": "up", "north": "side", - "power": "6", + "power": "5", "south": "side", "west": "up" } @@ -213396,7 +213542,7 @@ "properties": { "east": "up", "north": "side", - "power": "6", + "power": "5", "south": "side", "west": "side" } @@ -213406,7 +213552,7 @@ "properties": { "east": "up", "north": "side", - "power": "6", + "power": "5", "south": "side", "west": "none" } @@ -213416,7 +213562,7 @@ "properties": { "east": "up", "north": "side", - "power": "6", + "power": "5", "south": "none", "west": "up" } @@ -213426,7 +213572,7 @@ "properties": { "east": "up", "north": "side", - "power": "6", + "power": "5", "south": "none", "west": "side" } @@ -213436,7 +213582,7 @@ "properties": { "east": "up", "north": "side", - "power": "6", + "power": "5", "south": "none", "west": "none" } @@ -213446,7 +213592,7 @@ "properties": { "east": "up", "north": "side", - "power": "7", + "power": "6", "south": "up", "west": "up" } @@ -213456,7 +213602,7 @@ "properties": { "east": "up", "north": "side", - "power": "7", + "power": "6", "south": "up", "west": "side" } @@ -213466,7 +213612,7 @@ "properties": { "east": "up", "north": "side", - "power": "7", + "power": "6", "south": "up", "west": "none" } @@ -213476,7 +213622,7 @@ "properties": { "east": "up", "north": "side", - "power": "7", + "power": "6", "south": "side", "west": "up" } @@ -213486,7 +213632,7 @@ "properties": { "east": "up", "north": "side", - "power": "7", + "power": "6", "south": "side", "west": "side" } @@ -213496,7 +213642,7 @@ "properties": { "east": "up", "north": "side", - "power": "7", + "power": "6", "south": "side", "west": "none" } @@ -213506,7 +213652,7 @@ "properties": { "east": "up", "north": "side", - "power": "7", + "power": "6", "south": "none", "west": "up" } @@ -213516,7 +213662,7 @@ "properties": { "east": "up", "north": "side", - "power": "7", + "power": "6", "south": "none", "west": "side" } @@ -213526,7 +213672,7 @@ "properties": { "east": "up", "north": "side", - "power": "7", + "power": "6", "south": "none", "west": "none" } @@ -213536,7 +213682,7 @@ "properties": { "east": "up", "north": "side", - "power": "8", + "power": "7", "south": "up", "west": "up" } @@ -213546,7 +213692,7 @@ "properties": { "east": "up", "north": "side", - "power": "8", + "power": "7", "south": "up", "west": "side" } @@ -213556,7 +213702,7 @@ "properties": { "east": "up", "north": "side", - "power": "8", + "power": "7", "south": "up", "west": "none" } @@ -213566,7 +213712,7 @@ "properties": { "east": "up", "north": "side", - "power": "8", + "power": "7", "south": "side", "west": "up" } @@ -213576,7 +213722,7 @@ "properties": { "east": "up", "north": "side", - "power": "8", + "power": "7", "south": "side", "west": "side" } @@ -213586,7 +213732,7 @@ "properties": { "east": "up", "north": "side", - "power": "8", + "power": "7", "south": "side", "west": "none" } @@ -213596,7 +213742,7 @@ "properties": { "east": "up", "north": "side", - "power": "8", + "power": "7", "south": "none", "west": "up" } @@ -213606,7 +213752,7 @@ "properties": { "east": "up", "north": "side", - "power": "8", + "power": "7", "south": "none", "west": "side" } @@ -213616,7 +213762,7 @@ "properties": { "east": "up", "north": "side", - "power": "8", + "power": "7", "south": "none", "west": "none" } @@ -213626,7 +213772,7 @@ "properties": { "east": "up", "north": "side", - "power": "9", + "power": "8", "south": "up", "west": "up" } @@ -213636,7 +213782,7 @@ "properties": { "east": "up", "north": "side", - "power": "9", + "power": "8", "south": "up", "west": "side" } @@ -213646,7 +213792,7 @@ "properties": { "east": "up", "north": "side", - "power": "9", + "power": "8", "south": "up", "west": "none" } @@ -213656,7 +213802,7 @@ "properties": { "east": "up", "north": "side", - "power": "9", + "power": "8", "south": "side", "west": "up" } @@ -213666,7 +213812,7 @@ "properties": { "east": "up", "north": "side", - "power": "9", + "power": "8", "south": "side", "west": "side" } @@ -213676,7 +213822,7 @@ "properties": { "east": "up", "north": "side", - "power": "9", + "power": "8", "south": "side", "west": "none" } @@ -213686,7 +213832,7 @@ "properties": { "east": "up", "north": "side", - "power": "9", + "power": "8", "south": "none", "west": "up" } @@ -213696,7 +213842,7 @@ "properties": { "east": "up", "north": "side", - "power": "9", + "power": "8", "south": "none", "west": "side" } @@ -213706,7 +213852,7 @@ "properties": { "east": "up", "north": "side", - "power": "9", + "power": "8", "south": "none", "west": "none" } @@ -213716,7 +213862,7 @@ "properties": { "east": "up", "north": "side", - "power": "10", + "power": "9", "south": "up", "west": "up" } @@ -213726,7 +213872,7 @@ "properties": { "east": "up", "north": "side", - "power": "10", + "power": "9", "south": "up", "west": "side" } @@ -213736,7 +213882,7 @@ "properties": { "east": "up", "north": "side", - "power": "10", + "power": "9", "south": "up", "west": "none" } @@ -213746,7 +213892,7 @@ "properties": { "east": "up", "north": "side", - "power": "10", + "power": "9", "south": "side", "west": "up" } @@ -213756,7 +213902,7 @@ "properties": { "east": "up", "north": "side", - "power": "10", + "power": "9", "south": "side", "west": "side" } @@ -213766,7 +213912,7 @@ "properties": { "east": "up", "north": "side", - "power": "10", + "power": "9", "south": "side", "west": "none" } @@ -213776,7 +213922,7 @@ "properties": { "east": "up", "north": "side", - "power": "10", + "power": "9", "south": "none", "west": "up" } @@ -213786,7 +213932,7 @@ "properties": { "east": "up", "north": "side", - "power": "10", + "power": "9", "south": "none", "west": "side" } @@ -213796,7 +213942,7 @@ "properties": { "east": "up", "north": "side", - "power": "10", + "power": "9", "south": "none", "west": "none" } @@ -213806,7 +213952,7 @@ "properties": { "east": "up", "north": "side", - "power": "11", + "power": "10", "south": "up", "west": "up" } @@ -213816,7 +213962,7 @@ "properties": { "east": "up", "north": "side", - "power": "11", + "power": "10", "south": "up", "west": "side" } @@ -213826,7 +213972,7 @@ "properties": { "east": "up", "north": "side", - "power": "11", + "power": "10", "south": "up", "west": "none" } @@ -213836,7 +213982,7 @@ "properties": { "east": "up", "north": "side", - "power": "11", + "power": "10", "south": "side", "west": "up" } @@ -213846,7 +213992,7 @@ "properties": { "east": "up", "north": "side", - "power": "11", + "power": "10", "south": "side", "west": "side" } @@ -213856,7 +214002,7 @@ "properties": { "east": "up", "north": "side", - "power": "11", + "power": "10", "south": "side", "west": "none" } @@ -213866,7 +214012,7 @@ "properties": { "east": "up", "north": "side", - "power": "11", + "power": "10", "south": "none", "west": "up" } @@ -213876,7 +214022,7 @@ "properties": { "east": "up", "north": "side", - "power": "11", + "power": "10", "south": "none", "west": "side" } @@ -213886,7 +214032,7 @@ "properties": { "east": "up", "north": "side", - "power": "11", + "power": "10", "south": "none", "west": "none" } @@ -213896,7 +214042,7 @@ "properties": { "east": "up", "north": "side", - "power": "12", + "power": "11", "south": "up", "west": "up" } @@ -213906,7 +214052,7 @@ "properties": { "east": "up", "north": "side", - "power": "12", + "power": "11", "south": "up", "west": "side" } @@ -213916,7 +214062,7 @@ "properties": { "east": "up", "north": "side", - "power": "12", + "power": "11", "south": "up", "west": "none" } @@ -213926,7 +214072,7 @@ "properties": { "east": "up", "north": "side", - "power": "12", + "power": "11", "south": "side", "west": "up" } @@ -213936,7 +214082,7 @@ "properties": { "east": "up", "north": "side", - "power": "12", + "power": "11", "south": "side", "west": "side" } @@ -213946,7 +214092,7 @@ "properties": { "east": "up", "north": "side", - "power": "12", + "power": "11", "south": "side", "west": "none" } @@ -213956,7 +214102,7 @@ "properties": { "east": "up", "north": "side", - "power": "12", + "power": "11", "south": "none", "west": "up" } @@ -213966,7 +214112,7 @@ "properties": { "east": "up", "north": "side", - "power": "12", + "power": "11", "south": "none", "west": "side" } @@ -213976,7 +214122,7 @@ "properties": { "east": "up", "north": "side", - "power": "12", + "power": "11", "south": "none", "west": "none" } @@ -213986,7 +214132,7 @@ "properties": { "east": "up", "north": "side", - "power": "13", + "power": "12", "south": "up", "west": "up" } @@ -213996,7 +214142,7 @@ "properties": { "east": "up", "north": "side", - "power": "13", + "power": "12", "south": "up", "west": "side" } @@ -214006,7 +214152,7 @@ "properties": { "east": "up", "north": "side", - "power": "13", + "power": "12", "south": "up", "west": "none" } @@ -214016,7 +214162,7 @@ "properties": { "east": "up", "north": "side", - "power": "13", + "power": "12", "south": "side", "west": "up" } @@ -214026,7 +214172,7 @@ "properties": { "east": "up", "north": "side", - "power": "13", + "power": "12", "south": "side", "west": "side" } @@ -214036,7 +214182,7 @@ "properties": { "east": "up", "north": "side", - "power": "13", + "power": "12", "south": "side", "west": "none" } @@ -214046,7 +214192,7 @@ "properties": { "east": "up", "north": "side", - "power": "13", + "power": "12", "south": "none", "west": "up" } @@ -214056,7 +214202,7 @@ "properties": { "east": "up", "north": "side", - "power": "13", + "power": "12", "south": "none", "west": "side" } @@ -214066,7 +214212,7 @@ "properties": { "east": "up", "north": "side", - "power": "13", + "power": "12", "south": "none", "west": "none" } @@ -214076,7 +214222,7 @@ "properties": { "east": "up", "north": "side", - "power": "14", + "power": "13", "south": "up", "west": "up" } @@ -214086,7 +214232,7 @@ "properties": { "east": "up", "north": "side", - "power": "14", + "power": "13", "south": "up", "west": "side" } @@ -214096,7 +214242,7 @@ "properties": { "east": "up", "north": "side", - "power": "14", + "power": "13", "south": "up", "west": "none" } @@ -214106,7 +214252,7 @@ "properties": { "east": "up", "north": "side", - "power": "14", + "power": "13", "south": "side", "west": "up" } @@ -214116,7 +214262,7 @@ "properties": { "east": "up", "north": "side", - "power": "14", + "power": "13", "south": "side", "west": "side" } @@ -214126,7 +214272,7 @@ "properties": { "east": "up", "north": "side", - "power": "14", + "power": "13", "south": "side", "west": "none" } @@ -214136,7 +214282,7 @@ "properties": { "east": "up", "north": "side", - "power": "14", + "power": "13", "south": "none", "west": "up" } @@ -214146,7 +214292,7 @@ "properties": { "east": "up", "north": "side", - "power": "14", + "power": "13", "south": "none", "west": "side" } @@ -214156,7 +214302,7 @@ "properties": { "east": "up", "north": "side", - "power": "14", + "power": "13", "south": "none", "west": "none" } @@ -214166,7 +214312,7 @@ "properties": { "east": "up", "north": "side", - "power": "15", + "power": "14", "south": "up", "west": "up" } @@ -214176,7 +214322,7 @@ "properties": { "east": "up", "north": "side", - "power": "15", + "power": "14", "south": "up", "west": "side" } @@ -214186,7 +214332,7 @@ "properties": { "east": "up", "north": "side", - "power": "15", + "power": "14", "south": "up", "west": "none" } @@ -214196,7 +214342,7 @@ "properties": { "east": "up", "north": "side", - "power": "15", + "power": "14", "south": "side", "west": "up" } @@ -214206,7 +214352,7 @@ "properties": { "east": "up", "north": "side", - "power": "15", + "power": "14", "south": "side", "west": "side" } @@ -214216,7 +214362,7 @@ "properties": { "east": "up", "north": "side", - "power": "15", + "power": "14", "south": "side", "west": "none" } @@ -214226,7 +214372,7 @@ "properties": { "east": "up", "north": "side", - "power": "15", + "power": "14", "south": "none", "west": "up" } @@ -214236,7 +214382,7 @@ "properties": { "east": "up", "north": "side", - "power": "15", + "power": "14", "south": "none", "west": "side" } @@ -214246,7 +214392,7 @@ "properties": { "east": "up", "north": "side", - "power": "15", + "power": "14", "south": "none", "west": "none" } @@ -214255,8 +214401,8 @@ "id": 3321, "properties": { "east": "up", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "up", "west": "up" } @@ -214265,8 +214411,8 @@ "id": 3322, "properties": { "east": "up", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "up", "west": "side" } @@ -214275,8 +214421,8 @@ "id": 3323, "properties": { "east": "up", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "up", "west": "none" } @@ -214285,8 +214431,8 @@ "id": 3324, "properties": { "east": "up", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "side", "west": "up" } @@ -214295,8 +214441,8 @@ "id": 3325, "properties": { "east": "up", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "side", "west": "side" } @@ -214305,8 +214451,8 @@ "id": 3326, "properties": { "east": "up", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "side", "west": "none" } @@ -214315,8 +214461,8 @@ "id": 3327, "properties": { "east": "up", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "none", "west": "up" } @@ -214325,8 +214471,8 @@ "id": 3328, "properties": { "east": "up", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "none", "west": "side" } @@ -214335,8 +214481,8 @@ "id": 3329, "properties": { "east": "up", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "none", "west": "none" } @@ -214346,7 +214492,7 @@ "properties": { "east": "up", "north": "none", - "power": "1", + "power": "0", "south": "up", "west": "up" } @@ -214356,7 +214502,7 @@ "properties": { "east": "up", "north": "none", - "power": "1", + "power": "0", "south": "up", "west": "side" } @@ -214366,7 +214512,7 @@ "properties": { "east": "up", "north": "none", - "power": "1", + "power": "0", "south": "up", "west": "none" } @@ -214376,7 +214522,7 @@ "properties": { "east": "up", "north": "none", - "power": "1", + "power": "0", "south": "side", "west": "up" } @@ -214386,7 +214532,7 @@ "properties": { "east": "up", "north": "none", - "power": "1", + "power": "0", "south": "side", "west": "side" } @@ -214396,7 +214542,7 @@ "properties": { "east": "up", "north": "none", - "power": "1", + "power": "0", "south": "side", "west": "none" } @@ -214406,7 +214552,7 @@ "properties": { "east": "up", "north": "none", - "power": "1", + "power": "0", "south": "none", "west": "up" } @@ -214416,7 +214562,7 @@ "properties": { "east": "up", "north": "none", - "power": "1", + "power": "0", "south": "none", "west": "side" } @@ -214426,7 +214572,7 @@ "properties": { "east": "up", "north": "none", - "power": "1", + "power": "0", "south": "none", "west": "none" } @@ -214436,7 +214582,7 @@ "properties": { "east": "up", "north": "none", - "power": "2", + "power": "1", "south": "up", "west": "up" } @@ -214446,7 +214592,7 @@ "properties": { "east": "up", "north": "none", - "power": "2", + "power": "1", "south": "up", "west": "side" } @@ -214456,7 +214602,7 @@ "properties": { "east": "up", "north": "none", - "power": "2", + "power": "1", "south": "up", "west": "none" } @@ -214466,7 +214612,7 @@ "properties": { "east": "up", "north": "none", - "power": "2", + "power": "1", "south": "side", "west": "up" } @@ -214476,7 +214622,7 @@ "properties": { "east": "up", "north": "none", - "power": "2", + "power": "1", "south": "side", "west": "side" } @@ -214486,7 +214632,7 @@ "properties": { "east": "up", "north": "none", - "power": "2", + "power": "1", "south": "side", "west": "none" } @@ -214496,7 +214642,7 @@ "properties": { "east": "up", "north": "none", - "power": "2", + "power": "1", "south": "none", "west": "up" } @@ -214506,7 +214652,7 @@ "properties": { "east": "up", "north": "none", - "power": "2", + "power": "1", "south": "none", "west": "side" } @@ -214516,7 +214662,7 @@ "properties": { "east": "up", "north": "none", - "power": "2", + "power": "1", "south": "none", "west": "none" } @@ -214526,7 +214672,7 @@ "properties": { "east": "up", "north": "none", - "power": "3", + "power": "2", "south": "up", "west": "up" } @@ -214536,7 +214682,7 @@ "properties": { "east": "up", "north": "none", - "power": "3", + "power": "2", "south": "up", "west": "side" } @@ -214546,7 +214692,7 @@ "properties": { "east": "up", "north": "none", - "power": "3", + "power": "2", "south": "up", "west": "none" } @@ -214556,7 +214702,7 @@ "properties": { "east": "up", "north": "none", - "power": "3", + "power": "2", "south": "side", "west": "up" } @@ -214566,7 +214712,7 @@ "properties": { "east": "up", "north": "none", - "power": "3", + "power": "2", "south": "side", "west": "side" } @@ -214576,7 +214722,7 @@ "properties": { "east": "up", "north": "none", - "power": "3", + "power": "2", "south": "side", "west": "none" } @@ -214586,7 +214732,7 @@ "properties": { "east": "up", "north": "none", - "power": "3", + "power": "2", "south": "none", "west": "up" } @@ -214596,7 +214742,7 @@ "properties": { "east": "up", "north": "none", - "power": "3", + "power": "2", "south": "none", "west": "side" } @@ -214606,7 +214752,7 @@ "properties": { "east": "up", "north": "none", - "power": "3", + "power": "2", "south": "none", "west": "none" } @@ -214616,7 +214762,7 @@ "properties": { "east": "up", "north": "none", - "power": "4", + "power": "3", "south": "up", "west": "up" } @@ -214626,7 +214772,7 @@ "properties": { "east": "up", "north": "none", - "power": "4", + "power": "3", "south": "up", "west": "side" } @@ -214636,7 +214782,7 @@ "properties": { "east": "up", "north": "none", - "power": "4", + "power": "3", "south": "up", "west": "none" } @@ -214646,7 +214792,7 @@ "properties": { "east": "up", "north": "none", - "power": "4", + "power": "3", "south": "side", "west": "up" } @@ -214656,7 +214802,7 @@ "properties": { "east": "up", "north": "none", - "power": "4", + "power": "3", "south": "side", "west": "side" } @@ -214666,7 +214812,7 @@ "properties": { "east": "up", "north": "none", - "power": "4", + "power": "3", "south": "side", "west": "none" } @@ -214676,7 +214822,7 @@ "properties": { "east": "up", "north": "none", - "power": "4", + "power": "3", "south": "none", "west": "up" } @@ -214686,7 +214832,7 @@ "properties": { "east": "up", "north": "none", - "power": "4", + "power": "3", "south": "none", "west": "side" } @@ -214696,7 +214842,7 @@ "properties": { "east": "up", "north": "none", - "power": "4", + "power": "3", "south": "none", "west": "none" } @@ -214706,7 +214852,7 @@ "properties": { "east": "up", "north": "none", - "power": "5", + "power": "4", "south": "up", "west": "up" } @@ -214716,7 +214862,7 @@ "properties": { "east": "up", "north": "none", - "power": "5", + "power": "4", "south": "up", "west": "side" } @@ -214726,7 +214872,7 @@ "properties": { "east": "up", "north": "none", - "power": "5", + "power": "4", "south": "up", "west": "none" } @@ -214736,7 +214882,7 @@ "properties": { "east": "up", "north": "none", - "power": "5", + "power": "4", "south": "side", "west": "up" } @@ -214746,7 +214892,7 @@ "properties": { "east": "up", "north": "none", - "power": "5", + "power": "4", "south": "side", "west": "side" } @@ -214756,7 +214902,7 @@ "properties": { "east": "up", "north": "none", - "power": "5", + "power": "4", "south": "side", "west": "none" } @@ -214766,7 +214912,7 @@ "properties": { "east": "up", "north": "none", - "power": "5", + "power": "4", "south": "none", "west": "up" } @@ -214776,7 +214922,7 @@ "properties": { "east": "up", "north": "none", - "power": "5", + "power": "4", "south": "none", "west": "side" } @@ -214786,7 +214932,7 @@ "properties": { "east": "up", "north": "none", - "power": "5", + "power": "4", "south": "none", "west": "none" } @@ -214796,7 +214942,7 @@ "properties": { "east": "up", "north": "none", - "power": "6", + "power": "5", "south": "up", "west": "up" } @@ -214806,7 +214952,7 @@ "properties": { "east": "up", "north": "none", - "power": "6", + "power": "5", "south": "up", "west": "side" } @@ -214816,7 +214962,7 @@ "properties": { "east": "up", "north": "none", - "power": "6", + "power": "5", "south": "up", "west": "none" } @@ -214826,7 +214972,7 @@ "properties": { "east": "up", "north": "none", - "power": "6", + "power": "5", "south": "side", "west": "up" } @@ -214836,7 +214982,7 @@ "properties": { "east": "up", "north": "none", - "power": "6", + "power": "5", "south": "side", "west": "side" } @@ -214846,7 +214992,7 @@ "properties": { "east": "up", "north": "none", - "power": "6", + "power": "5", "south": "side", "west": "none" } @@ -214856,7 +215002,7 @@ "properties": { "east": "up", "north": "none", - "power": "6", + "power": "5", "south": "none", "west": "up" } @@ -214866,7 +215012,7 @@ "properties": { "east": "up", "north": "none", - "power": "6", + "power": "5", "south": "none", "west": "side" } @@ -214876,7 +215022,7 @@ "properties": { "east": "up", "north": "none", - "power": "6", + "power": "5", "south": "none", "west": "none" } @@ -214886,7 +215032,7 @@ "properties": { "east": "up", "north": "none", - "power": "7", + "power": "6", "south": "up", "west": "up" } @@ -214896,7 +215042,7 @@ "properties": { "east": "up", "north": "none", - "power": "7", + "power": "6", "south": "up", "west": "side" } @@ -214906,7 +215052,7 @@ "properties": { "east": "up", "north": "none", - "power": "7", + "power": "6", "south": "up", "west": "none" } @@ -214916,7 +215062,7 @@ "properties": { "east": "up", "north": "none", - "power": "7", + "power": "6", "south": "side", "west": "up" } @@ -214926,7 +215072,7 @@ "properties": { "east": "up", "north": "none", - "power": "7", + "power": "6", "south": "side", "west": "side" } @@ -214936,7 +215082,7 @@ "properties": { "east": "up", "north": "none", - "power": "7", + "power": "6", "south": "side", "west": "none" } @@ -214946,7 +215092,7 @@ "properties": { "east": "up", "north": "none", - "power": "7", + "power": "6", "south": "none", "west": "up" } @@ -214956,7 +215102,7 @@ "properties": { "east": "up", "north": "none", - "power": "7", + "power": "6", "south": "none", "west": "side" } @@ -214966,7 +215112,7 @@ "properties": { "east": "up", "north": "none", - "power": "7", + "power": "6", "south": "none", "west": "none" } @@ -214976,7 +215122,7 @@ "properties": { "east": "up", "north": "none", - "power": "8", + "power": "7", "south": "up", "west": "up" } @@ -214986,7 +215132,7 @@ "properties": { "east": "up", "north": "none", - "power": "8", + "power": "7", "south": "up", "west": "side" } @@ -214996,7 +215142,7 @@ "properties": { "east": "up", "north": "none", - "power": "8", + "power": "7", "south": "up", "west": "none" } @@ -215006,7 +215152,7 @@ "properties": { "east": "up", "north": "none", - "power": "8", + "power": "7", "south": "side", "west": "up" } @@ -215016,7 +215162,7 @@ "properties": { "east": "up", "north": "none", - "power": "8", + "power": "7", "south": "side", "west": "side" } @@ -215026,7 +215172,7 @@ "properties": { "east": "up", "north": "none", - "power": "8", + "power": "7", "south": "side", "west": "none" } @@ -215036,7 +215182,7 @@ "properties": { "east": "up", "north": "none", - "power": "8", + "power": "7", "south": "none", "west": "up" } @@ -215046,7 +215192,7 @@ "properties": { "east": "up", "north": "none", - "power": "8", + "power": "7", "south": "none", "west": "side" } @@ -215056,7 +215202,7 @@ "properties": { "east": "up", "north": "none", - "power": "8", + "power": "7", "south": "none", "west": "none" } @@ -215066,7 +215212,7 @@ "properties": { "east": "up", "north": "none", - "power": "9", + "power": "8", "south": "up", "west": "up" } @@ -215076,7 +215222,7 @@ "properties": { "east": "up", "north": "none", - "power": "9", + "power": "8", "south": "up", "west": "side" } @@ -215086,7 +215232,7 @@ "properties": { "east": "up", "north": "none", - "power": "9", + "power": "8", "south": "up", "west": "none" } @@ -215096,7 +215242,7 @@ "properties": { "east": "up", "north": "none", - "power": "9", + "power": "8", "south": "side", "west": "up" } @@ -215106,7 +215252,7 @@ "properties": { "east": "up", "north": "none", - "power": "9", + "power": "8", "south": "side", "west": "side" } @@ -215116,7 +215262,7 @@ "properties": { "east": "up", "north": "none", - "power": "9", + "power": "8", "south": "side", "west": "none" } @@ -215126,7 +215272,7 @@ "properties": { "east": "up", "north": "none", - "power": "9", + "power": "8", "south": "none", "west": "up" } @@ -215136,7 +215282,7 @@ "properties": { "east": "up", "north": "none", - "power": "9", + "power": "8", "south": "none", "west": "side" } @@ -215146,7 +215292,7 @@ "properties": { "east": "up", "north": "none", - "power": "9", + "power": "8", "south": "none", "west": "none" } @@ -215156,7 +215302,7 @@ "properties": { "east": "up", "north": "none", - "power": "10", + "power": "9", "south": "up", "west": "up" } @@ -215166,7 +215312,7 @@ "properties": { "east": "up", "north": "none", - "power": "10", + "power": "9", "south": "up", "west": "side" } @@ -215176,7 +215322,7 @@ "properties": { "east": "up", "north": "none", - "power": "10", + "power": "9", "south": "up", "west": "none" } @@ -215186,7 +215332,7 @@ "properties": { "east": "up", "north": "none", - "power": "10", + "power": "9", "south": "side", "west": "up" } @@ -215196,7 +215342,7 @@ "properties": { "east": "up", "north": "none", - "power": "10", + "power": "9", "south": "side", "west": "side" } @@ -215206,7 +215352,7 @@ "properties": { "east": "up", "north": "none", - "power": "10", + "power": "9", "south": "side", "west": "none" } @@ -215216,7 +215362,7 @@ "properties": { "east": "up", "north": "none", - "power": "10", + "power": "9", "south": "none", "west": "up" } @@ -215226,7 +215372,7 @@ "properties": { "east": "up", "north": "none", - "power": "10", + "power": "9", "south": "none", "west": "side" } @@ -215236,7 +215382,7 @@ "properties": { "east": "up", "north": "none", - "power": "10", + "power": "9", "south": "none", "west": "none" } @@ -215246,7 +215392,7 @@ "properties": { "east": "up", "north": "none", - "power": "11", + "power": "10", "south": "up", "west": "up" } @@ -215256,7 +215402,7 @@ "properties": { "east": "up", "north": "none", - "power": "11", + "power": "10", "south": "up", "west": "side" } @@ -215266,7 +215412,7 @@ "properties": { "east": "up", "north": "none", - "power": "11", + "power": "10", "south": "up", "west": "none" } @@ -215276,7 +215422,7 @@ "properties": { "east": "up", "north": "none", - "power": "11", + "power": "10", "south": "side", "west": "up" } @@ -215286,7 +215432,7 @@ "properties": { "east": "up", "north": "none", - "power": "11", + "power": "10", "south": "side", "west": "side" } @@ -215296,7 +215442,7 @@ "properties": { "east": "up", "north": "none", - "power": "11", + "power": "10", "south": "side", "west": "none" } @@ -215306,7 +215452,7 @@ "properties": { "east": "up", "north": "none", - "power": "11", + "power": "10", "south": "none", "west": "up" } @@ -215316,7 +215462,7 @@ "properties": { "east": "up", "north": "none", - "power": "11", + "power": "10", "south": "none", "west": "side" } @@ -215326,7 +215472,7 @@ "properties": { "east": "up", "north": "none", - "power": "11", + "power": "10", "south": "none", "west": "none" } @@ -215336,7 +215482,7 @@ "properties": { "east": "up", "north": "none", - "power": "12", + "power": "11", "south": "up", "west": "up" } @@ -215346,7 +215492,7 @@ "properties": { "east": "up", "north": "none", - "power": "12", + "power": "11", "south": "up", "west": "side" } @@ -215356,7 +215502,7 @@ "properties": { "east": "up", "north": "none", - "power": "12", + "power": "11", "south": "up", "west": "none" } @@ -215366,7 +215512,7 @@ "properties": { "east": "up", "north": "none", - "power": "12", + "power": "11", "south": "side", "west": "up" } @@ -215376,7 +215522,7 @@ "properties": { "east": "up", "north": "none", - "power": "12", + "power": "11", "south": "side", "west": "side" } @@ -215386,7 +215532,7 @@ "properties": { "east": "up", "north": "none", - "power": "12", + "power": "11", "south": "side", "west": "none" } @@ -215396,7 +215542,7 @@ "properties": { "east": "up", "north": "none", - "power": "12", + "power": "11", "south": "none", "west": "up" } @@ -215406,7 +215552,7 @@ "properties": { "east": "up", "north": "none", - "power": "12", + "power": "11", "south": "none", "west": "side" } @@ -215416,7 +215562,7 @@ "properties": { "east": "up", "north": "none", - "power": "12", + "power": "11", "south": "none", "west": "none" } @@ -215426,7 +215572,7 @@ "properties": { "east": "up", "north": "none", - "power": "13", + "power": "12", "south": "up", "west": "up" } @@ -215436,7 +215582,7 @@ "properties": { "east": "up", "north": "none", - "power": "13", + "power": "12", "south": "up", "west": "side" } @@ -215446,7 +215592,7 @@ "properties": { "east": "up", "north": "none", - "power": "13", + "power": "12", "south": "up", "west": "none" } @@ -215456,7 +215602,7 @@ "properties": { "east": "up", "north": "none", - "power": "13", + "power": "12", "south": "side", "west": "up" } @@ -215466,7 +215612,7 @@ "properties": { "east": "up", "north": "none", - "power": "13", + "power": "12", "south": "side", "west": "side" } @@ -215476,7 +215622,7 @@ "properties": { "east": "up", "north": "none", - "power": "13", + "power": "12", "south": "side", "west": "none" } @@ -215486,7 +215632,7 @@ "properties": { "east": "up", "north": "none", - "power": "13", + "power": "12", "south": "none", "west": "up" } @@ -215496,7 +215642,7 @@ "properties": { "east": "up", "north": "none", - "power": "13", + "power": "12", "south": "none", "west": "side" } @@ -215506,7 +215652,7 @@ "properties": { "east": "up", "north": "none", - "power": "13", + "power": "12", "south": "none", "west": "none" } @@ -215516,7 +215662,7 @@ "properties": { "east": "up", "north": "none", - "power": "14", + "power": "13", "south": "up", "west": "up" } @@ -215526,7 +215672,7 @@ "properties": { "east": "up", "north": "none", - "power": "14", + "power": "13", "south": "up", "west": "side" } @@ -215536,7 +215682,7 @@ "properties": { "east": "up", "north": "none", - "power": "14", + "power": "13", "south": "up", "west": "none" } @@ -215546,7 +215692,7 @@ "properties": { "east": "up", "north": "none", - "power": "14", + "power": "13", "south": "side", "west": "up" } @@ -215556,7 +215702,7 @@ "properties": { "east": "up", "north": "none", - "power": "14", + "power": "13", "south": "side", "west": "side" } @@ -215566,7 +215712,7 @@ "properties": { "east": "up", "north": "none", - "power": "14", + "power": "13", "south": "side", "west": "none" } @@ -215576,7 +215722,7 @@ "properties": { "east": "up", "north": "none", - "power": "14", + "power": "13", "south": "none", "west": "up" } @@ -215586,7 +215732,7 @@ "properties": { "east": "up", "north": "none", - "power": "14", + "power": "13", "south": "none", "west": "side" } @@ -215596,7 +215742,7 @@ "properties": { "east": "up", "north": "none", - "power": "14", + "power": "13", "south": "none", "west": "none" } @@ -215606,7 +215752,7 @@ "properties": { "east": "up", "north": "none", - "power": "15", + "power": "14", "south": "up", "west": "up" } @@ -215616,7 +215762,7 @@ "properties": { "east": "up", "north": "none", - "power": "15", + "power": "14", "south": "up", "west": "side" } @@ -215626,7 +215772,7 @@ "properties": { "east": "up", "north": "none", - "power": "15", + "power": "14", "south": "up", "west": "none" } @@ -215636,7 +215782,7 @@ "properties": { "east": "up", "north": "none", - "power": "15", + "power": "14", "south": "side", "west": "up" } @@ -215646,7 +215792,7 @@ "properties": { "east": "up", "north": "none", - "power": "15", + "power": "14", "south": "side", "west": "side" } @@ -215656,7 +215802,7 @@ "properties": { "east": "up", "north": "none", - "power": "15", + "power": "14", "south": "side", "west": "none" } @@ -215666,7 +215812,7 @@ "properties": { "east": "up", "north": "none", - "power": "15", + "power": "14", "south": "none", "west": "up" } @@ -215676,7 +215822,7 @@ "properties": { "east": "up", "north": "none", - "power": "15", + "power": "14", "south": "none", "west": "side" } @@ -215686,7 +215832,7 @@ "properties": { "east": "up", "north": "none", - "power": "15", + "power": "14", "south": "none", "west": "none" } @@ -215694,9 +215840,9 @@ { "id": 3465, "properties": { - "east": "side", - "north": "up", - "power": "0", + "east": "up", + "north": "none", + "power": "15", "south": "up", "west": "up" } @@ -215704,9 +215850,9 @@ { "id": 3466, "properties": { - "east": "side", - "north": "up", - "power": "0", + "east": "up", + "north": "none", + "power": "15", "south": "up", "west": "side" } @@ -215714,9 +215860,9 @@ { "id": 3467, "properties": { - "east": "side", - "north": "up", - "power": "0", + "east": "up", + "north": "none", + "power": "15", "south": "up", "west": "none" } @@ -215724,9 +215870,9 @@ { "id": 3468, "properties": { - "east": "side", - "north": "up", - "power": "0", + "east": "up", + "north": "none", + "power": "15", "south": "side", "west": "up" } @@ -215734,9 +215880,9 @@ { "id": 3469, "properties": { - "east": "side", - "north": "up", - "power": "0", + "east": "up", + "north": "none", + "power": "15", "south": "side", "west": "side" } @@ -215744,9 +215890,9 @@ { "id": 3470, "properties": { - "east": "side", - "north": "up", - "power": "0", + "east": "up", + "north": "none", + "power": "15", "south": "side", "west": "none" } @@ -215754,9 +215900,9 @@ { "id": 3471, "properties": { - "east": "side", - "north": "up", - "power": "0", + "east": "up", + "north": "none", + "power": "15", "south": "none", "west": "up" } @@ -215764,9 +215910,9 @@ { "id": 3472, "properties": { - "east": "side", - "north": "up", - "power": "0", + "east": "up", + "north": "none", + "power": "15", "south": "none", "west": "side" } @@ -215774,9 +215920,9 @@ { "id": 3473, "properties": { - "east": "side", - "north": "up", - "power": "0", + "east": "up", + "north": "none", + "power": "15", "south": "none", "west": "none" } @@ -215786,7 +215932,7 @@ "properties": { "east": "side", "north": "up", - "power": "1", + "power": "0", "south": "up", "west": "up" } @@ -215796,7 +215942,7 @@ "properties": { "east": "side", "north": "up", - "power": "1", + "power": "0", "south": "up", "west": "side" } @@ -215806,7 +215952,7 @@ "properties": { "east": "side", "north": "up", - "power": "1", + "power": "0", "south": "up", "west": "none" } @@ -215816,7 +215962,7 @@ "properties": { "east": "side", "north": "up", - "power": "1", + "power": "0", "south": "side", "west": "up" } @@ -215826,7 +215972,7 @@ "properties": { "east": "side", "north": "up", - "power": "1", + "power": "0", "south": "side", "west": "side" } @@ -215836,7 +215982,7 @@ "properties": { "east": "side", "north": "up", - "power": "1", + "power": "0", "south": "side", "west": "none" } @@ -215846,7 +215992,7 @@ "properties": { "east": "side", "north": "up", - "power": "1", + "power": "0", "south": "none", "west": "up" } @@ -215856,7 +216002,7 @@ "properties": { "east": "side", "north": "up", - "power": "1", + "power": "0", "south": "none", "west": "side" } @@ -215866,7 +216012,7 @@ "properties": { "east": "side", "north": "up", - "power": "1", + "power": "0", "south": "none", "west": "none" } @@ -215876,7 +216022,7 @@ "properties": { "east": "side", "north": "up", - "power": "2", + "power": "1", "south": "up", "west": "up" } @@ -215886,7 +216032,7 @@ "properties": { "east": "side", "north": "up", - "power": "2", + "power": "1", "south": "up", "west": "side" } @@ -215896,7 +216042,7 @@ "properties": { "east": "side", "north": "up", - "power": "2", + "power": "1", "south": "up", "west": "none" } @@ -215906,7 +216052,7 @@ "properties": { "east": "side", "north": "up", - "power": "2", + "power": "1", "south": "side", "west": "up" } @@ -215916,7 +216062,7 @@ "properties": { "east": "side", "north": "up", - "power": "2", + "power": "1", "south": "side", "west": "side" } @@ -215926,7 +216072,7 @@ "properties": { "east": "side", "north": "up", - "power": "2", + "power": "1", "south": "side", "west": "none" } @@ -215936,7 +216082,7 @@ "properties": { "east": "side", "north": "up", - "power": "2", + "power": "1", "south": "none", "west": "up" } @@ -215946,7 +216092,7 @@ "properties": { "east": "side", "north": "up", - "power": "2", + "power": "1", "south": "none", "west": "side" } @@ -215956,7 +216102,7 @@ "properties": { "east": "side", "north": "up", - "power": "2", + "power": "1", "south": "none", "west": "none" } @@ -215966,7 +216112,7 @@ "properties": { "east": "side", "north": "up", - "power": "3", + "power": "2", "south": "up", "west": "up" } @@ -215976,7 +216122,7 @@ "properties": { "east": "side", "north": "up", - "power": "3", + "power": "2", "south": "up", "west": "side" } @@ -215986,7 +216132,7 @@ "properties": { "east": "side", "north": "up", - "power": "3", + "power": "2", "south": "up", "west": "none" } @@ -215996,7 +216142,7 @@ "properties": { "east": "side", "north": "up", - "power": "3", + "power": "2", "south": "side", "west": "up" } @@ -216006,7 +216152,7 @@ "properties": { "east": "side", "north": "up", - "power": "3", + "power": "2", "south": "side", "west": "side" } @@ -216016,7 +216162,7 @@ "properties": { "east": "side", "north": "up", - "power": "3", + "power": "2", "south": "side", "west": "none" } @@ -216026,7 +216172,7 @@ "properties": { "east": "side", "north": "up", - "power": "3", + "power": "2", "south": "none", "west": "up" } @@ -216036,7 +216182,7 @@ "properties": { "east": "side", "north": "up", - "power": "3", + "power": "2", "south": "none", "west": "side" } @@ -216046,7 +216192,7 @@ "properties": { "east": "side", "north": "up", - "power": "3", + "power": "2", "south": "none", "west": "none" } @@ -216056,7 +216202,7 @@ "properties": { "east": "side", "north": "up", - "power": "4", + "power": "3", "south": "up", "west": "up" } @@ -216066,7 +216212,7 @@ "properties": { "east": "side", "north": "up", - "power": "4", + "power": "3", "south": "up", "west": "side" } @@ -216076,7 +216222,7 @@ "properties": { "east": "side", "north": "up", - "power": "4", + "power": "3", "south": "up", "west": "none" } @@ -216086,7 +216232,7 @@ "properties": { "east": "side", "north": "up", - "power": "4", + "power": "3", "south": "side", "west": "up" } @@ -216096,7 +216242,7 @@ "properties": { "east": "side", "north": "up", - "power": "4", + "power": "3", "south": "side", "west": "side" } @@ -216106,7 +216252,7 @@ "properties": { "east": "side", "north": "up", - "power": "4", + "power": "3", "south": "side", "west": "none" } @@ -216116,7 +216262,7 @@ "properties": { "east": "side", "north": "up", - "power": "4", + "power": "3", "south": "none", "west": "up" } @@ -216126,7 +216272,7 @@ "properties": { "east": "side", "north": "up", - "power": "4", + "power": "3", "south": "none", "west": "side" } @@ -216136,7 +216282,7 @@ "properties": { "east": "side", "north": "up", - "power": "4", + "power": "3", "south": "none", "west": "none" } @@ -216146,7 +216292,7 @@ "properties": { "east": "side", "north": "up", - "power": "5", + "power": "4", "south": "up", "west": "up" } @@ -216156,7 +216302,7 @@ "properties": { "east": "side", "north": "up", - "power": "5", + "power": "4", "south": "up", "west": "side" } @@ -216166,7 +216312,7 @@ "properties": { "east": "side", "north": "up", - "power": "5", + "power": "4", "south": "up", "west": "none" } @@ -216176,7 +216322,7 @@ "properties": { "east": "side", "north": "up", - "power": "5", + "power": "4", "south": "side", "west": "up" } @@ -216186,7 +216332,7 @@ "properties": { "east": "side", "north": "up", - "power": "5", + "power": "4", "south": "side", "west": "side" } @@ -216196,7 +216342,7 @@ "properties": { "east": "side", "north": "up", - "power": "5", + "power": "4", "south": "side", "west": "none" } @@ -216206,7 +216352,7 @@ "properties": { "east": "side", "north": "up", - "power": "5", + "power": "4", "south": "none", "west": "up" } @@ -216216,7 +216362,7 @@ "properties": { "east": "side", "north": "up", - "power": "5", + "power": "4", "south": "none", "west": "side" } @@ -216226,7 +216372,7 @@ "properties": { "east": "side", "north": "up", - "power": "5", + "power": "4", "south": "none", "west": "none" } @@ -216236,7 +216382,7 @@ "properties": { "east": "side", "north": "up", - "power": "6", + "power": "5", "south": "up", "west": "up" } @@ -216246,7 +216392,7 @@ "properties": { "east": "side", "north": "up", - "power": "6", + "power": "5", "south": "up", "west": "side" } @@ -216256,7 +216402,7 @@ "properties": { "east": "side", "north": "up", - "power": "6", + "power": "5", "south": "up", "west": "none" } @@ -216266,7 +216412,7 @@ "properties": { "east": "side", "north": "up", - "power": "6", + "power": "5", "south": "side", "west": "up" } @@ -216276,7 +216422,7 @@ "properties": { "east": "side", "north": "up", - "power": "6", + "power": "5", "south": "side", "west": "side" } @@ -216286,7 +216432,7 @@ "properties": { "east": "side", "north": "up", - "power": "6", + "power": "5", "south": "side", "west": "none" } @@ -216296,7 +216442,7 @@ "properties": { "east": "side", "north": "up", - "power": "6", + "power": "5", "south": "none", "west": "up" } @@ -216306,7 +216452,7 @@ "properties": { "east": "side", "north": "up", - "power": "6", + "power": "5", "south": "none", "west": "side" } @@ -216316,7 +216462,7 @@ "properties": { "east": "side", "north": "up", - "power": "6", + "power": "5", "south": "none", "west": "none" } @@ -216326,7 +216472,7 @@ "properties": { "east": "side", "north": "up", - "power": "7", + "power": "6", "south": "up", "west": "up" } @@ -216336,7 +216482,7 @@ "properties": { "east": "side", "north": "up", - "power": "7", + "power": "6", "south": "up", "west": "side" } @@ -216346,7 +216492,7 @@ "properties": { "east": "side", "north": "up", - "power": "7", + "power": "6", "south": "up", "west": "none" } @@ -216356,7 +216502,7 @@ "properties": { "east": "side", "north": "up", - "power": "7", + "power": "6", "south": "side", "west": "up" } @@ -216366,7 +216512,7 @@ "properties": { "east": "side", "north": "up", - "power": "7", + "power": "6", "south": "side", "west": "side" } @@ -216376,7 +216522,7 @@ "properties": { "east": "side", "north": "up", - "power": "7", + "power": "6", "south": "side", "west": "none" } @@ -216386,7 +216532,7 @@ "properties": { "east": "side", "north": "up", - "power": "7", + "power": "6", "south": "none", "west": "up" } @@ -216396,7 +216542,7 @@ "properties": { "east": "side", "north": "up", - "power": "7", + "power": "6", "south": "none", "west": "side" } @@ -216406,7 +216552,7 @@ "properties": { "east": "side", "north": "up", - "power": "7", + "power": "6", "south": "none", "west": "none" } @@ -216416,7 +216562,7 @@ "properties": { "east": "side", "north": "up", - "power": "8", + "power": "7", "south": "up", "west": "up" } @@ -216426,7 +216572,7 @@ "properties": { "east": "side", "north": "up", - "power": "8", + "power": "7", "south": "up", "west": "side" } @@ -216436,7 +216582,7 @@ "properties": { "east": "side", "north": "up", - "power": "8", + "power": "7", "south": "up", "west": "none" } @@ -216446,7 +216592,7 @@ "properties": { "east": "side", "north": "up", - "power": "8", + "power": "7", "south": "side", "west": "up" } @@ -216456,7 +216602,7 @@ "properties": { "east": "side", "north": "up", - "power": "8", + "power": "7", "south": "side", "west": "side" } @@ -216466,7 +216612,7 @@ "properties": { "east": "side", "north": "up", - "power": "8", + "power": "7", "south": "side", "west": "none" } @@ -216476,7 +216622,7 @@ "properties": { "east": "side", "north": "up", - "power": "8", + "power": "7", "south": "none", "west": "up" } @@ -216486,7 +216632,7 @@ "properties": { "east": "side", "north": "up", - "power": "8", + "power": "7", "south": "none", "west": "side" } @@ -216496,7 +216642,7 @@ "properties": { "east": "side", "north": "up", - "power": "8", + "power": "7", "south": "none", "west": "none" } @@ -216506,7 +216652,7 @@ "properties": { "east": "side", "north": "up", - "power": "9", + "power": "8", "south": "up", "west": "up" } @@ -216516,7 +216662,7 @@ "properties": { "east": "side", "north": "up", - "power": "9", + "power": "8", "south": "up", "west": "side" } @@ -216526,7 +216672,7 @@ "properties": { "east": "side", "north": "up", - "power": "9", + "power": "8", "south": "up", "west": "none" } @@ -216536,7 +216682,7 @@ "properties": { "east": "side", "north": "up", - "power": "9", + "power": "8", "south": "side", "west": "up" } @@ -216546,7 +216692,7 @@ "properties": { "east": "side", "north": "up", - "power": "9", + "power": "8", "south": "side", "west": "side" } @@ -216556,7 +216702,7 @@ "properties": { "east": "side", "north": "up", - "power": "9", + "power": "8", "south": "side", "west": "none" } @@ -216566,7 +216712,7 @@ "properties": { "east": "side", "north": "up", - "power": "9", + "power": "8", "south": "none", "west": "up" } @@ -216576,7 +216722,7 @@ "properties": { "east": "side", "north": "up", - "power": "9", + "power": "8", "south": "none", "west": "side" } @@ -216586,7 +216732,7 @@ "properties": { "east": "side", "north": "up", - "power": "9", + "power": "8", "south": "none", "west": "none" } @@ -216596,7 +216742,7 @@ "properties": { "east": "side", "north": "up", - "power": "10", + "power": "9", "south": "up", "west": "up" } @@ -216606,7 +216752,7 @@ "properties": { "east": "side", "north": "up", - "power": "10", + "power": "9", "south": "up", "west": "side" } @@ -216616,7 +216762,7 @@ "properties": { "east": "side", "north": "up", - "power": "10", + "power": "9", "south": "up", "west": "none" } @@ -216626,7 +216772,7 @@ "properties": { "east": "side", "north": "up", - "power": "10", + "power": "9", "south": "side", "west": "up" } @@ -216636,7 +216782,7 @@ "properties": { "east": "side", "north": "up", - "power": "10", + "power": "9", "south": "side", "west": "side" } @@ -216646,7 +216792,7 @@ "properties": { "east": "side", "north": "up", - "power": "10", + "power": "9", "south": "side", "west": "none" } @@ -216656,7 +216802,7 @@ "properties": { "east": "side", "north": "up", - "power": "10", + "power": "9", "south": "none", "west": "up" } @@ -216666,7 +216812,7 @@ "properties": { "east": "side", "north": "up", - "power": "10", + "power": "9", "south": "none", "west": "side" } @@ -216676,7 +216822,7 @@ "properties": { "east": "side", "north": "up", - "power": "10", + "power": "9", "south": "none", "west": "none" } @@ -216686,7 +216832,7 @@ "properties": { "east": "side", "north": "up", - "power": "11", + "power": "10", "south": "up", "west": "up" } @@ -216696,7 +216842,7 @@ "properties": { "east": "side", "north": "up", - "power": "11", + "power": "10", "south": "up", "west": "side" } @@ -216706,7 +216852,7 @@ "properties": { "east": "side", "north": "up", - "power": "11", + "power": "10", "south": "up", "west": "none" } @@ -216716,7 +216862,7 @@ "properties": { "east": "side", "north": "up", - "power": "11", + "power": "10", "south": "side", "west": "up" } @@ -216726,7 +216872,7 @@ "properties": { "east": "side", "north": "up", - "power": "11", + "power": "10", "south": "side", "west": "side" } @@ -216736,7 +216882,7 @@ "properties": { "east": "side", "north": "up", - "power": "11", + "power": "10", "south": "side", "west": "none" } @@ -216746,7 +216892,7 @@ "properties": { "east": "side", "north": "up", - "power": "11", + "power": "10", "south": "none", "west": "up" } @@ -216756,7 +216902,7 @@ "properties": { "east": "side", "north": "up", - "power": "11", + "power": "10", "south": "none", "west": "side" } @@ -216766,7 +216912,7 @@ "properties": { "east": "side", "north": "up", - "power": "11", + "power": "10", "south": "none", "west": "none" } @@ -216776,7 +216922,7 @@ "properties": { "east": "side", "north": "up", - "power": "12", + "power": "11", "south": "up", "west": "up" } @@ -216786,7 +216932,7 @@ "properties": { "east": "side", "north": "up", - "power": "12", + "power": "11", "south": "up", "west": "side" } @@ -216796,7 +216942,7 @@ "properties": { "east": "side", "north": "up", - "power": "12", + "power": "11", "south": "up", "west": "none" } @@ -216806,7 +216952,7 @@ "properties": { "east": "side", "north": "up", - "power": "12", + "power": "11", "south": "side", "west": "up" } @@ -216816,7 +216962,7 @@ "properties": { "east": "side", "north": "up", - "power": "12", + "power": "11", "south": "side", "west": "side" } @@ -216826,7 +216972,7 @@ "properties": { "east": "side", "north": "up", - "power": "12", + "power": "11", "south": "side", "west": "none" } @@ -216836,7 +216982,7 @@ "properties": { "east": "side", "north": "up", - "power": "12", + "power": "11", "south": "none", "west": "up" } @@ -216846,7 +216992,7 @@ "properties": { "east": "side", "north": "up", - "power": "12", + "power": "11", "south": "none", "west": "side" } @@ -216856,7 +217002,7 @@ "properties": { "east": "side", "north": "up", - "power": "12", + "power": "11", "south": "none", "west": "none" } @@ -216866,7 +217012,7 @@ "properties": { "east": "side", "north": "up", - "power": "13", + "power": "12", "south": "up", "west": "up" } @@ -216876,7 +217022,7 @@ "properties": { "east": "side", "north": "up", - "power": "13", + "power": "12", "south": "up", "west": "side" } @@ -216886,7 +217032,7 @@ "properties": { "east": "side", "north": "up", - "power": "13", + "power": "12", "south": "up", "west": "none" } @@ -216896,7 +217042,7 @@ "properties": { "east": "side", "north": "up", - "power": "13", + "power": "12", "south": "side", "west": "up" } @@ -216906,7 +217052,7 @@ "properties": { "east": "side", "north": "up", - "power": "13", + "power": "12", "south": "side", "west": "side" } @@ -216916,7 +217062,7 @@ "properties": { "east": "side", "north": "up", - "power": "13", + "power": "12", "south": "side", "west": "none" } @@ -216926,7 +217072,7 @@ "properties": { "east": "side", "north": "up", - "power": "13", + "power": "12", "south": "none", "west": "up" } @@ -216936,7 +217082,7 @@ "properties": { "east": "side", "north": "up", - "power": "13", + "power": "12", "south": "none", "west": "side" } @@ -216946,7 +217092,7 @@ "properties": { "east": "side", "north": "up", - "power": "13", + "power": "12", "south": "none", "west": "none" } @@ -216956,7 +217102,7 @@ "properties": { "east": "side", "north": "up", - "power": "14", + "power": "13", "south": "up", "west": "up" } @@ -216966,7 +217112,7 @@ "properties": { "east": "side", "north": "up", - "power": "14", + "power": "13", "south": "up", "west": "side" } @@ -216976,7 +217122,7 @@ "properties": { "east": "side", "north": "up", - "power": "14", + "power": "13", "south": "up", "west": "none" } @@ -216986,7 +217132,7 @@ "properties": { "east": "side", "north": "up", - "power": "14", + "power": "13", "south": "side", "west": "up" } @@ -216996,7 +217142,7 @@ "properties": { "east": "side", "north": "up", - "power": "14", + "power": "13", "south": "side", "west": "side" } @@ -217006,7 +217152,7 @@ "properties": { "east": "side", "north": "up", - "power": "14", + "power": "13", "south": "side", "west": "none" } @@ -217016,7 +217162,7 @@ "properties": { "east": "side", "north": "up", - "power": "14", + "power": "13", "south": "none", "west": "up" } @@ -217026,7 +217172,7 @@ "properties": { "east": "side", "north": "up", - "power": "14", + "power": "13", "south": "none", "west": "side" } @@ -217036,7 +217182,7 @@ "properties": { "east": "side", "north": "up", - "power": "14", + "power": "13", "south": "none", "west": "none" } @@ -217046,7 +217192,7 @@ "properties": { "east": "side", "north": "up", - "power": "15", + "power": "14", "south": "up", "west": "up" } @@ -217056,7 +217202,7 @@ "properties": { "east": "side", "north": "up", - "power": "15", + "power": "14", "south": "up", "west": "side" } @@ -217066,7 +217212,7 @@ "properties": { "east": "side", "north": "up", - "power": "15", + "power": "14", "south": "up", "west": "none" } @@ -217076,7 +217222,7 @@ "properties": { "east": "side", "north": "up", - "power": "15", + "power": "14", "south": "side", "west": "up" } @@ -217086,7 +217232,7 @@ "properties": { "east": "side", "north": "up", - "power": "15", + "power": "14", "south": "side", "west": "side" } @@ -217096,7 +217242,7 @@ "properties": { "east": "side", "north": "up", - "power": "15", + "power": "14", "south": "side", "west": "none" } @@ -217106,7 +217252,7 @@ "properties": { "east": "side", "north": "up", - "power": "15", + "power": "14", "south": "none", "west": "up" } @@ -217116,7 +217262,7 @@ "properties": { "east": "side", "north": "up", - "power": "15", + "power": "14", "south": "none", "west": "side" } @@ -217126,7 +217272,7 @@ "properties": { "east": "side", "north": "up", - "power": "15", + "power": "14", "south": "none", "west": "none" } @@ -217135,8 +217281,8 @@ "id": 3609, "properties": { "east": "side", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "up", "west": "up" } @@ -217145,8 +217291,8 @@ "id": 3610, "properties": { "east": "side", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "up", "west": "side" } @@ -217155,8 +217301,8 @@ "id": 3611, "properties": { "east": "side", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "up", "west": "none" } @@ -217165,8 +217311,8 @@ "id": 3612, "properties": { "east": "side", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "side", "west": "up" } @@ -217175,8 +217321,8 @@ "id": 3613, "properties": { "east": "side", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "side", "west": "side" } @@ -217185,8 +217331,8 @@ "id": 3614, "properties": { "east": "side", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "side", "west": "none" } @@ -217195,8 +217341,8 @@ "id": 3615, "properties": { "east": "side", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "none", "west": "up" } @@ -217205,8 +217351,8 @@ "id": 3616, "properties": { "east": "side", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "none", "west": "side" } @@ -217215,8 +217361,8 @@ "id": 3617, "properties": { "east": "side", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "none", "west": "none" } @@ -217226,7 +217372,7 @@ "properties": { "east": "side", "north": "side", - "power": "1", + "power": "0", "south": "up", "west": "up" } @@ -217236,7 +217382,7 @@ "properties": { "east": "side", "north": "side", - "power": "1", + "power": "0", "south": "up", "west": "side" } @@ -217246,7 +217392,7 @@ "properties": { "east": "side", "north": "side", - "power": "1", + "power": "0", "south": "up", "west": "none" } @@ -217256,7 +217402,7 @@ "properties": { "east": "side", "north": "side", - "power": "1", + "power": "0", "south": "side", "west": "up" } @@ -217266,7 +217412,7 @@ "properties": { "east": "side", "north": "side", - "power": "1", + "power": "0", "south": "side", "west": "side" } @@ -217276,7 +217422,7 @@ "properties": { "east": "side", "north": "side", - "power": "1", + "power": "0", "south": "side", "west": "none" } @@ -217286,7 +217432,7 @@ "properties": { "east": "side", "north": "side", - "power": "1", + "power": "0", "south": "none", "west": "up" } @@ -217296,7 +217442,7 @@ "properties": { "east": "side", "north": "side", - "power": "1", + "power": "0", "south": "none", "west": "side" } @@ -217306,7 +217452,7 @@ "properties": { "east": "side", "north": "side", - "power": "1", + "power": "0", "south": "none", "west": "none" } @@ -217316,7 +217462,7 @@ "properties": { "east": "side", "north": "side", - "power": "2", + "power": "1", "south": "up", "west": "up" } @@ -217326,7 +217472,7 @@ "properties": { "east": "side", "north": "side", - "power": "2", + "power": "1", "south": "up", "west": "side" } @@ -217336,7 +217482,7 @@ "properties": { "east": "side", "north": "side", - "power": "2", + "power": "1", "south": "up", "west": "none" } @@ -217346,7 +217492,7 @@ "properties": { "east": "side", "north": "side", - "power": "2", + "power": "1", "south": "side", "west": "up" } @@ -217356,7 +217502,7 @@ "properties": { "east": "side", "north": "side", - "power": "2", + "power": "1", "south": "side", "west": "side" } @@ -217366,7 +217512,7 @@ "properties": { "east": "side", "north": "side", - "power": "2", + "power": "1", "south": "side", "west": "none" } @@ -217376,7 +217522,7 @@ "properties": { "east": "side", "north": "side", - "power": "2", + "power": "1", "south": "none", "west": "up" } @@ -217386,7 +217532,7 @@ "properties": { "east": "side", "north": "side", - "power": "2", + "power": "1", "south": "none", "west": "side" } @@ -217396,7 +217542,7 @@ "properties": { "east": "side", "north": "side", - "power": "2", + "power": "1", "south": "none", "west": "none" } @@ -217406,7 +217552,7 @@ "properties": { "east": "side", "north": "side", - "power": "3", + "power": "2", "south": "up", "west": "up" } @@ -217416,7 +217562,7 @@ "properties": { "east": "side", "north": "side", - "power": "3", + "power": "2", "south": "up", "west": "side" } @@ -217426,7 +217572,7 @@ "properties": { "east": "side", "north": "side", - "power": "3", + "power": "2", "south": "up", "west": "none" } @@ -217436,7 +217582,7 @@ "properties": { "east": "side", "north": "side", - "power": "3", + "power": "2", "south": "side", "west": "up" } @@ -217446,7 +217592,7 @@ "properties": { "east": "side", "north": "side", - "power": "3", + "power": "2", "south": "side", "west": "side" } @@ -217456,7 +217602,7 @@ "properties": { "east": "side", "north": "side", - "power": "3", + "power": "2", "south": "side", "west": "none" } @@ -217466,7 +217612,7 @@ "properties": { "east": "side", "north": "side", - "power": "3", + "power": "2", "south": "none", "west": "up" } @@ -217476,7 +217622,7 @@ "properties": { "east": "side", "north": "side", - "power": "3", + "power": "2", "south": "none", "west": "side" } @@ -217486,7 +217632,7 @@ "properties": { "east": "side", "north": "side", - "power": "3", + "power": "2", "south": "none", "west": "none" } @@ -217496,7 +217642,7 @@ "properties": { "east": "side", "north": "side", - "power": "4", + "power": "3", "south": "up", "west": "up" } @@ -217506,7 +217652,7 @@ "properties": { "east": "side", "north": "side", - "power": "4", + "power": "3", "south": "up", "west": "side" } @@ -217516,7 +217662,7 @@ "properties": { "east": "side", "north": "side", - "power": "4", + "power": "3", "south": "up", "west": "none" } @@ -217526,7 +217672,7 @@ "properties": { "east": "side", "north": "side", - "power": "4", + "power": "3", "south": "side", "west": "up" } @@ -217536,7 +217682,7 @@ "properties": { "east": "side", "north": "side", - "power": "4", + "power": "3", "south": "side", "west": "side" } @@ -217546,7 +217692,7 @@ "properties": { "east": "side", "north": "side", - "power": "4", + "power": "3", "south": "side", "west": "none" } @@ -217556,7 +217702,7 @@ "properties": { "east": "side", "north": "side", - "power": "4", + "power": "3", "south": "none", "west": "up" } @@ -217566,7 +217712,7 @@ "properties": { "east": "side", "north": "side", - "power": "4", + "power": "3", "south": "none", "west": "side" } @@ -217576,7 +217722,7 @@ "properties": { "east": "side", "north": "side", - "power": "4", + "power": "3", "south": "none", "west": "none" } @@ -217586,7 +217732,7 @@ "properties": { "east": "side", "north": "side", - "power": "5", + "power": "4", "south": "up", "west": "up" } @@ -217596,7 +217742,7 @@ "properties": { "east": "side", "north": "side", - "power": "5", + "power": "4", "south": "up", "west": "side" } @@ -217606,7 +217752,7 @@ "properties": { "east": "side", "north": "side", - "power": "5", + "power": "4", "south": "up", "west": "none" } @@ -217616,7 +217762,7 @@ "properties": { "east": "side", "north": "side", - "power": "5", + "power": "4", "south": "side", "west": "up" } @@ -217626,7 +217772,7 @@ "properties": { "east": "side", "north": "side", - "power": "5", + "power": "4", "south": "side", "west": "side" } @@ -217636,7 +217782,7 @@ "properties": { "east": "side", "north": "side", - "power": "5", + "power": "4", "south": "side", "west": "none" } @@ -217646,7 +217792,7 @@ "properties": { "east": "side", "north": "side", - "power": "5", + "power": "4", "south": "none", "west": "up" } @@ -217656,7 +217802,7 @@ "properties": { "east": "side", "north": "side", - "power": "5", + "power": "4", "south": "none", "west": "side" } @@ -217666,7 +217812,7 @@ "properties": { "east": "side", "north": "side", - "power": "5", + "power": "4", "south": "none", "west": "none" } @@ -217676,7 +217822,7 @@ "properties": { "east": "side", "north": "side", - "power": "6", + "power": "5", "south": "up", "west": "up" } @@ -217686,7 +217832,7 @@ "properties": { "east": "side", "north": "side", - "power": "6", + "power": "5", "south": "up", "west": "side" } @@ -217696,7 +217842,7 @@ "properties": { "east": "side", "north": "side", - "power": "6", + "power": "5", "south": "up", "west": "none" } @@ -217706,7 +217852,7 @@ "properties": { "east": "side", "north": "side", - "power": "6", + "power": "5", "south": "side", "west": "up" } @@ -217716,7 +217862,7 @@ "properties": { "east": "side", "north": "side", - "power": "6", + "power": "5", "south": "side", "west": "side" } @@ -217726,7 +217872,7 @@ "properties": { "east": "side", "north": "side", - "power": "6", + "power": "5", "south": "side", "west": "none" } @@ -217736,7 +217882,7 @@ "properties": { "east": "side", "north": "side", - "power": "6", + "power": "5", "south": "none", "west": "up" } @@ -217746,7 +217892,7 @@ "properties": { "east": "side", "north": "side", - "power": "6", + "power": "5", "south": "none", "west": "side" } @@ -217756,7 +217902,7 @@ "properties": { "east": "side", "north": "side", - "power": "6", + "power": "5", "south": "none", "west": "none" } @@ -217766,7 +217912,7 @@ "properties": { "east": "side", "north": "side", - "power": "7", + "power": "6", "south": "up", "west": "up" } @@ -217776,7 +217922,7 @@ "properties": { "east": "side", "north": "side", - "power": "7", + "power": "6", "south": "up", "west": "side" } @@ -217786,7 +217932,7 @@ "properties": { "east": "side", "north": "side", - "power": "7", + "power": "6", "south": "up", "west": "none" } @@ -217796,7 +217942,7 @@ "properties": { "east": "side", "north": "side", - "power": "7", + "power": "6", "south": "side", "west": "up" } @@ -217806,7 +217952,7 @@ "properties": { "east": "side", "north": "side", - "power": "7", + "power": "6", "south": "side", "west": "side" } @@ -217816,7 +217962,7 @@ "properties": { "east": "side", "north": "side", - "power": "7", + "power": "6", "south": "side", "west": "none" } @@ -217826,7 +217972,7 @@ "properties": { "east": "side", "north": "side", - "power": "7", + "power": "6", "south": "none", "west": "up" } @@ -217836,7 +217982,7 @@ "properties": { "east": "side", "north": "side", - "power": "7", + "power": "6", "south": "none", "west": "side" } @@ -217846,7 +217992,7 @@ "properties": { "east": "side", "north": "side", - "power": "7", + "power": "6", "south": "none", "west": "none" } @@ -217856,7 +218002,7 @@ "properties": { "east": "side", "north": "side", - "power": "8", + "power": "7", "south": "up", "west": "up" } @@ -217866,7 +218012,7 @@ "properties": { "east": "side", "north": "side", - "power": "8", + "power": "7", "south": "up", "west": "side" } @@ -217876,7 +218022,7 @@ "properties": { "east": "side", "north": "side", - "power": "8", + "power": "7", "south": "up", "west": "none" } @@ -217886,7 +218032,7 @@ "properties": { "east": "side", "north": "side", - "power": "8", + "power": "7", "south": "side", "west": "up" } @@ -217896,7 +218042,7 @@ "properties": { "east": "side", "north": "side", - "power": "8", + "power": "7", "south": "side", "west": "side" } @@ -217906,7 +218052,7 @@ "properties": { "east": "side", "north": "side", - "power": "8", + "power": "7", "south": "side", "west": "none" } @@ -217916,7 +218062,7 @@ "properties": { "east": "side", "north": "side", - "power": "8", + "power": "7", "south": "none", "west": "up" } @@ -217926,7 +218072,7 @@ "properties": { "east": "side", "north": "side", - "power": "8", + "power": "7", "south": "none", "west": "side" } @@ -217936,7 +218082,7 @@ "properties": { "east": "side", "north": "side", - "power": "8", + "power": "7", "south": "none", "west": "none" } @@ -217946,7 +218092,7 @@ "properties": { "east": "side", "north": "side", - "power": "9", + "power": "8", "south": "up", "west": "up" } @@ -217956,7 +218102,7 @@ "properties": { "east": "side", "north": "side", - "power": "9", + "power": "8", "south": "up", "west": "side" } @@ -217966,7 +218112,7 @@ "properties": { "east": "side", "north": "side", - "power": "9", + "power": "8", "south": "up", "west": "none" } @@ -217976,7 +218122,7 @@ "properties": { "east": "side", "north": "side", - "power": "9", + "power": "8", "south": "side", "west": "up" } @@ -217986,7 +218132,7 @@ "properties": { "east": "side", "north": "side", - "power": "9", + "power": "8", "south": "side", "west": "side" } @@ -217996,7 +218142,7 @@ "properties": { "east": "side", "north": "side", - "power": "9", + "power": "8", "south": "side", "west": "none" } @@ -218006,7 +218152,7 @@ "properties": { "east": "side", "north": "side", - "power": "9", + "power": "8", "south": "none", "west": "up" } @@ -218016,7 +218162,7 @@ "properties": { "east": "side", "north": "side", - "power": "9", + "power": "8", "south": "none", "west": "side" } @@ -218026,7 +218172,7 @@ "properties": { "east": "side", "north": "side", - "power": "9", + "power": "8", "south": "none", "west": "none" } @@ -218036,7 +218182,7 @@ "properties": { "east": "side", "north": "side", - "power": "10", + "power": "9", "south": "up", "west": "up" } @@ -218046,7 +218192,7 @@ "properties": { "east": "side", "north": "side", - "power": "10", + "power": "9", "south": "up", "west": "side" } @@ -218056,7 +218202,7 @@ "properties": { "east": "side", "north": "side", - "power": "10", + "power": "9", "south": "up", "west": "none" } @@ -218066,7 +218212,7 @@ "properties": { "east": "side", "north": "side", - "power": "10", + "power": "9", "south": "side", "west": "up" } @@ -218076,7 +218222,7 @@ "properties": { "east": "side", "north": "side", - "power": "10", + "power": "9", "south": "side", "west": "side" } @@ -218086,7 +218232,7 @@ "properties": { "east": "side", "north": "side", - "power": "10", + "power": "9", "south": "side", "west": "none" } @@ -218096,7 +218242,7 @@ "properties": { "east": "side", "north": "side", - "power": "10", + "power": "9", "south": "none", "west": "up" } @@ -218106,7 +218252,7 @@ "properties": { "east": "side", "north": "side", - "power": "10", + "power": "9", "south": "none", "west": "side" } @@ -218116,7 +218262,7 @@ "properties": { "east": "side", "north": "side", - "power": "10", + "power": "9", "south": "none", "west": "none" } @@ -218126,7 +218272,7 @@ "properties": { "east": "side", "north": "side", - "power": "11", + "power": "10", "south": "up", "west": "up" } @@ -218136,7 +218282,7 @@ "properties": { "east": "side", "north": "side", - "power": "11", + "power": "10", "south": "up", "west": "side" } @@ -218146,7 +218292,7 @@ "properties": { "east": "side", "north": "side", - "power": "11", + "power": "10", "south": "up", "west": "none" } @@ -218156,7 +218302,7 @@ "properties": { "east": "side", "north": "side", - "power": "11", + "power": "10", "south": "side", "west": "up" } @@ -218166,7 +218312,7 @@ "properties": { "east": "side", "north": "side", - "power": "11", + "power": "10", "south": "side", "west": "side" } @@ -218176,7 +218322,7 @@ "properties": { "east": "side", "north": "side", - "power": "11", + "power": "10", "south": "side", "west": "none" } @@ -218186,7 +218332,7 @@ "properties": { "east": "side", "north": "side", - "power": "11", + "power": "10", "south": "none", "west": "up" } @@ -218196,7 +218342,7 @@ "properties": { "east": "side", "north": "side", - "power": "11", + "power": "10", "south": "none", "west": "side" } @@ -218206,7 +218352,7 @@ "properties": { "east": "side", "north": "side", - "power": "11", + "power": "10", "south": "none", "west": "none" } @@ -218216,7 +218362,7 @@ "properties": { "east": "side", "north": "side", - "power": "12", + "power": "11", "south": "up", "west": "up" } @@ -218226,7 +218372,7 @@ "properties": { "east": "side", "north": "side", - "power": "12", + "power": "11", "south": "up", "west": "side" } @@ -218236,7 +218382,7 @@ "properties": { "east": "side", "north": "side", - "power": "12", + "power": "11", "south": "up", "west": "none" } @@ -218246,7 +218392,7 @@ "properties": { "east": "side", "north": "side", - "power": "12", + "power": "11", "south": "side", "west": "up" } @@ -218256,7 +218402,7 @@ "properties": { "east": "side", "north": "side", - "power": "12", + "power": "11", "south": "side", "west": "side" } @@ -218266,7 +218412,7 @@ "properties": { "east": "side", "north": "side", - "power": "12", + "power": "11", "south": "side", "west": "none" } @@ -218276,7 +218422,7 @@ "properties": { "east": "side", "north": "side", - "power": "12", + "power": "11", "south": "none", "west": "up" } @@ -218286,7 +218432,7 @@ "properties": { "east": "side", "north": "side", - "power": "12", + "power": "11", "south": "none", "west": "side" } @@ -218296,7 +218442,7 @@ "properties": { "east": "side", "north": "side", - "power": "12", + "power": "11", "south": "none", "west": "none" } @@ -218306,7 +218452,7 @@ "properties": { "east": "side", "north": "side", - "power": "13", + "power": "12", "south": "up", "west": "up" } @@ -218316,7 +218462,7 @@ "properties": { "east": "side", "north": "side", - "power": "13", + "power": "12", "south": "up", "west": "side" } @@ -218326,7 +218472,7 @@ "properties": { "east": "side", "north": "side", - "power": "13", + "power": "12", "south": "up", "west": "none" } @@ -218336,7 +218482,7 @@ "properties": { "east": "side", "north": "side", - "power": "13", + "power": "12", "south": "side", "west": "up" } @@ -218346,7 +218492,7 @@ "properties": { "east": "side", "north": "side", - "power": "13", + "power": "12", "south": "side", "west": "side" } @@ -218356,7 +218502,7 @@ "properties": { "east": "side", "north": "side", - "power": "13", + "power": "12", "south": "side", "west": "none" } @@ -218366,7 +218512,7 @@ "properties": { "east": "side", "north": "side", - "power": "13", + "power": "12", "south": "none", "west": "up" } @@ -218376,7 +218522,7 @@ "properties": { "east": "side", "north": "side", - "power": "13", + "power": "12", "south": "none", "west": "side" } @@ -218386,7 +218532,7 @@ "properties": { "east": "side", "north": "side", - "power": "13", + "power": "12", "south": "none", "west": "none" } @@ -218396,7 +218542,7 @@ "properties": { "east": "side", "north": "side", - "power": "14", + "power": "13", "south": "up", "west": "up" } @@ -218406,7 +218552,7 @@ "properties": { "east": "side", "north": "side", - "power": "14", + "power": "13", "south": "up", "west": "side" } @@ -218416,7 +218562,7 @@ "properties": { "east": "side", "north": "side", - "power": "14", + "power": "13", "south": "up", "west": "none" } @@ -218426,7 +218572,7 @@ "properties": { "east": "side", "north": "side", - "power": "14", + "power": "13", "south": "side", "west": "up" } @@ -218436,7 +218582,7 @@ "properties": { "east": "side", "north": "side", - "power": "14", + "power": "13", "south": "side", "west": "side" } @@ -218446,7 +218592,7 @@ "properties": { "east": "side", "north": "side", - "power": "14", + "power": "13", "south": "side", "west": "none" } @@ -218456,7 +218602,7 @@ "properties": { "east": "side", "north": "side", - "power": "14", + "power": "13", "south": "none", "west": "up" } @@ -218466,7 +218612,7 @@ "properties": { "east": "side", "north": "side", - "power": "14", + "power": "13", "south": "none", "west": "side" } @@ -218476,7 +218622,7 @@ "properties": { "east": "side", "north": "side", - "power": "14", + "power": "13", "south": "none", "west": "none" } @@ -218486,7 +218632,7 @@ "properties": { "east": "side", "north": "side", - "power": "15", + "power": "14", "south": "up", "west": "up" } @@ -218496,7 +218642,7 @@ "properties": { "east": "side", "north": "side", - "power": "15", + "power": "14", "south": "up", "west": "side" } @@ -218506,7 +218652,7 @@ "properties": { "east": "side", "north": "side", - "power": "15", + "power": "14", "south": "up", "west": "none" } @@ -218516,7 +218662,7 @@ "properties": { "east": "side", "north": "side", - "power": "15", + "power": "14", "south": "side", "west": "up" } @@ -218526,7 +218672,7 @@ "properties": { "east": "side", "north": "side", - "power": "15", + "power": "14", "south": "side", "west": "side" } @@ -218536,7 +218682,7 @@ "properties": { "east": "side", "north": "side", - "power": "15", + "power": "14", "south": "side", "west": "none" } @@ -218546,7 +218692,7 @@ "properties": { "east": "side", "north": "side", - "power": "15", + "power": "14", "south": "none", "west": "up" } @@ -218556,7 +218702,7 @@ "properties": { "east": "side", "north": "side", - "power": "15", + "power": "14", "south": "none", "west": "side" } @@ -218566,7 +218712,7 @@ "properties": { "east": "side", "north": "side", - "power": "15", + "power": "14", "south": "none", "west": "none" } @@ -218575,8 +218721,8 @@ "id": 3753, "properties": { "east": "side", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "up", "west": "up" } @@ -218585,8 +218731,8 @@ "id": 3754, "properties": { "east": "side", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "up", "west": "side" } @@ -218595,8 +218741,8 @@ "id": 3755, "properties": { "east": "side", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "up", "west": "none" } @@ -218605,8 +218751,8 @@ "id": 3756, "properties": { "east": "side", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "side", "west": "up" } @@ -218615,8 +218761,8 @@ "id": 3757, "properties": { "east": "side", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "side", "west": "side" } @@ -218625,8 +218771,8 @@ "id": 3758, "properties": { "east": "side", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "side", "west": "none" } @@ -218635,8 +218781,8 @@ "id": 3759, "properties": { "east": "side", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "none", "west": "up" } @@ -218645,8 +218791,8 @@ "id": 3760, "properties": { "east": "side", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "none", "west": "side" } @@ -218655,8 +218801,8 @@ "id": 3761, "properties": { "east": "side", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "none", "west": "none" } @@ -218666,7 +218812,7 @@ "properties": { "east": "side", "north": "none", - "power": "1", + "power": "0", "south": "up", "west": "up" } @@ -218676,7 +218822,7 @@ "properties": { "east": "side", "north": "none", - "power": "1", + "power": "0", "south": "up", "west": "side" } @@ -218686,7 +218832,7 @@ "properties": { "east": "side", "north": "none", - "power": "1", + "power": "0", "south": "up", "west": "none" } @@ -218696,7 +218842,7 @@ "properties": { "east": "side", "north": "none", - "power": "1", + "power": "0", "south": "side", "west": "up" } @@ -218706,7 +218852,7 @@ "properties": { "east": "side", "north": "none", - "power": "1", + "power": "0", "south": "side", "west": "side" } @@ -218716,7 +218862,7 @@ "properties": { "east": "side", "north": "none", - "power": "1", + "power": "0", "south": "side", "west": "none" } @@ -218726,7 +218872,7 @@ "properties": { "east": "side", "north": "none", - "power": "1", + "power": "0", "south": "none", "west": "up" } @@ -218736,7 +218882,7 @@ "properties": { "east": "side", "north": "none", - "power": "1", + "power": "0", "south": "none", "west": "side" } @@ -218746,7 +218892,7 @@ "properties": { "east": "side", "north": "none", - "power": "1", + "power": "0", "south": "none", "west": "none" } @@ -218756,7 +218902,7 @@ "properties": { "east": "side", "north": "none", - "power": "2", + "power": "1", "south": "up", "west": "up" } @@ -218766,7 +218912,7 @@ "properties": { "east": "side", "north": "none", - "power": "2", + "power": "1", "south": "up", "west": "side" } @@ -218776,7 +218922,7 @@ "properties": { "east": "side", "north": "none", - "power": "2", + "power": "1", "south": "up", "west": "none" } @@ -218786,7 +218932,7 @@ "properties": { "east": "side", "north": "none", - "power": "2", + "power": "1", "south": "side", "west": "up" } @@ -218796,7 +218942,7 @@ "properties": { "east": "side", "north": "none", - "power": "2", + "power": "1", "south": "side", "west": "side" } @@ -218806,7 +218952,7 @@ "properties": { "east": "side", "north": "none", - "power": "2", + "power": "1", "south": "side", "west": "none" } @@ -218816,7 +218962,7 @@ "properties": { "east": "side", "north": "none", - "power": "2", + "power": "1", "south": "none", "west": "up" } @@ -218826,7 +218972,7 @@ "properties": { "east": "side", "north": "none", - "power": "2", + "power": "1", "south": "none", "west": "side" } @@ -218836,7 +218982,7 @@ "properties": { "east": "side", "north": "none", - "power": "2", + "power": "1", "south": "none", "west": "none" } @@ -218846,7 +218992,7 @@ "properties": { "east": "side", "north": "none", - "power": "3", + "power": "2", "south": "up", "west": "up" } @@ -218856,7 +219002,7 @@ "properties": { "east": "side", "north": "none", - "power": "3", + "power": "2", "south": "up", "west": "side" } @@ -218866,7 +219012,7 @@ "properties": { "east": "side", "north": "none", - "power": "3", + "power": "2", "south": "up", "west": "none" } @@ -218876,7 +219022,7 @@ "properties": { "east": "side", "north": "none", - "power": "3", + "power": "2", "south": "side", "west": "up" } @@ -218886,7 +219032,7 @@ "properties": { "east": "side", "north": "none", - "power": "3", + "power": "2", "south": "side", "west": "side" } @@ -218896,7 +219042,7 @@ "properties": { "east": "side", "north": "none", - "power": "3", + "power": "2", "south": "side", "west": "none" } @@ -218906,7 +219052,7 @@ "properties": { "east": "side", "north": "none", - "power": "3", + "power": "2", "south": "none", "west": "up" } @@ -218916,7 +219062,7 @@ "properties": { "east": "side", "north": "none", - "power": "3", + "power": "2", "south": "none", "west": "side" } @@ -218926,7 +219072,7 @@ "properties": { "east": "side", "north": "none", - "power": "3", + "power": "2", "south": "none", "west": "none" } @@ -218936,7 +219082,7 @@ "properties": { "east": "side", "north": "none", - "power": "4", + "power": "3", "south": "up", "west": "up" } @@ -218946,7 +219092,7 @@ "properties": { "east": "side", "north": "none", - "power": "4", + "power": "3", "south": "up", "west": "side" } @@ -218956,7 +219102,7 @@ "properties": { "east": "side", "north": "none", - "power": "4", + "power": "3", "south": "up", "west": "none" } @@ -218966,7 +219112,7 @@ "properties": { "east": "side", "north": "none", - "power": "4", + "power": "3", "south": "side", "west": "up" } @@ -218976,7 +219122,7 @@ "properties": { "east": "side", "north": "none", - "power": "4", + "power": "3", "south": "side", "west": "side" } @@ -218986,7 +219132,7 @@ "properties": { "east": "side", "north": "none", - "power": "4", + "power": "3", "south": "side", "west": "none" } @@ -218996,7 +219142,7 @@ "properties": { "east": "side", "north": "none", - "power": "4", + "power": "3", "south": "none", "west": "up" } @@ -219006,7 +219152,7 @@ "properties": { "east": "side", "north": "none", - "power": "4", + "power": "3", "south": "none", "west": "side" } @@ -219016,7 +219162,7 @@ "properties": { "east": "side", "north": "none", - "power": "4", + "power": "3", "south": "none", "west": "none" } @@ -219026,7 +219172,7 @@ "properties": { "east": "side", "north": "none", - "power": "5", + "power": "4", "south": "up", "west": "up" } @@ -219036,7 +219182,7 @@ "properties": { "east": "side", "north": "none", - "power": "5", + "power": "4", "south": "up", "west": "side" } @@ -219046,7 +219192,7 @@ "properties": { "east": "side", "north": "none", - "power": "5", + "power": "4", "south": "up", "west": "none" } @@ -219056,7 +219202,7 @@ "properties": { "east": "side", "north": "none", - "power": "5", + "power": "4", "south": "side", "west": "up" } @@ -219066,7 +219212,7 @@ "properties": { "east": "side", "north": "none", - "power": "5", + "power": "4", "south": "side", "west": "side" } @@ -219076,7 +219222,7 @@ "properties": { "east": "side", "north": "none", - "power": "5", + "power": "4", "south": "side", "west": "none" } @@ -219086,7 +219232,7 @@ "properties": { "east": "side", "north": "none", - "power": "5", + "power": "4", "south": "none", "west": "up" } @@ -219096,7 +219242,7 @@ "properties": { "east": "side", "north": "none", - "power": "5", + "power": "4", "south": "none", "west": "side" } @@ -219106,7 +219252,7 @@ "properties": { "east": "side", "north": "none", - "power": "5", + "power": "4", "south": "none", "west": "none" } @@ -219116,7 +219262,7 @@ "properties": { "east": "side", "north": "none", - "power": "6", + "power": "5", "south": "up", "west": "up" } @@ -219126,7 +219272,7 @@ "properties": { "east": "side", "north": "none", - "power": "6", + "power": "5", "south": "up", "west": "side" } @@ -219136,7 +219282,7 @@ "properties": { "east": "side", "north": "none", - "power": "6", + "power": "5", "south": "up", "west": "none" } @@ -219146,7 +219292,7 @@ "properties": { "east": "side", "north": "none", - "power": "6", + "power": "5", "south": "side", "west": "up" } @@ -219156,7 +219302,7 @@ "properties": { "east": "side", "north": "none", - "power": "6", + "power": "5", "south": "side", "west": "side" } @@ -219166,7 +219312,7 @@ "properties": { "east": "side", "north": "none", - "power": "6", + "power": "5", "south": "side", "west": "none" } @@ -219176,7 +219322,7 @@ "properties": { "east": "side", "north": "none", - "power": "6", + "power": "5", "south": "none", "west": "up" } @@ -219186,7 +219332,7 @@ "properties": { "east": "side", "north": "none", - "power": "6", + "power": "5", "south": "none", "west": "side" } @@ -219196,7 +219342,7 @@ "properties": { "east": "side", "north": "none", - "power": "6", + "power": "5", "south": "none", "west": "none" } @@ -219206,7 +219352,7 @@ "properties": { "east": "side", "north": "none", - "power": "7", + "power": "6", "south": "up", "west": "up" } @@ -219216,7 +219362,7 @@ "properties": { "east": "side", "north": "none", - "power": "7", + "power": "6", "south": "up", "west": "side" } @@ -219226,7 +219372,7 @@ "properties": { "east": "side", "north": "none", - "power": "7", + "power": "6", "south": "up", "west": "none" } @@ -219236,7 +219382,7 @@ "properties": { "east": "side", "north": "none", - "power": "7", + "power": "6", "south": "side", "west": "up" } @@ -219246,7 +219392,7 @@ "properties": { "east": "side", "north": "none", - "power": "7", + "power": "6", "south": "side", "west": "side" } @@ -219256,7 +219402,7 @@ "properties": { "east": "side", "north": "none", - "power": "7", + "power": "6", "south": "side", "west": "none" } @@ -219266,7 +219412,7 @@ "properties": { "east": "side", "north": "none", - "power": "7", + "power": "6", "south": "none", "west": "up" } @@ -219276,7 +219422,7 @@ "properties": { "east": "side", "north": "none", - "power": "7", + "power": "6", "south": "none", "west": "side" } @@ -219286,7 +219432,7 @@ "properties": { "east": "side", "north": "none", - "power": "7", + "power": "6", "south": "none", "west": "none" } @@ -219296,7 +219442,7 @@ "properties": { "east": "side", "north": "none", - "power": "8", + "power": "7", "south": "up", "west": "up" } @@ -219306,7 +219452,7 @@ "properties": { "east": "side", "north": "none", - "power": "8", + "power": "7", "south": "up", "west": "side" } @@ -219316,7 +219462,7 @@ "properties": { "east": "side", "north": "none", - "power": "8", + "power": "7", "south": "up", "west": "none" } @@ -219326,7 +219472,7 @@ "properties": { "east": "side", "north": "none", - "power": "8", + "power": "7", "south": "side", "west": "up" } @@ -219336,7 +219482,7 @@ "properties": { "east": "side", "north": "none", - "power": "8", + "power": "7", "south": "side", "west": "side" } @@ -219346,7 +219492,7 @@ "properties": { "east": "side", "north": "none", - "power": "8", + "power": "7", "south": "side", "west": "none" } @@ -219356,7 +219502,7 @@ "properties": { "east": "side", "north": "none", - "power": "8", + "power": "7", "south": "none", "west": "up" } @@ -219366,7 +219512,7 @@ "properties": { "east": "side", "north": "none", - "power": "8", + "power": "7", "south": "none", "west": "side" } @@ -219376,7 +219522,7 @@ "properties": { "east": "side", "north": "none", - "power": "8", + "power": "7", "south": "none", "west": "none" } @@ -219386,7 +219532,7 @@ "properties": { "east": "side", "north": "none", - "power": "9", + "power": "8", "south": "up", "west": "up" } @@ -219396,7 +219542,7 @@ "properties": { "east": "side", "north": "none", - "power": "9", + "power": "8", "south": "up", "west": "side" } @@ -219406,7 +219552,7 @@ "properties": { "east": "side", "north": "none", - "power": "9", + "power": "8", "south": "up", "west": "none" } @@ -219416,7 +219562,7 @@ "properties": { "east": "side", "north": "none", - "power": "9", + "power": "8", "south": "side", "west": "up" } @@ -219426,7 +219572,7 @@ "properties": { "east": "side", "north": "none", - "power": "9", + "power": "8", "south": "side", "west": "side" } @@ -219436,7 +219582,7 @@ "properties": { "east": "side", "north": "none", - "power": "9", + "power": "8", "south": "side", "west": "none" } @@ -219446,7 +219592,7 @@ "properties": { "east": "side", "north": "none", - "power": "9", + "power": "8", "south": "none", "west": "up" } @@ -219456,7 +219602,7 @@ "properties": { "east": "side", "north": "none", - "power": "9", + "power": "8", "south": "none", "west": "side" } @@ -219466,7 +219612,7 @@ "properties": { "east": "side", "north": "none", - "power": "9", + "power": "8", "south": "none", "west": "none" } @@ -219476,7 +219622,7 @@ "properties": { "east": "side", "north": "none", - "power": "10", + "power": "9", "south": "up", "west": "up" } @@ -219486,7 +219632,7 @@ "properties": { "east": "side", "north": "none", - "power": "10", + "power": "9", "south": "up", "west": "side" } @@ -219496,7 +219642,7 @@ "properties": { "east": "side", "north": "none", - "power": "10", + "power": "9", "south": "up", "west": "none" } @@ -219506,7 +219652,7 @@ "properties": { "east": "side", "north": "none", - "power": "10", + "power": "9", "south": "side", "west": "up" } @@ -219516,7 +219662,7 @@ "properties": { "east": "side", "north": "none", - "power": "10", + "power": "9", "south": "side", "west": "side" } @@ -219526,7 +219672,7 @@ "properties": { "east": "side", "north": "none", - "power": "10", + "power": "9", "south": "side", "west": "none" } @@ -219536,7 +219682,7 @@ "properties": { "east": "side", "north": "none", - "power": "10", + "power": "9", "south": "none", "west": "up" } @@ -219546,7 +219692,7 @@ "properties": { "east": "side", "north": "none", - "power": "10", + "power": "9", "south": "none", "west": "side" } @@ -219556,7 +219702,7 @@ "properties": { "east": "side", "north": "none", - "power": "10", + "power": "9", "south": "none", "west": "none" } @@ -219566,7 +219712,7 @@ "properties": { "east": "side", "north": "none", - "power": "11", + "power": "10", "south": "up", "west": "up" } @@ -219576,7 +219722,7 @@ "properties": { "east": "side", "north": "none", - "power": "11", + "power": "10", "south": "up", "west": "side" } @@ -219586,7 +219732,7 @@ "properties": { "east": "side", "north": "none", - "power": "11", + "power": "10", "south": "up", "west": "none" } @@ -219596,7 +219742,7 @@ "properties": { "east": "side", "north": "none", - "power": "11", + "power": "10", "south": "side", "west": "up" } @@ -219606,7 +219752,7 @@ "properties": { "east": "side", "north": "none", - "power": "11", + "power": "10", "south": "side", "west": "side" } @@ -219616,7 +219762,7 @@ "properties": { "east": "side", "north": "none", - "power": "11", + "power": "10", "south": "side", "west": "none" } @@ -219626,7 +219772,7 @@ "properties": { "east": "side", "north": "none", - "power": "11", + "power": "10", "south": "none", "west": "up" } @@ -219636,7 +219782,7 @@ "properties": { "east": "side", "north": "none", - "power": "11", + "power": "10", "south": "none", "west": "side" } @@ -219646,7 +219792,7 @@ "properties": { "east": "side", "north": "none", - "power": "11", + "power": "10", "south": "none", "west": "none" } @@ -219656,7 +219802,7 @@ "properties": { "east": "side", "north": "none", - "power": "12", + "power": "11", "south": "up", "west": "up" } @@ -219666,7 +219812,7 @@ "properties": { "east": "side", "north": "none", - "power": "12", + "power": "11", "south": "up", "west": "side" } @@ -219676,7 +219822,7 @@ "properties": { "east": "side", "north": "none", - "power": "12", + "power": "11", "south": "up", "west": "none" } @@ -219686,7 +219832,7 @@ "properties": { "east": "side", "north": "none", - "power": "12", + "power": "11", "south": "side", "west": "up" } @@ -219696,7 +219842,7 @@ "properties": { "east": "side", "north": "none", - "power": "12", + "power": "11", "south": "side", "west": "side" } @@ -219706,7 +219852,7 @@ "properties": { "east": "side", "north": "none", - "power": "12", + "power": "11", "south": "side", "west": "none" } @@ -219716,7 +219862,7 @@ "properties": { "east": "side", "north": "none", - "power": "12", + "power": "11", "south": "none", "west": "up" } @@ -219726,7 +219872,7 @@ "properties": { "east": "side", "north": "none", - "power": "12", + "power": "11", "south": "none", "west": "side" } @@ -219736,7 +219882,7 @@ "properties": { "east": "side", "north": "none", - "power": "12", + "power": "11", "south": "none", "west": "none" } @@ -219746,7 +219892,7 @@ "properties": { "east": "side", "north": "none", - "power": "13", + "power": "12", "south": "up", "west": "up" } @@ -219756,7 +219902,7 @@ "properties": { "east": "side", "north": "none", - "power": "13", + "power": "12", "south": "up", "west": "side" } @@ -219766,7 +219912,7 @@ "properties": { "east": "side", "north": "none", - "power": "13", + "power": "12", "south": "up", "west": "none" } @@ -219776,7 +219922,7 @@ "properties": { "east": "side", "north": "none", - "power": "13", + "power": "12", "south": "side", "west": "up" } @@ -219786,7 +219932,7 @@ "properties": { "east": "side", "north": "none", - "power": "13", + "power": "12", "south": "side", "west": "side" } @@ -219796,7 +219942,7 @@ "properties": { "east": "side", "north": "none", - "power": "13", + "power": "12", "south": "side", "west": "none" } @@ -219806,7 +219952,7 @@ "properties": { "east": "side", "north": "none", - "power": "13", + "power": "12", "south": "none", "west": "up" } @@ -219816,7 +219962,7 @@ "properties": { "east": "side", "north": "none", - "power": "13", + "power": "12", "south": "none", "west": "side" } @@ -219826,7 +219972,7 @@ "properties": { "east": "side", "north": "none", - "power": "13", + "power": "12", "south": "none", "west": "none" } @@ -219836,7 +219982,7 @@ "properties": { "east": "side", "north": "none", - "power": "14", + "power": "13", "south": "up", "west": "up" } @@ -219846,7 +219992,7 @@ "properties": { "east": "side", "north": "none", - "power": "14", + "power": "13", "south": "up", "west": "side" } @@ -219856,7 +220002,7 @@ "properties": { "east": "side", "north": "none", - "power": "14", + "power": "13", "south": "up", "west": "none" } @@ -219866,7 +220012,7 @@ "properties": { "east": "side", "north": "none", - "power": "14", + "power": "13", "south": "side", "west": "up" } @@ -219876,7 +220022,7 @@ "properties": { "east": "side", "north": "none", - "power": "14", + "power": "13", "south": "side", "west": "side" } @@ -219886,7 +220032,7 @@ "properties": { "east": "side", "north": "none", - "power": "14", + "power": "13", "south": "side", "west": "none" } @@ -219896,7 +220042,7 @@ "properties": { "east": "side", "north": "none", - "power": "14", + "power": "13", "south": "none", "west": "up" } @@ -219906,7 +220052,7 @@ "properties": { "east": "side", "north": "none", - "power": "14", + "power": "13", "south": "none", "west": "side" } @@ -219916,7 +220062,7 @@ "properties": { "east": "side", "north": "none", - "power": "14", + "power": "13", "south": "none", "west": "none" } @@ -219926,7 +220072,7 @@ "properties": { "east": "side", "north": "none", - "power": "15", + "power": "14", "south": "up", "west": "up" } @@ -219936,7 +220082,7 @@ "properties": { "east": "side", "north": "none", - "power": "15", + "power": "14", "south": "up", "west": "side" } @@ -219946,7 +220092,7 @@ "properties": { "east": "side", "north": "none", - "power": "15", + "power": "14", "south": "up", "west": "none" } @@ -219956,7 +220102,7 @@ "properties": { "east": "side", "north": "none", - "power": "15", + "power": "14", "south": "side", "west": "up" } @@ -219966,7 +220112,7 @@ "properties": { "east": "side", "north": "none", - "power": "15", + "power": "14", "south": "side", "west": "side" } @@ -219976,7 +220122,7 @@ "properties": { "east": "side", "north": "none", - "power": "15", + "power": "14", "south": "side", "west": "none" } @@ -219986,7 +220132,7 @@ "properties": { "east": "side", "north": "none", - "power": "15", + "power": "14", "south": "none", "west": "up" } @@ -219996,7 +220142,7 @@ "properties": { "east": "side", "north": "none", - "power": "15", + "power": "14", "south": "none", "west": "side" } @@ -220006,7 +220152,7 @@ "properties": { "east": "side", "north": "none", - "power": "15", + "power": "14", "south": "none", "west": "none" } @@ -220014,9 +220160,9 @@ { "id": 3897, "properties": { - "east": "none", - "north": "up", - "power": "0", + "east": "side", + "north": "none", + "power": "15", "south": "up", "west": "up" } @@ -220024,9 +220170,9 @@ { "id": 3898, "properties": { - "east": "none", - "north": "up", - "power": "0", + "east": "side", + "north": "none", + "power": "15", "south": "up", "west": "side" } @@ -220034,9 +220180,9 @@ { "id": 3899, "properties": { - "east": "none", - "north": "up", - "power": "0", + "east": "side", + "north": "none", + "power": "15", "south": "up", "west": "none" } @@ -220044,9 +220190,9 @@ { "id": 3900, "properties": { - "east": "none", - "north": "up", - "power": "0", + "east": "side", + "north": "none", + "power": "15", "south": "side", "west": "up" } @@ -220054,9 +220200,9 @@ { "id": 3901, "properties": { - "east": "none", - "north": "up", - "power": "0", + "east": "side", + "north": "none", + "power": "15", "south": "side", "west": "side" } @@ -220064,9 +220210,9 @@ { "id": 3902, "properties": { - "east": "none", - "north": "up", - "power": "0", + "east": "side", + "north": "none", + "power": "15", "south": "side", "west": "none" } @@ -220074,9 +220220,9 @@ { "id": 3903, "properties": { - "east": "none", - "north": "up", - "power": "0", + "east": "side", + "north": "none", + "power": "15", "south": "none", "west": "up" } @@ -220084,9 +220230,9 @@ { "id": 3904, "properties": { - "east": "none", - "north": "up", - "power": "0", + "east": "side", + "north": "none", + "power": "15", "south": "none", "west": "side" } @@ -220094,9 +220240,9 @@ { "id": 3905, "properties": { - "east": "none", - "north": "up", - "power": "0", + "east": "side", + "north": "none", + "power": "15", "south": "none", "west": "none" } @@ -220106,7 +220252,7 @@ "properties": { "east": "none", "north": "up", - "power": "1", + "power": "0", "south": "up", "west": "up" } @@ -220116,7 +220262,7 @@ "properties": { "east": "none", "north": "up", - "power": "1", + "power": "0", "south": "up", "west": "side" } @@ -220126,7 +220272,7 @@ "properties": { "east": "none", "north": "up", - "power": "1", + "power": "0", "south": "up", "west": "none" } @@ -220136,7 +220282,7 @@ "properties": { "east": "none", "north": "up", - "power": "1", + "power": "0", "south": "side", "west": "up" } @@ -220146,7 +220292,7 @@ "properties": { "east": "none", "north": "up", - "power": "1", + "power": "0", "south": "side", "west": "side" } @@ -220156,7 +220302,7 @@ "properties": { "east": "none", "north": "up", - "power": "1", + "power": "0", "south": "side", "west": "none" } @@ -220166,7 +220312,7 @@ "properties": { "east": "none", "north": "up", - "power": "1", + "power": "0", "south": "none", "west": "up" } @@ -220176,7 +220322,7 @@ "properties": { "east": "none", "north": "up", - "power": "1", + "power": "0", "south": "none", "west": "side" } @@ -220186,7 +220332,7 @@ "properties": { "east": "none", "north": "up", - "power": "1", + "power": "0", "south": "none", "west": "none" } @@ -220196,7 +220342,7 @@ "properties": { "east": "none", "north": "up", - "power": "2", + "power": "1", "south": "up", "west": "up" } @@ -220206,7 +220352,7 @@ "properties": { "east": "none", "north": "up", - "power": "2", + "power": "1", "south": "up", "west": "side" } @@ -220216,7 +220362,7 @@ "properties": { "east": "none", "north": "up", - "power": "2", + "power": "1", "south": "up", "west": "none" } @@ -220226,7 +220372,7 @@ "properties": { "east": "none", "north": "up", - "power": "2", + "power": "1", "south": "side", "west": "up" } @@ -220236,7 +220382,7 @@ "properties": { "east": "none", "north": "up", - "power": "2", + "power": "1", "south": "side", "west": "side" } @@ -220246,7 +220392,7 @@ "properties": { "east": "none", "north": "up", - "power": "2", + "power": "1", "south": "side", "west": "none" } @@ -220256,7 +220402,7 @@ "properties": { "east": "none", "north": "up", - "power": "2", + "power": "1", "south": "none", "west": "up" } @@ -220266,7 +220412,7 @@ "properties": { "east": "none", "north": "up", - "power": "2", + "power": "1", "south": "none", "west": "side" } @@ -220276,7 +220422,7 @@ "properties": { "east": "none", "north": "up", - "power": "2", + "power": "1", "south": "none", "west": "none" } @@ -220286,7 +220432,7 @@ "properties": { "east": "none", "north": "up", - "power": "3", + "power": "2", "south": "up", "west": "up" } @@ -220296,7 +220442,7 @@ "properties": { "east": "none", "north": "up", - "power": "3", + "power": "2", "south": "up", "west": "side" } @@ -220306,7 +220452,7 @@ "properties": { "east": "none", "north": "up", - "power": "3", + "power": "2", "south": "up", "west": "none" } @@ -220316,7 +220462,7 @@ "properties": { "east": "none", "north": "up", - "power": "3", + "power": "2", "south": "side", "west": "up" } @@ -220326,7 +220472,7 @@ "properties": { "east": "none", "north": "up", - "power": "3", + "power": "2", "south": "side", "west": "side" } @@ -220336,7 +220482,7 @@ "properties": { "east": "none", "north": "up", - "power": "3", + "power": "2", "south": "side", "west": "none" } @@ -220346,7 +220492,7 @@ "properties": { "east": "none", "north": "up", - "power": "3", + "power": "2", "south": "none", "west": "up" } @@ -220356,7 +220502,7 @@ "properties": { "east": "none", "north": "up", - "power": "3", + "power": "2", "south": "none", "west": "side" } @@ -220366,7 +220512,7 @@ "properties": { "east": "none", "north": "up", - "power": "3", + "power": "2", "south": "none", "west": "none" } @@ -220376,7 +220522,7 @@ "properties": { "east": "none", "north": "up", - "power": "4", + "power": "3", "south": "up", "west": "up" } @@ -220386,7 +220532,7 @@ "properties": { "east": "none", "north": "up", - "power": "4", + "power": "3", "south": "up", "west": "side" } @@ -220396,7 +220542,7 @@ "properties": { "east": "none", "north": "up", - "power": "4", + "power": "3", "south": "up", "west": "none" } @@ -220406,7 +220552,7 @@ "properties": { "east": "none", "north": "up", - "power": "4", + "power": "3", "south": "side", "west": "up" } @@ -220416,7 +220562,7 @@ "properties": { "east": "none", "north": "up", - "power": "4", + "power": "3", "south": "side", "west": "side" } @@ -220426,7 +220572,7 @@ "properties": { "east": "none", "north": "up", - "power": "4", + "power": "3", "south": "side", "west": "none" } @@ -220436,7 +220582,7 @@ "properties": { "east": "none", "north": "up", - "power": "4", + "power": "3", "south": "none", "west": "up" } @@ -220446,7 +220592,7 @@ "properties": { "east": "none", "north": "up", - "power": "4", + "power": "3", "south": "none", "west": "side" } @@ -220456,7 +220602,7 @@ "properties": { "east": "none", "north": "up", - "power": "4", + "power": "3", "south": "none", "west": "none" } @@ -220466,7 +220612,7 @@ "properties": { "east": "none", "north": "up", - "power": "5", + "power": "4", "south": "up", "west": "up" } @@ -220476,7 +220622,7 @@ "properties": { "east": "none", "north": "up", - "power": "5", + "power": "4", "south": "up", "west": "side" } @@ -220486,7 +220632,7 @@ "properties": { "east": "none", "north": "up", - "power": "5", + "power": "4", "south": "up", "west": "none" } @@ -220496,7 +220642,7 @@ "properties": { "east": "none", "north": "up", - "power": "5", + "power": "4", "south": "side", "west": "up" } @@ -220506,7 +220652,7 @@ "properties": { "east": "none", "north": "up", - "power": "5", + "power": "4", "south": "side", "west": "side" } @@ -220516,7 +220662,7 @@ "properties": { "east": "none", "north": "up", - "power": "5", + "power": "4", "south": "side", "west": "none" } @@ -220526,7 +220672,7 @@ "properties": { "east": "none", "north": "up", - "power": "5", + "power": "4", "south": "none", "west": "up" } @@ -220536,7 +220682,7 @@ "properties": { "east": "none", "north": "up", - "power": "5", + "power": "4", "south": "none", "west": "side" } @@ -220546,7 +220692,7 @@ "properties": { "east": "none", "north": "up", - "power": "5", + "power": "4", "south": "none", "west": "none" } @@ -220556,7 +220702,7 @@ "properties": { "east": "none", "north": "up", - "power": "6", + "power": "5", "south": "up", "west": "up" } @@ -220566,7 +220712,7 @@ "properties": { "east": "none", "north": "up", - "power": "6", + "power": "5", "south": "up", "west": "side" } @@ -220576,7 +220722,7 @@ "properties": { "east": "none", "north": "up", - "power": "6", + "power": "5", "south": "up", "west": "none" } @@ -220586,7 +220732,7 @@ "properties": { "east": "none", "north": "up", - "power": "6", + "power": "5", "south": "side", "west": "up" } @@ -220596,7 +220742,7 @@ "properties": { "east": "none", "north": "up", - "power": "6", + "power": "5", "south": "side", "west": "side" } @@ -220606,7 +220752,7 @@ "properties": { "east": "none", "north": "up", - "power": "6", + "power": "5", "south": "side", "west": "none" } @@ -220616,7 +220762,7 @@ "properties": { "east": "none", "north": "up", - "power": "6", + "power": "5", "south": "none", "west": "up" } @@ -220626,7 +220772,7 @@ "properties": { "east": "none", "north": "up", - "power": "6", + "power": "5", "south": "none", "west": "side" } @@ -220636,7 +220782,7 @@ "properties": { "east": "none", "north": "up", - "power": "6", + "power": "5", "south": "none", "west": "none" } @@ -220646,7 +220792,7 @@ "properties": { "east": "none", "north": "up", - "power": "7", + "power": "6", "south": "up", "west": "up" } @@ -220656,7 +220802,7 @@ "properties": { "east": "none", "north": "up", - "power": "7", + "power": "6", "south": "up", "west": "side" } @@ -220666,7 +220812,7 @@ "properties": { "east": "none", "north": "up", - "power": "7", + "power": "6", "south": "up", "west": "none" } @@ -220676,7 +220822,7 @@ "properties": { "east": "none", "north": "up", - "power": "7", + "power": "6", "south": "side", "west": "up" } @@ -220686,7 +220832,7 @@ "properties": { "east": "none", "north": "up", - "power": "7", + "power": "6", "south": "side", "west": "side" } @@ -220696,7 +220842,7 @@ "properties": { "east": "none", "north": "up", - "power": "7", + "power": "6", "south": "side", "west": "none" } @@ -220706,7 +220852,7 @@ "properties": { "east": "none", "north": "up", - "power": "7", + "power": "6", "south": "none", "west": "up" } @@ -220716,7 +220862,7 @@ "properties": { "east": "none", "north": "up", - "power": "7", + "power": "6", "south": "none", "west": "side" } @@ -220726,7 +220872,7 @@ "properties": { "east": "none", "north": "up", - "power": "7", + "power": "6", "south": "none", "west": "none" } @@ -220736,7 +220882,7 @@ "properties": { "east": "none", "north": "up", - "power": "8", + "power": "7", "south": "up", "west": "up" } @@ -220746,7 +220892,7 @@ "properties": { "east": "none", "north": "up", - "power": "8", + "power": "7", "south": "up", "west": "side" } @@ -220756,7 +220902,7 @@ "properties": { "east": "none", "north": "up", - "power": "8", + "power": "7", "south": "up", "west": "none" } @@ -220766,7 +220912,7 @@ "properties": { "east": "none", "north": "up", - "power": "8", + "power": "7", "south": "side", "west": "up" } @@ -220776,7 +220922,7 @@ "properties": { "east": "none", "north": "up", - "power": "8", + "power": "7", "south": "side", "west": "side" } @@ -220786,7 +220932,7 @@ "properties": { "east": "none", "north": "up", - "power": "8", + "power": "7", "south": "side", "west": "none" } @@ -220796,7 +220942,7 @@ "properties": { "east": "none", "north": "up", - "power": "8", + "power": "7", "south": "none", "west": "up" } @@ -220806,7 +220952,7 @@ "properties": { "east": "none", "north": "up", - "power": "8", + "power": "7", "south": "none", "west": "side" } @@ -220816,7 +220962,7 @@ "properties": { "east": "none", "north": "up", - "power": "8", + "power": "7", "south": "none", "west": "none" } @@ -220826,7 +220972,7 @@ "properties": { "east": "none", "north": "up", - "power": "9", + "power": "8", "south": "up", "west": "up" } @@ -220836,7 +220982,7 @@ "properties": { "east": "none", "north": "up", - "power": "9", + "power": "8", "south": "up", "west": "side" } @@ -220846,7 +220992,7 @@ "properties": { "east": "none", "north": "up", - "power": "9", + "power": "8", "south": "up", "west": "none" } @@ -220856,7 +221002,7 @@ "properties": { "east": "none", "north": "up", - "power": "9", + "power": "8", "south": "side", "west": "up" } @@ -220866,7 +221012,7 @@ "properties": { "east": "none", "north": "up", - "power": "9", + "power": "8", "south": "side", "west": "side" } @@ -220876,7 +221022,7 @@ "properties": { "east": "none", "north": "up", - "power": "9", + "power": "8", "south": "side", "west": "none" } @@ -220886,7 +221032,7 @@ "properties": { "east": "none", "north": "up", - "power": "9", + "power": "8", "south": "none", "west": "up" } @@ -220896,7 +221042,7 @@ "properties": { "east": "none", "north": "up", - "power": "9", + "power": "8", "south": "none", "west": "side" } @@ -220906,7 +221052,7 @@ "properties": { "east": "none", "north": "up", - "power": "9", + "power": "8", "south": "none", "west": "none" } @@ -220916,7 +221062,7 @@ "properties": { "east": "none", "north": "up", - "power": "10", + "power": "9", "south": "up", "west": "up" } @@ -220926,7 +221072,7 @@ "properties": { "east": "none", "north": "up", - "power": "10", + "power": "9", "south": "up", "west": "side" } @@ -220936,7 +221082,7 @@ "properties": { "east": "none", "north": "up", - "power": "10", + "power": "9", "south": "up", "west": "none" } @@ -220946,7 +221092,7 @@ "properties": { "east": "none", "north": "up", - "power": "10", + "power": "9", "south": "side", "west": "up" } @@ -220956,7 +221102,7 @@ "properties": { "east": "none", "north": "up", - "power": "10", + "power": "9", "south": "side", "west": "side" } @@ -220966,7 +221112,7 @@ "properties": { "east": "none", "north": "up", - "power": "10", + "power": "9", "south": "side", "west": "none" } @@ -220976,7 +221122,7 @@ "properties": { "east": "none", "north": "up", - "power": "10", + "power": "9", "south": "none", "west": "up" } @@ -220986,7 +221132,7 @@ "properties": { "east": "none", "north": "up", - "power": "10", + "power": "9", "south": "none", "west": "side" } @@ -220996,7 +221142,7 @@ "properties": { "east": "none", "north": "up", - "power": "10", + "power": "9", "south": "none", "west": "none" } @@ -221006,7 +221152,7 @@ "properties": { "east": "none", "north": "up", - "power": "11", + "power": "10", "south": "up", "west": "up" } @@ -221016,7 +221162,7 @@ "properties": { "east": "none", "north": "up", - "power": "11", + "power": "10", "south": "up", "west": "side" } @@ -221026,7 +221172,7 @@ "properties": { "east": "none", "north": "up", - "power": "11", + "power": "10", "south": "up", "west": "none" } @@ -221036,7 +221182,7 @@ "properties": { "east": "none", "north": "up", - "power": "11", + "power": "10", "south": "side", "west": "up" } @@ -221046,7 +221192,7 @@ "properties": { "east": "none", "north": "up", - "power": "11", + "power": "10", "south": "side", "west": "side" } @@ -221056,7 +221202,7 @@ "properties": { "east": "none", "north": "up", - "power": "11", + "power": "10", "south": "side", "west": "none" } @@ -221066,7 +221212,7 @@ "properties": { "east": "none", "north": "up", - "power": "11", + "power": "10", "south": "none", "west": "up" } @@ -221076,7 +221222,7 @@ "properties": { "east": "none", "north": "up", - "power": "11", + "power": "10", "south": "none", "west": "side" } @@ -221086,7 +221232,7 @@ "properties": { "east": "none", "north": "up", - "power": "11", + "power": "10", "south": "none", "west": "none" } @@ -221096,7 +221242,7 @@ "properties": { "east": "none", "north": "up", - "power": "12", + "power": "11", "south": "up", "west": "up" } @@ -221106,7 +221252,7 @@ "properties": { "east": "none", "north": "up", - "power": "12", + "power": "11", "south": "up", "west": "side" } @@ -221116,7 +221262,7 @@ "properties": { "east": "none", "north": "up", - "power": "12", + "power": "11", "south": "up", "west": "none" } @@ -221126,7 +221272,7 @@ "properties": { "east": "none", "north": "up", - "power": "12", + "power": "11", "south": "side", "west": "up" } @@ -221136,7 +221282,7 @@ "properties": { "east": "none", "north": "up", - "power": "12", + "power": "11", "south": "side", "west": "side" } @@ -221146,7 +221292,7 @@ "properties": { "east": "none", "north": "up", - "power": "12", + "power": "11", "south": "side", "west": "none" } @@ -221156,7 +221302,7 @@ "properties": { "east": "none", "north": "up", - "power": "12", + "power": "11", "south": "none", "west": "up" } @@ -221166,7 +221312,7 @@ "properties": { "east": "none", "north": "up", - "power": "12", + "power": "11", "south": "none", "west": "side" } @@ -221176,7 +221322,7 @@ "properties": { "east": "none", "north": "up", - "power": "12", + "power": "11", "south": "none", "west": "none" } @@ -221186,7 +221332,7 @@ "properties": { "east": "none", "north": "up", - "power": "13", + "power": "12", "south": "up", "west": "up" } @@ -221196,7 +221342,7 @@ "properties": { "east": "none", "north": "up", - "power": "13", + "power": "12", "south": "up", "west": "side" } @@ -221206,7 +221352,7 @@ "properties": { "east": "none", "north": "up", - "power": "13", + "power": "12", "south": "up", "west": "none" } @@ -221216,7 +221362,7 @@ "properties": { "east": "none", "north": "up", - "power": "13", + "power": "12", "south": "side", "west": "up" } @@ -221226,7 +221372,7 @@ "properties": { "east": "none", "north": "up", - "power": "13", + "power": "12", "south": "side", "west": "side" } @@ -221236,7 +221382,7 @@ "properties": { "east": "none", "north": "up", - "power": "13", + "power": "12", "south": "side", "west": "none" } @@ -221246,7 +221392,7 @@ "properties": { "east": "none", "north": "up", - "power": "13", + "power": "12", "south": "none", "west": "up" } @@ -221256,7 +221402,7 @@ "properties": { "east": "none", "north": "up", - "power": "13", + "power": "12", "south": "none", "west": "side" } @@ -221266,7 +221412,7 @@ "properties": { "east": "none", "north": "up", - "power": "13", + "power": "12", "south": "none", "west": "none" } @@ -221276,7 +221422,7 @@ "properties": { "east": "none", "north": "up", - "power": "14", + "power": "13", "south": "up", "west": "up" } @@ -221286,7 +221432,7 @@ "properties": { "east": "none", "north": "up", - "power": "14", + "power": "13", "south": "up", "west": "side" } @@ -221296,7 +221442,7 @@ "properties": { "east": "none", "north": "up", - "power": "14", + "power": "13", "south": "up", "west": "none" } @@ -221306,7 +221452,7 @@ "properties": { "east": "none", "north": "up", - "power": "14", + "power": "13", "south": "side", "west": "up" } @@ -221316,7 +221462,7 @@ "properties": { "east": "none", "north": "up", - "power": "14", + "power": "13", "south": "side", "west": "side" } @@ -221326,7 +221472,7 @@ "properties": { "east": "none", "north": "up", - "power": "14", + "power": "13", "south": "side", "west": "none" } @@ -221336,7 +221482,7 @@ "properties": { "east": "none", "north": "up", - "power": "14", + "power": "13", "south": "none", "west": "up" } @@ -221346,7 +221492,7 @@ "properties": { "east": "none", "north": "up", - "power": "14", + "power": "13", "south": "none", "west": "side" } @@ -221356,7 +221502,7 @@ "properties": { "east": "none", "north": "up", - "power": "14", + "power": "13", "south": "none", "west": "none" } @@ -221366,7 +221512,7 @@ "properties": { "east": "none", "north": "up", - "power": "15", + "power": "14", "south": "up", "west": "up" } @@ -221376,7 +221522,7 @@ "properties": { "east": "none", "north": "up", - "power": "15", + "power": "14", "south": "up", "west": "side" } @@ -221386,7 +221532,7 @@ "properties": { "east": "none", "north": "up", - "power": "15", + "power": "14", "south": "up", "west": "none" } @@ -221396,7 +221542,7 @@ "properties": { "east": "none", "north": "up", - "power": "15", + "power": "14", "south": "side", "west": "up" } @@ -221406,7 +221552,7 @@ "properties": { "east": "none", "north": "up", - "power": "15", + "power": "14", "south": "side", "west": "side" } @@ -221416,7 +221562,7 @@ "properties": { "east": "none", "north": "up", - "power": "15", + "power": "14", "south": "side", "west": "none" } @@ -221426,7 +221572,7 @@ "properties": { "east": "none", "north": "up", - "power": "15", + "power": "14", "south": "none", "west": "up" } @@ -221436,7 +221582,7 @@ "properties": { "east": "none", "north": "up", - "power": "15", + "power": "14", "south": "none", "west": "side" } @@ -221446,7 +221592,7 @@ "properties": { "east": "none", "north": "up", - "power": "15", + "power": "14", "south": "none", "west": "none" } @@ -221455,8 +221601,8 @@ "id": 4041, "properties": { "east": "none", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "up", "west": "up" } @@ -221465,8 +221611,8 @@ "id": 4042, "properties": { "east": "none", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "up", "west": "side" } @@ -221475,8 +221621,8 @@ "id": 4043, "properties": { "east": "none", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "up", "west": "none" } @@ -221485,8 +221631,8 @@ "id": 4044, "properties": { "east": "none", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "side", "west": "up" } @@ -221495,8 +221641,8 @@ "id": 4045, "properties": { "east": "none", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "side", "west": "side" } @@ -221505,8 +221651,8 @@ "id": 4046, "properties": { "east": "none", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "side", "west": "none" } @@ -221515,8 +221661,8 @@ "id": 4047, "properties": { "east": "none", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "none", "west": "up" } @@ -221525,8 +221671,8 @@ "id": 4048, "properties": { "east": "none", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "none", "west": "side" } @@ -221535,8 +221681,8 @@ "id": 4049, "properties": { "east": "none", - "north": "side", - "power": "0", + "north": "up", + "power": "15", "south": "none", "west": "none" } @@ -221546,7 +221692,7 @@ "properties": { "east": "none", "north": "side", - "power": "1", + "power": "0", "south": "up", "west": "up" } @@ -221556,7 +221702,7 @@ "properties": { "east": "none", "north": "side", - "power": "1", + "power": "0", "south": "up", "west": "side" } @@ -221566,7 +221712,7 @@ "properties": { "east": "none", "north": "side", - "power": "1", + "power": "0", "south": "up", "west": "none" } @@ -221576,7 +221722,7 @@ "properties": { "east": "none", "north": "side", - "power": "1", + "power": "0", "south": "side", "west": "up" } @@ -221586,7 +221732,7 @@ "properties": { "east": "none", "north": "side", - "power": "1", + "power": "0", "south": "side", "west": "side" } @@ -221596,7 +221742,7 @@ "properties": { "east": "none", "north": "side", - "power": "1", + "power": "0", "south": "side", "west": "none" } @@ -221606,7 +221752,7 @@ "properties": { "east": "none", "north": "side", - "power": "1", + "power": "0", "south": "none", "west": "up" } @@ -221616,7 +221762,7 @@ "properties": { "east": "none", "north": "side", - "power": "1", + "power": "0", "south": "none", "west": "side" } @@ -221626,7 +221772,7 @@ "properties": { "east": "none", "north": "side", - "power": "1", + "power": "0", "south": "none", "west": "none" } @@ -221636,7 +221782,7 @@ "properties": { "east": "none", "north": "side", - "power": "2", + "power": "1", "south": "up", "west": "up" } @@ -221646,7 +221792,7 @@ "properties": { "east": "none", "north": "side", - "power": "2", + "power": "1", "south": "up", "west": "side" } @@ -221656,7 +221802,7 @@ "properties": { "east": "none", "north": "side", - "power": "2", + "power": "1", "south": "up", "west": "none" } @@ -221666,7 +221812,7 @@ "properties": { "east": "none", "north": "side", - "power": "2", + "power": "1", "south": "side", "west": "up" } @@ -221676,7 +221822,7 @@ "properties": { "east": "none", "north": "side", - "power": "2", + "power": "1", "south": "side", "west": "side" } @@ -221686,7 +221832,7 @@ "properties": { "east": "none", "north": "side", - "power": "2", + "power": "1", "south": "side", "west": "none" } @@ -221696,7 +221842,7 @@ "properties": { "east": "none", "north": "side", - "power": "2", + "power": "1", "south": "none", "west": "up" } @@ -221706,7 +221852,7 @@ "properties": { "east": "none", "north": "side", - "power": "2", + "power": "1", "south": "none", "west": "side" } @@ -221716,7 +221862,7 @@ "properties": { "east": "none", "north": "side", - "power": "2", + "power": "1", "south": "none", "west": "none" } @@ -221726,7 +221872,7 @@ "properties": { "east": "none", "north": "side", - "power": "3", + "power": "2", "south": "up", "west": "up" } @@ -221736,7 +221882,7 @@ "properties": { "east": "none", "north": "side", - "power": "3", + "power": "2", "south": "up", "west": "side" } @@ -221746,7 +221892,7 @@ "properties": { "east": "none", "north": "side", - "power": "3", + "power": "2", "south": "up", "west": "none" } @@ -221756,7 +221902,7 @@ "properties": { "east": "none", "north": "side", - "power": "3", + "power": "2", "south": "side", "west": "up" } @@ -221766,7 +221912,7 @@ "properties": { "east": "none", "north": "side", - "power": "3", + "power": "2", "south": "side", "west": "side" } @@ -221776,7 +221922,7 @@ "properties": { "east": "none", "north": "side", - "power": "3", + "power": "2", "south": "side", "west": "none" } @@ -221786,7 +221932,7 @@ "properties": { "east": "none", "north": "side", - "power": "3", + "power": "2", "south": "none", "west": "up" } @@ -221796,7 +221942,7 @@ "properties": { "east": "none", "north": "side", - "power": "3", + "power": "2", "south": "none", "west": "side" } @@ -221806,7 +221952,7 @@ "properties": { "east": "none", "north": "side", - "power": "3", + "power": "2", "south": "none", "west": "none" } @@ -221816,7 +221962,7 @@ "properties": { "east": "none", "north": "side", - "power": "4", + "power": "3", "south": "up", "west": "up" } @@ -221826,7 +221972,7 @@ "properties": { "east": "none", "north": "side", - "power": "4", + "power": "3", "south": "up", "west": "side" } @@ -221836,7 +221982,7 @@ "properties": { "east": "none", "north": "side", - "power": "4", + "power": "3", "south": "up", "west": "none" } @@ -221846,7 +221992,7 @@ "properties": { "east": "none", "north": "side", - "power": "4", + "power": "3", "south": "side", "west": "up" } @@ -221856,7 +222002,7 @@ "properties": { "east": "none", "north": "side", - "power": "4", + "power": "3", "south": "side", "west": "side" } @@ -221866,7 +222012,7 @@ "properties": { "east": "none", "north": "side", - "power": "4", + "power": "3", "south": "side", "west": "none" } @@ -221876,7 +222022,7 @@ "properties": { "east": "none", "north": "side", - "power": "4", + "power": "3", "south": "none", "west": "up" } @@ -221886,7 +222032,7 @@ "properties": { "east": "none", "north": "side", - "power": "4", + "power": "3", "south": "none", "west": "side" } @@ -221896,7 +222042,7 @@ "properties": { "east": "none", "north": "side", - "power": "4", + "power": "3", "south": "none", "west": "none" } @@ -221906,7 +222052,7 @@ "properties": { "east": "none", "north": "side", - "power": "5", + "power": "4", "south": "up", "west": "up" } @@ -221916,7 +222062,7 @@ "properties": { "east": "none", "north": "side", - "power": "5", + "power": "4", "south": "up", "west": "side" } @@ -221926,7 +222072,7 @@ "properties": { "east": "none", "north": "side", - "power": "5", + "power": "4", "south": "up", "west": "none" } @@ -221936,7 +222082,7 @@ "properties": { "east": "none", "north": "side", - "power": "5", + "power": "4", "south": "side", "west": "up" } @@ -221946,7 +222092,7 @@ "properties": { "east": "none", "north": "side", - "power": "5", + "power": "4", "south": "side", "west": "side" } @@ -221956,7 +222102,7 @@ "properties": { "east": "none", "north": "side", - "power": "5", + "power": "4", "south": "side", "west": "none" } @@ -221966,7 +222112,7 @@ "properties": { "east": "none", "north": "side", - "power": "5", + "power": "4", "south": "none", "west": "up" } @@ -221976,7 +222122,7 @@ "properties": { "east": "none", "north": "side", - "power": "5", + "power": "4", "south": "none", "west": "side" } @@ -221986,7 +222132,7 @@ "properties": { "east": "none", "north": "side", - "power": "5", + "power": "4", "south": "none", "west": "none" } @@ -221996,7 +222142,7 @@ "properties": { "east": "none", "north": "side", - "power": "6", + "power": "5", "south": "up", "west": "up" } @@ -222006,7 +222152,7 @@ "properties": { "east": "none", "north": "side", - "power": "6", + "power": "5", "south": "up", "west": "side" } @@ -222016,7 +222162,7 @@ "properties": { "east": "none", "north": "side", - "power": "6", + "power": "5", "south": "up", "west": "none" } @@ -222026,7 +222172,7 @@ "properties": { "east": "none", "north": "side", - "power": "6", + "power": "5", "south": "side", "west": "up" } @@ -222036,7 +222182,7 @@ "properties": { "east": "none", "north": "side", - "power": "6", + "power": "5", "south": "side", "west": "side" } @@ -222046,7 +222192,7 @@ "properties": { "east": "none", "north": "side", - "power": "6", + "power": "5", "south": "side", "west": "none" } @@ -222056,7 +222202,7 @@ "properties": { "east": "none", "north": "side", - "power": "6", + "power": "5", "south": "none", "west": "up" } @@ -222066,7 +222212,7 @@ "properties": { "east": "none", "north": "side", - "power": "6", + "power": "5", "south": "none", "west": "side" } @@ -222076,7 +222222,7 @@ "properties": { "east": "none", "north": "side", - "power": "6", + "power": "5", "south": "none", "west": "none" } @@ -222086,7 +222232,7 @@ "properties": { "east": "none", "north": "side", - "power": "7", + "power": "6", "south": "up", "west": "up" } @@ -222096,7 +222242,7 @@ "properties": { "east": "none", "north": "side", - "power": "7", + "power": "6", "south": "up", "west": "side" } @@ -222106,7 +222252,7 @@ "properties": { "east": "none", "north": "side", - "power": "7", + "power": "6", "south": "up", "west": "none" } @@ -222116,7 +222262,7 @@ "properties": { "east": "none", "north": "side", - "power": "7", + "power": "6", "south": "side", "west": "up" } @@ -222126,7 +222272,7 @@ "properties": { "east": "none", "north": "side", - "power": "7", + "power": "6", "south": "side", "west": "side" } @@ -222136,7 +222282,7 @@ "properties": { "east": "none", "north": "side", - "power": "7", + "power": "6", "south": "side", "west": "none" } @@ -222146,7 +222292,7 @@ "properties": { "east": "none", "north": "side", - "power": "7", + "power": "6", "south": "none", "west": "up" } @@ -222156,7 +222302,7 @@ "properties": { "east": "none", "north": "side", - "power": "7", + "power": "6", "south": "none", "west": "side" } @@ -222166,7 +222312,7 @@ "properties": { "east": "none", "north": "side", - "power": "7", + "power": "6", "south": "none", "west": "none" } @@ -222176,7 +222322,7 @@ "properties": { "east": "none", "north": "side", - "power": "8", + "power": "7", "south": "up", "west": "up" } @@ -222186,7 +222332,7 @@ "properties": { "east": "none", "north": "side", - "power": "8", + "power": "7", "south": "up", "west": "side" } @@ -222196,7 +222342,7 @@ "properties": { "east": "none", "north": "side", - "power": "8", + "power": "7", "south": "up", "west": "none" } @@ -222206,7 +222352,7 @@ "properties": { "east": "none", "north": "side", - "power": "8", + "power": "7", "south": "side", "west": "up" } @@ -222216,7 +222362,7 @@ "properties": { "east": "none", "north": "side", - "power": "8", + "power": "7", "south": "side", "west": "side" } @@ -222226,7 +222372,7 @@ "properties": { "east": "none", "north": "side", - "power": "8", + "power": "7", "south": "side", "west": "none" } @@ -222236,7 +222382,7 @@ "properties": { "east": "none", "north": "side", - "power": "8", + "power": "7", "south": "none", "west": "up" } @@ -222246,7 +222392,7 @@ "properties": { "east": "none", "north": "side", - "power": "8", + "power": "7", "south": "none", "west": "side" } @@ -222256,7 +222402,7 @@ "properties": { "east": "none", "north": "side", - "power": "8", + "power": "7", "south": "none", "west": "none" } @@ -222266,7 +222412,7 @@ "properties": { "east": "none", "north": "side", - "power": "9", + "power": "8", "south": "up", "west": "up" } @@ -222276,7 +222422,7 @@ "properties": { "east": "none", "north": "side", - "power": "9", + "power": "8", "south": "up", "west": "side" } @@ -222286,7 +222432,7 @@ "properties": { "east": "none", "north": "side", - "power": "9", + "power": "8", "south": "up", "west": "none" } @@ -222296,7 +222442,7 @@ "properties": { "east": "none", "north": "side", - "power": "9", + "power": "8", "south": "side", "west": "up" } @@ -222306,7 +222452,7 @@ "properties": { "east": "none", "north": "side", - "power": "9", + "power": "8", "south": "side", "west": "side" } @@ -222316,7 +222462,7 @@ "properties": { "east": "none", "north": "side", - "power": "9", + "power": "8", "south": "side", "west": "none" } @@ -222326,7 +222472,7 @@ "properties": { "east": "none", "north": "side", - "power": "9", + "power": "8", "south": "none", "west": "up" } @@ -222336,7 +222482,7 @@ "properties": { "east": "none", "north": "side", - "power": "9", + "power": "8", "south": "none", "west": "side" } @@ -222346,7 +222492,7 @@ "properties": { "east": "none", "north": "side", - "power": "9", + "power": "8", "south": "none", "west": "none" } @@ -222356,7 +222502,7 @@ "properties": { "east": "none", "north": "side", - "power": "10", + "power": "9", "south": "up", "west": "up" } @@ -222366,7 +222512,7 @@ "properties": { "east": "none", "north": "side", - "power": "10", + "power": "9", "south": "up", "west": "side" } @@ -222376,7 +222522,7 @@ "properties": { "east": "none", "north": "side", - "power": "10", + "power": "9", "south": "up", "west": "none" } @@ -222386,7 +222532,7 @@ "properties": { "east": "none", "north": "side", - "power": "10", + "power": "9", "south": "side", "west": "up" } @@ -222396,7 +222542,7 @@ "properties": { "east": "none", "north": "side", - "power": "10", + "power": "9", "south": "side", "west": "side" } @@ -222406,7 +222552,7 @@ "properties": { "east": "none", "north": "side", - "power": "10", + "power": "9", "south": "side", "west": "none" } @@ -222416,7 +222562,7 @@ "properties": { "east": "none", "north": "side", - "power": "10", + "power": "9", "south": "none", "west": "up" } @@ -222426,7 +222572,7 @@ "properties": { "east": "none", "north": "side", - "power": "10", + "power": "9", "south": "none", "west": "side" } @@ -222436,7 +222582,7 @@ "properties": { "east": "none", "north": "side", - "power": "10", + "power": "9", "south": "none", "west": "none" } @@ -222446,7 +222592,7 @@ "properties": { "east": "none", "north": "side", - "power": "11", + "power": "10", "south": "up", "west": "up" } @@ -222456,7 +222602,7 @@ "properties": { "east": "none", "north": "side", - "power": "11", + "power": "10", "south": "up", "west": "side" } @@ -222466,7 +222612,7 @@ "properties": { "east": "none", "north": "side", - "power": "11", + "power": "10", "south": "up", "west": "none" } @@ -222476,7 +222622,7 @@ "properties": { "east": "none", "north": "side", - "power": "11", + "power": "10", "south": "side", "west": "up" } @@ -222486,7 +222632,7 @@ "properties": { "east": "none", "north": "side", - "power": "11", + "power": "10", "south": "side", "west": "side" } @@ -222496,7 +222642,7 @@ "properties": { "east": "none", "north": "side", - "power": "11", + "power": "10", "south": "side", "west": "none" } @@ -222506,7 +222652,7 @@ "properties": { "east": "none", "north": "side", - "power": "11", + "power": "10", "south": "none", "west": "up" } @@ -222516,7 +222662,7 @@ "properties": { "east": "none", "north": "side", - "power": "11", + "power": "10", "south": "none", "west": "side" } @@ -222526,7 +222672,7 @@ "properties": { "east": "none", "north": "side", - "power": "11", + "power": "10", "south": "none", "west": "none" } @@ -222536,7 +222682,7 @@ "properties": { "east": "none", "north": "side", - "power": "12", + "power": "11", "south": "up", "west": "up" } @@ -222546,7 +222692,7 @@ "properties": { "east": "none", "north": "side", - "power": "12", + "power": "11", "south": "up", "west": "side" } @@ -222556,7 +222702,7 @@ "properties": { "east": "none", "north": "side", - "power": "12", + "power": "11", "south": "up", "west": "none" } @@ -222566,7 +222712,7 @@ "properties": { "east": "none", "north": "side", - "power": "12", + "power": "11", "south": "side", "west": "up" } @@ -222576,7 +222722,7 @@ "properties": { "east": "none", "north": "side", - "power": "12", + "power": "11", "south": "side", "west": "side" } @@ -222586,7 +222732,7 @@ "properties": { "east": "none", "north": "side", - "power": "12", + "power": "11", "south": "side", "west": "none" } @@ -222596,7 +222742,7 @@ "properties": { "east": "none", "north": "side", - "power": "12", + "power": "11", "south": "none", "west": "up" } @@ -222606,7 +222752,7 @@ "properties": { "east": "none", "north": "side", - "power": "12", + "power": "11", "south": "none", "west": "side" } @@ -222616,7 +222762,7 @@ "properties": { "east": "none", "north": "side", - "power": "12", + "power": "11", "south": "none", "west": "none" } @@ -222626,7 +222772,7 @@ "properties": { "east": "none", "north": "side", - "power": "13", + "power": "12", "south": "up", "west": "up" } @@ -222636,7 +222782,7 @@ "properties": { "east": "none", "north": "side", - "power": "13", + "power": "12", "south": "up", "west": "side" } @@ -222646,7 +222792,7 @@ "properties": { "east": "none", "north": "side", - "power": "13", + "power": "12", "south": "up", "west": "none" } @@ -222656,7 +222802,7 @@ "properties": { "east": "none", "north": "side", - "power": "13", + "power": "12", "south": "side", "west": "up" } @@ -222666,7 +222812,7 @@ "properties": { "east": "none", "north": "side", - "power": "13", + "power": "12", "south": "side", "west": "side" } @@ -222676,7 +222822,7 @@ "properties": { "east": "none", "north": "side", - "power": "13", + "power": "12", "south": "side", "west": "none" } @@ -222686,7 +222832,7 @@ "properties": { "east": "none", "north": "side", - "power": "13", + "power": "12", "south": "none", "west": "up" } @@ -222696,7 +222842,7 @@ "properties": { "east": "none", "north": "side", - "power": "13", + "power": "12", "south": "none", "west": "side" } @@ -222706,7 +222852,7 @@ "properties": { "east": "none", "north": "side", - "power": "13", + "power": "12", "south": "none", "west": "none" } @@ -222716,7 +222862,7 @@ "properties": { "east": "none", "north": "side", - "power": "14", + "power": "13", "south": "up", "west": "up" } @@ -222726,7 +222872,7 @@ "properties": { "east": "none", "north": "side", - "power": "14", + "power": "13", "south": "up", "west": "side" } @@ -222736,7 +222882,7 @@ "properties": { "east": "none", "north": "side", - "power": "14", + "power": "13", "south": "up", "west": "none" } @@ -222746,7 +222892,7 @@ "properties": { "east": "none", "north": "side", - "power": "14", + "power": "13", "south": "side", "west": "up" } @@ -222756,7 +222902,7 @@ "properties": { "east": "none", "north": "side", - "power": "14", + "power": "13", "south": "side", "west": "side" } @@ -222766,7 +222912,7 @@ "properties": { "east": "none", "north": "side", - "power": "14", + "power": "13", "south": "side", "west": "none" } @@ -222776,7 +222922,7 @@ "properties": { "east": "none", "north": "side", - "power": "14", + "power": "13", "south": "none", "west": "up" } @@ -222786,7 +222932,7 @@ "properties": { "east": "none", "north": "side", - "power": "14", + "power": "13", "south": "none", "west": "side" } @@ -222796,7 +222942,7 @@ "properties": { "east": "none", "north": "side", - "power": "14", + "power": "13", "south": "none", "west": "none" } @@ -222806,7 +222952,7 @@ "properties": { "east": "none", "north": "side", - "power": "15", + "power": "14", "south": "up", "west": "up" } @@ -222816,7 +222962,7 @@ "properties": { "east": "none", "north": "side", - "power": "15", + "power": "14", "south": "up", "west": "side" } @@ -222826,7 +222972,7 @@ "properties": { "east": "none", "north": "side", - "power": "15", + "power": "14", "south": "up", "west": "none" } @@ -222836,7 +222982,7 @@ "properties": { "east": "none", "north": "side", - "power": "15", + "power": "14", "south": "side", "west": "up" } @@ -222846,7 +222992,7 @@ "properties": { "east": "none", "north": "side", - "power": "15", + "power": "14", "south": "side", "west": "side" } @@ -222856,7 +223002,7 @@ "properties": { "east": "none", "north": "side", - "power": "15", + "power": "14", "south": "side", "west": "none" } @@ -222866,7 +223012,7 @@ "properties": { "east": "none", "north": "side", - "power": "15", + "power": "14", "south": "none", "west": "up" } @@ -222876,7 +223022,7 @@ "properties": { "east": "none", "north": "side", - "power": "15", + "power": "14", "south": "none", "west": "side" } @@ -222886,7 +223032,7 @@ "properties": { "east": "none", "north": "side", - "power": "15", + "power": "14", "south": "none", "west": "none" } @@ -222895,14 +223041,104 @@ "id": 4185, "properties": { "east": "none", - "north": "none", - "power": "0", + "north": "side", + "power": "15", "south": "up", "west": "up" } }, { "id": 4186, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4187, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4188, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4189, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4190, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4191, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4192, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4193, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 4194, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 4195, "properties": { "east": "none", "north": "none", @@ -222912,7 +223148,7 @@ } }, { - "id": 4187, + "id": 4196, "properties": { "east": "none", "north": "none", @@ -222922,7 +223158,7 @@ } }, { - "id": 4188, + "id": 4197, "properties": { "east": "none", "north": "none", @@ -222932,7 +223168,7 @@ } }, { - "id": 4189, + "id": 4198, "properties": { "east": "none", "north": "none", @@ -222942,7 +223178,7 @@ } }, { - "id": 4190, + "id": 4199, "properties": { "east": "none", "north": "none", @@ -222952,7 +223188,7 @@ } }, { - "id": 4191, + "id": 4200, "properties": { "east": "none", "north": "none", @@ -222962,7 +223198,7 @@ } }, { - "id": 4192, + "id": 4201, "properties": { "east": "none", "north": "none", @@ -222973,7 +223209,7 @@ }, { "default": true, - "id": 4193, + "id": 4202, "properties": { "east": "none", "north": "none", @@ -222982,102 +223218,12 @@ "west": "none" } }, - { - "id": 4194, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 4195, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 4196, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 4197, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 4198, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 4199, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 4200, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 4201, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 4202, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "none", - "west": "none" - } - }, { "id": 4203, "properties": { "east": "none", "north": "none", - "power": "2", + "power": "1", "south": "up", "west": "up" } @@ -223087,7 +223233,7 @@ "properties": { "east": "none", "north": "none", - "power": "2", + "power": "1", "south": "up", "west": "side" } @@ -223097,7 +223243,7 @@ "properties": { "east": "none", "north": "none", - "power": "2", + "power": "1", "south": "up", "west": "none" } @@ -223107,7 +223253,7 @@ "properties": { "east": "none", "north": "none", - "power": "2", + "power": "1", "south": "side", "west": "up" } @@ -223117,7 +223263,7 @@ "properties": { "east": "none", "north": "none", - "power": "2", + "power": "1", "south": "side", "west": "side" } @@ -223127,7 +223273,7 @@ "properties": { "east": "none", "north": "none", - "power": "2", + "power": "1", "south": "side", "west": "none" } @@ -223137,7 +223283,7 @@ "properties": { "east": "none", "north": "none", - "power": "2", + "power": "1", "south": "none", "west": "up" } @@ -223147,7 +223293,7 @@ "properties": { "east": "none", "north": "none", - "power": "2", + "power": "1", "south": "none", "west": "side" } @@ -223157,7 +223303,7 @@ "properties": { "east": "none", "north": "none", - "power": "2", + "power": "1", "south": "none", "west": "none" } @@ -223167,7 +223313,7 @@ "properties": { "east": "none", "north": "none", - "power": "3", + "power": "2", "south": "up", "west": "up" } @@ -223177,7 +223323,7 @@ "properties": { "east": "none", "north": "none", - "power": "3", + "power": "2", "south": "up", "west": "side" } @@ -223187,7 +223333,7 @@ "properties": { "east": "none", "north": "none", - "power": "3", + "power": "2", "south": "up", "west": "none" } @@ -223197,7 +223343,7 @@ "properties": { "east": "none", "north": "none", - "power": "3", + "power": "2", "south": "side", "west": "up" } @@ -223207,7 +223353,7 @@ "properties": { "east": "none", "north": "none", - "power": "3", + "power": "2", "south": "side", "west": "side" } @@ -223217,7 +223363,7 @@ "properties": { "east": "none", "north": "none", - "power": "3", + "power": "2", "south": "side", "west": "none" } @@ -223227,7 +223373,7 @@ "properties": { "east": "none", "north": "none", - "power": "3", + "power": "2", "south": "none", "west": "up" } @@ -223237,7 +223383,7 @@ "properties": { "east": "none", "north": "none", - "power": "3", + "power": "2", "south": "none", "west": "side" } @@ -223247,7 +223393,7 @@ "properties": { "east": "none", "north": "none", - "power": "3", + "power": "2", "south": "none", "west": "none" } @@ -223257,7 +223403,7 @@ "properties": { "east": "none", "north": "none", - "power": "4", + "power": "3", "south": "up", "west": "up" } @@ -223267,7 +223413,7 @@ "properties": { "east": "none", "north": "none", - "power": "4", + "power": "3", "south": "up", "west": "side" } @@ -223277,7 +223423,7 @@ "properties": { "east": "none", "north": "none", - "power": "4", + "power": "3", "south": "up", "west": "none" } @@ -223287,7 +223433,7 @@ "properties": { "east": "none", "north": "none", - "power": "4", + "power": "3", "south": "side", "west": "up" } @@ -223297,7 +223443,7 @@ "properties": { "east": "none", "north": "none", - "power": "4", + "power": "3", "south": "side", "west": "side" } @@ -223307,7 +223453,7 @@ "properties": { "east": "none", "north": "none", - "power": "4", + "power": "3", "south": "side", "west": "none" } @@ -223317,7 +223463,7 @@ "properties": { "east": "none", "north": "none", - "power": "4", + "power": "3", "south": "none", "west": "up" } @@ -223327,7 +223473,7 @@ "properties": { "east": "none", "north": "none", - "power": "4", + "power": "3", "south": "none", "west": "side" } @@ -223337,7 +223483,7 @@ "properties": { "east": "none", "north": "none", - "power": "4", + "power": "3", "south": "none", "west": "none" } @@ -223347,7 +223493,7 @@ "properties": { "east": "none", "north": "none", - "power": "5", + "power": "4", "south": "up", "west": "up" } @@ -223357,7 +223503,7 @@ "properties": { "east": "none", "north": "none", - "power": "5", + "power": "4", "south": "up", "west": "side" } @@ -223367,7 +223513,7 @@ "properties": { "east": "none", "north": "none", - "power": "5", + "power": "4", "south": "up", "west": "none" } @@ -223377,7 +223523,7 @@ "properties": { "east": "none", "north": "none", - "power": "5", + "power": "4", "south": "side", "west": "up" } @@ -223387,7 +223533,7 @@ "properties": { "east": "none", "north": "none", - "power": "5", + "power": "4", "south": "side", "west": "side" } @@ -223397,7 +223543,7 @@ "properties": { "east": "none", "north": "none", - "power": "5", + "power": "4", "south": "side", "west": "none" } @@ -223407,7 +223553,7 @@ "properties": { "east": "none", "north": "none", - "power": "5", + "power": "4", "south": "none", "west": "up" } @@ -223417,7 +223563,7 @@ "properties": { "east": "none", "north": "none", - "power": "5", + "power": "4", "south": "none", "west": "side" } @@ -223427,7 +223573,7 @@ "properties": { "east": "none", "north": "none", - "power": "5", + "power": "4", "south": "none", "west": "none" } @@ -223437,7 +223583,7 @@ "properties": { "east": "none", "north": "none", - "power": "6", + "power": "5", "south": "up", "west": "up" } @@ -223447,7 +223593,7 @@ "properties": { "east": "none", "north": "none", - "power": "6", + "power": "5", "south": "up", "west": "side" } @@ -223457,7 +223603,7 @@ "properties": { "east": "none", "north": "none", - "power": "6", + "power": "5", "south": "up", "west": "none" } @@ -223467,7 +223613,7 @@ "properties": { "east": "none", "north": "none", - "power": "6", + "power": "5", "south": "side", "west": "up" } @@ -223477,7 +223623,7 @@ "properties": { "east": "none", "north": "none", - "power": "6", + "power": "5", "south": "side", "west": "side" } @@ -223487,7 +223633,7 @@ "properties": { "east": "none", "north": "none", - "power": "6", + "power": "5", "south": "side", "west": "none" } @@ -223497,7 +223643,7 @@ "properties": { "east": "none", "north": "none", - "power": "6", + "power": "5", "south": "none", "west": "up" } @@ -223507,7 +223653,7 @@ "properties": { "east": "none", "north": "none", - "power": "6", + "power": "5", "south": "none", "west": "side" } @@ -223517,7 +223663,7 @@ "properties": { "east": "none", "north": "none", - "power": "6", + "power": "5", "south": "none", "west": "none" } @@ -223527,7 +223673,7 @@ "properties": { "east": "none", "north": "none", - "power": "7", + "power": "6", "south": "up", "west": "up" } @@ -223537,7 +223683,7 @@ "properties": { "east": "none", "north": "none", - "power": "7", + "power": "6", "south": "up", "west": "side" } @@ -223547,7 +223693,7 @@ "properties": { "east": "none", "north": "none", - "power": "7", + "power": "6", "south": "up", "west": "none" } @@ -223557,7 +223703,7 @@ "properties": { "east": "none", "north": "none", - "power": "7", + "power": "6", "south": "side", "west": "up" } @@ -223567,7 +223713,7 @@ "properties": { "east": "none", "north": "none", - "power": "7", + "power": "6", "south": "side", "west": "side" } @@ -223577,7 +223723,7 @@ "properties": { "east": "none", "north": "none", - "power": "7", + "power": "6", "south": "side", "west": "none" } @@ -223587,7 +223733,7 @@ "properties": { "east": "none", "north": "none", - "power": "7", + "power": "6", "south": "none", "west": "up" } @@ -223597,7 +223743,7 @@ "properties": { "east": "none", "north": "none", - "power": "7", + "power": "6", "south": "none", "west": "side" } @@ -223607,7 +223753,7 @@ "properties": { "east": "none", "north": "none", - "power": "7", + "power": "6", "south": "none", "west": "none" } @@ -223617,7 +223763,7 @@ "properties": { "east": "none", "north": "none", - "power": "8", + "power": "7", "south": "up", "west": "up" } @@ -223627,7 +223773,7 @@ "properties": { "east": "none", "north": "none", - "power": "8", + "power": "7", "south": "up", "west": "side" } @@ -223637,7 +223783,7 @@ "properties": { "east": "none", "north": "none", - "power": "8", + "power": "7", "south": "up", "west": "none" } @@ -223647,7 +223793,7 @@ "properties": { "east": "none", "north": "none", - "power": "8", + "power": "7", "south": "side", "west": "up" } @@ -223657,7 +223803,7 @@ "properties": { "east": "none", "north": "none", - "power": "8", + "power": "7", "south": "side", "west": "side" } @@ -223667,7 +223813,7 @@ "properties": { "east": "none", "north": "none", - "power": "8", + "power": "7", "south": "side", "west": "none" } @@ -223677,7 +223823,7 @@ "properties": { "east": "none", "north": "none", - "power": "8", + "power": "7", "south": "none", "west": "up" } @@ -223687,7 +223833,7 @@ "properties": { "east": "none", "north": "none", - "power": "8", + "power": "7", "south": "none", "west": "side" } @@ -223697,7 +223843,7 @@ "properties": { "east": "none", "north": "none", - "power": "8", + "power": "7", "south": "none", "west": "none" } @@ -223707,7 +223853,7 @@ "properties": { "east": "none", "north": "none", - "power": "9", + "power": "8", "south": "up", "west": "up" } @@ -223717,7 +223863,7 @@ "properties": { "east": "none", "north": "none", - "power": "9", + "power": "8", "south": "up", "west": "side" } @@ -223727,7 +223873,7 @@ "properties": { "east": "none", "north": "none", - "power": "9", + "power": "8", "south": "up", "west": "none" } @@ -223737,7 +223883,7 @@ "properties": { "east": "none", "north": "none", - "power": "9", + "power": "8", "south": "side", "west": "up" } @@ -223747,7 +223893,7 @@ "properties": { "east": "none", "north": "none", - "power": "9", + "power": "8", "south": "side", "west": "side" } @@ -223757,7 +223903,7 @@ "properties": { "east": "none", "north": "none", - "power": "9", + "power": "8", "south": "side", "west": "none" } @@ -223767,7 +223913,7 @@ "properties": { "east": "none", "north": "none", - "power": "9", + "power": "8", "south": "none", "west": "up" } @@ -223777,7 +223923,7 @@ "properties": { "east": "none", "north": "none", - "power": "9", + "power": "8", "south": "none", "west": "side" } @@ -223787,7 +223933,7 @@ "properties": { "east": "none", "north": "none", - "power": "9", + "power": "8", "south": "none", "west": "none" } @@ -223797,7 +223943,7 @@ "properties": { "east": "none", "north": "none", - "power": "10", + "power": "9", "south": "up", "west": "up" } @@ -223807,7 +223953,7 @@ "properties": { "east": "none", "north": "none", - "power": "10", + "power": "9", "south": "up", "west": "side" } @@ -223817,7 +223963,7 @@ "properties": { "east": "none", "north": "none", - "power": "10", + "power": "9", "south": "up", "west": "none" } @@ -223827,7 +223973,7 @@ "properties": { "east": "none", "north": "none", - "power": "10", + "power": "9", "south": "side", "west": "up" } @@ -223837,7 +223983,7 @@ "properties": { "east": "none", "north": "none", - "power": "10", + "power": "9", "south": "side", "west": "side" } @@ -223847,7 +223993,7 @@ "properties": { "east": "none", "north": "none", - "power": "10", + "power": "9", "south": "side", "west": "none" } @@ -223857,7 +224003,7 @@ "properties": { "east": "none", "north": "none", - "power": "10", + "power": "9", "south": "none", "west": "up" } @@ -223867,7 +224013,7 @@ "properties": { "east": "none", "north": "none", - "power": "10", + "power": "9", "south": "none", "west": "side" } @@ -223877,7 +224023,7 @@ "properties": { "east": "none", "north": "none", - "power": "10", + "power": "9", "south": "none", "west": "none" } @@ -223887,7 +224033,7 @@ "properties": { "east": "none", "north": "none", - "power": "11", + "power": "10", "south": "up", "west": "up" } @@ -223897,7 +224043,7 @@ "properties": { "east": "none", "north": "none", - "power": "11", + "power": "10", "south": "up", "west": "side" } @@ -223907,7 +224053,7 @@ "properties": { "east": "none", "north": "none", - "power": "11", + "power": "10", "south": "up", "west": "none" } @@ -223917,7 +224063,7 @@ "properties": { "east": "none", "north": "none", - "power": "11", + "power": "10", "south": "side", "west": "up" } @@ -223927,7 +224073,7 @@ "properties": { "east": "none", "north": "none", - "power": "11", + "power": "10", "south": "side", "west": "side" } @@ -223937,7 +224083,7 @@ "properties": { "east": "none", "north": "none", - "power": "11", + "power": "10", "south": "side", "west": "none" } @@ -223947,7 +224093,7 @@ "properties": { "east": "none", "north": "none", - "power": "11", + "power": "10", "south": "none", "west": "up" } @@ -223957,7 +224103,7 @@ "properties": { "east": "none", "north": "none", - "power": "11", + "power": "10", "south": "none", "west": "side" } @@ -223967,7 +224113,7 @@ "properties": { "east": "none", "north": "none", - "power": "11", + "power": "10", "south": "none", "west": "none" } @@ -223977,7 +224123,7 @@ "properties": { "east": "none", "north": "none", - "power": "12", + "power": "11", "south": "up", "west": "up" } @@ -223987,7 +224133,7 @@ "properties": { "east": "none", "north": "none", - "power": "12", + "power": "11", "south": "up", "west": "side" } @@ -223997,7 +224143,7 @@ "properties": { "east": "none", "north": "none", - "power": "12", + "power": "11", "south": "up", "west": "none" } @@ -224007,7 +224153,7 @@ "properties": { "east": "none", "north": "none", - "power": "12", + "power": "11", "south": "side", "west": "up" } @@ -224017,7 +224163,7 @@ "properties": { "east": "none", "north": "none", - "power": "12", + "power": "11", "south": "side", "west": "side" } @@ -224027,7 +224173,7 @@ "properties": { "east": "none", "north": "none", - "power": "12", + "power": "11", "south": "side", "west": "none" } @@ -224037,7 +224183,7 @@ "properties": { "east": "none", "north": "none", - "power": "12", + "power": "11", "south": "none", "west": "up" } @@ -224047,7 +224193,7 @@ "properties": { "east": "none", "north": "none", - "power": "12", + "power": "11", "south": "none", "west": "side" } @@ -224057,7 +224203,7 @@ "properties": { "east": "none", "north": "none", - "power": "12", + "power": "11", "south": "none", "west": "none" } @@ -224067,7 +224213,7 @@ "properties": { "east": "none", "north": "none", - "power": "13", + "power": "12", "south": "up", "west": "up" } @@ -224077,7 +224223,7 @@ "properties": { "east": "none", "north": "none", - "power": "13", + "power": "12", "south": "up", "west": "side" } @@ -224087,7 +224233,7 @@ "properties": { "east": "none", "north": "none", - "power": "13", + "power": "12", "south": "up", "west": "none" } @@ -224097,7 +224243,7 @@ "properties": { "east": "none", "north": "none", - "power": "13", + "power": "12", "south": "side", "west": "up" } @@ -224107,7 +224253,7 @@ "properties": { "east": "none", "north": "none", - "power": "13", + "power": "12", "south": "side", "west": "side" } @@ -224117,7 +224263,7 @@ "properties": { "east": "none", "north": "none", - "power": "13", + "power": "12", "south": "side", "west": "none" } @@ -224127,7 +224273,7 @@ "properties": { "east": "none", "north": "none", - "power": "13", + "power": "12", "south": "none", "west": "up" } @@ -224137,7 +224283,7 @@ "properties": { "east": "none", "north": "none", - "power": "13", + "power": "12", "south": "none", "west": "side" } @@ -224147,7 +224293,7 @@ "properties": { "east": "none", "north": "none", - "power": "13", + "power": "12", "south": "none", "west": "none" } @@ -224157,7 +224303,7 @@ "properties": { "east": "none", "north": "none", - "power": "14", + "power": "13", "south": "up", "west": "up" } @@ -224167,7 +224313,7 @@ "properties": { "east": "none", "north": "none", - "power": "14", + "power": "13", "south": "up", "west": "side" } @@ -224177,7 +224323,7 @@ "properties": { "east": "none", "north": "none", - "power": "14", + "power": "13", "south": "up", "west": "none" } @@ -224187,7 +224333,7 @@ "properties": { "east": "none", "north": "none", - "power": "14", + "power": "13", "south": "side", "west": "up" } @@ -224197,7 +224343,7 @@ "properties": { "east": "none", "north": "none", - "power": "14", + "power": "13", "south": "side", "west": "side" } @@ -224207,7 +224353,7 @@ "properties": { "east": "none", "north": "none", - "power": "14", + "power": "13", "south": "side", "west": "none" } @@ -224217,7 +224363,7 @@ "properties": { "east": "none", "north": "none", - "power": "14", + "power": "13", "south": "none", "west": "up" } @@ -224227,7 +224373,7 @@ "properties": { "east": "none", "north": "none", - "power": "14", + "power": "13", "south": "none", "west": "side" } @@ -224237,7 +224383,7 @@ "properties": { "east": "none", "north": "none", - "power": "14", + "power": "13", "south": "none", "west": "none" } @@ -224247,7 +224393,7 @@ "properties": { "east": "none", "north": "none", - "power": "15", + "power": "14", "south": "up", "west": "up" } @@ -224257,7 +224403,7 @@ "properties": { "east": "none", "north": "none", - "power": "15", + "power": "14", "south": "up", "west": "side" } @@ -224267,7 +224413,7 @@ "properties": { "east": "none", "north": "none", - "power": "15", + "power": "14", "south": "up", "west": "none" } @@ -224277,7 +224423,7 @@ "properties": { "east": "none", "north": "none", - "power": "15", + "power": "14", "south": "side", "west": "up" } @@ -224287,7 +224433,7 @@ "properties": { "east": "none", "north": "none", - "power": "15", + "power": "14", "south": "side", "west": "side" } @@ -224297,7 +224443,7 @@ "properties": { "east": "none", "north": "none", - "power": "15", + "power": "14", "south": "side", "west": "none" } @@ -224307,7 +224453,7 @@ "properties": { "east": "none", "north": "none", - "power": "15", + "power": "14", "south": "none", "west": "up" } @@ -224317,13 +224463,103 @@ "properties": { "east": "none", "north": "none", - "power": "15", + "power": "14", "south": "none", "west": "side" } }, { "id": 4328, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4329, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4330, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4331, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4332, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4333, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4334, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4335, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4336, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4337, "properties": { "east": "none", "north": "none", @@ -224342,7 +224578,7 @@ "states": [ { "default": true, - "id": 27586 + "id": 27633 } ] }, @@ -224375,7 +224611,7 @@ }, "states": [ { - "id": 6050, + "id": 6060, "properties": { "delay": "1", "facing": "north", @@ -224384,7 +224620,7 @@ } }, { - "id": 6051, + "id": 6061, "properties": { "delay": "1", "facing": "north", @@ -224393,7 +224629,7 @@ } }, { - "id": 6052, + "id": 6062, "properties": { "delay": "1", "facing": "north", @@ -224403,7 +224639,7 @@ }, { "default": true, - "id": 6053, + "id": 6063, "properties": { "delay": "1", "facing": "north", @@ -224411,98 +224647,98 @@ "powered": "false" } }, - { - "id": 6054, - "properties": { - "delay": "1", - "facing": "south", - "locked": "true", - "powered": "true" - } - }, - { - "id": 6055, - "properties": { - "delay": "1", - "facing": "south", - "locked": "true", - "powered": "false" - } - }, - { - "id": 6056, - "properties": { - "delay": "1", - "facing": "south", - "locked": "false", - "powered": "true" - } - }, - { - "id": 6057, - "properties": { - "delay": "1", - "facing": "south", - "locked": "false", - "powered": "false" - } - }, - { - "id": 6058, - "properties": { - "delay": "1", - "facing": "west", - "locked": "true", - "powered": "true" - } - }, - { - "id": 6059, - "properties": { - "delay": "1", - "facing": "west", - "locked": "true", - "powered": "false" - } - }, - { - "id": 6060, - "properties": { - "delay": "1", - "facing": "west", - "locked": "false", - "powered": "true" - } - }, - { - "id": 6061, - "properties": { - "delay": "1", - "facing": "west", - "locked": "false", - "powered": "false" - } - }, - { - "id": 6062, - "properties": { - "delay": "1", - "facing": "east", - "locked": "true", - "powered": "true" - } - }, - { - "id": 6063, - "properties": { - "delay": "1", - "facing": "east", - "locked": "true", - "powered": "false" - } - }, { "id": 6064, + "properties": { + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 6065, + "properties": { + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 6066, + "properties": { + "delay": "1", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 6067, + "properties": { + "delay": "1", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 6068, + "properties": { + "delay": "1", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 6069, + "properties": { + "delay": "1", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 6070, + "properties": { + "delay": "1", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 6071, + "properties": { + "delay": "1", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 6072, + "properties": { + "delay": "1", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 6073, + "properties": { + "delay": "1", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 6074, "properties": { "delay": "1", "facing": "east", @@ -224511,7 +224747,7 @@ } }, { - "id": 6065, + "id": 6075, "properties": { "delay": "1", "facing": "east", @@ -224519,102 +224755,12 @@ "powered": "false" } }, - { - "id": 6066, - "properties": { - "delay": "2", - "facing": "north", - "locked": "true", - "powered": "true" - } - }, - { - "id": 6067, - "properties": { - "delay": "2", - "facing": "north", - "locked": "true", - "powered": "false" - } - }, - { - "id": 6068, - "properties": { - "delay": "2", - "facing": "north", - "locked": "false", - "powered": "true" - } - }, - { - "id": 6069, - "properties": { - "delay": "2", - "facing": "north", - "locked": "false", - "powered": "false" - } - }, - { - "id": 6070, - "properties": { - "delay": "2", - "facing": "south", - "locked": "true", - "powered": "true" - } - }, - { - "id": 6071, - "properties": { - "delay": "2", - "facing": "south", - "locked": "true", - "powered": "false" - } - }, - { - "id": 6072, - "properties": { - "delay": "2", - "facing": "south", - "locked": "false", - "powered": "true" - } - }, - { - "id": 6073, - "properties": { - "delay": "2", - "facing": "south", - "locked": "false", - "powered": "false" - } - }, - { - "id": 6074, - "properties": { - "delay": "2", - "facing": "west", - "locked": "true", - "powered": "true" - } - }, - { - "id": 6075, - "properties": { - "delay": "2", - "facing": "west", - "locked": "true", - "powered": "false" - } - }, { "id": 6076, "properties": { "delay": "2", - "facing": "west", - "locked": "false", + "facing": "north", + "locked": "true", "powered": "true" } }, @@ -224622,8 +224768,8 @@ "id": 6077, "properties": { "delay": "2", - "facing": "west", - "locked": "false", + "facing": "north", + "locked": "true", "powered": "false" } }, @@ -224631,8 +224777,8 @@ "id": 6078, "properties": { "delay": "2", - "facing": "east", - "locked": "true", + "facing": "north", + "locked": "false", "powered": "true" } }, @@ -224640,13 +224786,103 @@ "id": 6079, "properties": { "delay": "2", - "facing": "east", - "locked": "true", + "facing": "north", + "locked": "false", "powered": "false" } }, { "id": 6080, + "properties": { + "delay": "2", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 6081, + "properties": { + "delay": "2", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 6082, + "properties": { + "delay": "2", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 6083, + "properties": { + "delay": "2", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 6084, + "properties": { + "delay": "2", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 6085, + "properties": { + "delay": "2", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 6086, + "properties": { + "delay": "2", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 6087, + "properties": { + "delay": "2", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 6088, + "properties": { + "delay": "2", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 6089, + "properties": { + "delay": "2", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 6090, "properties": { "delay": "2", "facing": "east", @@ -224655,7 +224891,7 @@ } }, { - "id": 6081, + "id": 6091, "properties": { "delay": "2", "facing": "east", @@ -224663,102 +224899,12 @@ "powered": "false" } }, - { - "id": 6082, - "properties": { - "delay": "3", - "facing": "north", - "locked": "true", - "powered": "true" - } - }, - { - "id": 6083, - "properties": { - "delay": "3", - "facing": "north", - "locked": "true", - "powered": "false" - } - }, - { - "id": 6084, - "properties": { - "delay": "3", - "facing": "north", - "locked": "false", - "powered": "true" - } - }, - { - "id": 6085, - "properties": { - "delay": "3", - "facing": "north", - "locked": "false", - "powered": "false" - } - }, - { - "id": 6086, - "properties": { - "delay": "3", - "facing": "south", - "locked": "true", - "powered": "true" - } - }, - { - "id": 6087, - "properties": { - "delay": "3", - "facing": "south", - "locked": "true", - "powered": "false" - } - }, - { - "id": 6088, - "properties": { - "delay": "3", - "facing": "south", - "locked": "false", - "powered": "true" - } - }, - { - "id": 6089, - "properties": { - "delay": "3", - "facing": "south", - "locked": "false", - "powered": "false" - } - }, - { - "id": 6090, - "properties": { - "delay": "3", - "facing": "west", - "locked": "true", - "powered": "true" - } - }, - { - "id": 6091, - "properties": { - "delay": "3", - "facing": "west", - "locked": "true", - "powered": "false" - } - }, { "id": 6092, "properties": { "delay": "3", - "facing": "west", - "locked": "false", + "facing": "north", + "locked": "true", "powered": "true" } }, @@ -224766,8 +224912,8 @@ "id": 6093, "properties": { "delay": "3", - "facing": "west", - "locked": "false", + "facing": "north", + "locked": "true", "powered": "false" } }, @@ -224775,8 +224921,8 @@ "id": 6094, "properties": { "delay": "3", - "facing": "east", - "locked": "true", + "facing": "north", + "locked": "false", "powered": "true" } }, @@ -224784,13 +224930,103 @@ "id": 6095, "properties": { "delay": "3", - "facing": "east", - "locked": "true", + "facing": "north", + "locked": "false", "powered": "false" } }, { "id": 6096, + "properties": { + "delay": "3", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 6097, + "properties": { + "delay": "3", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 6098, + "properties": { + "delay": "3", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 6099, + "properties": { + "delay": "3", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 6100, + "properties": { + "delay": "3", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 6101, + "properties": { + "delay": "3", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 6102, + "properties": { + "delay": "3", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 6103, + "properties": { + "delay": "3", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 6104, + "properties": { + "delay": "3", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 6105, + "properties": { + "delay": "3", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 6106, "properties": { "delay": "3", "facing": "east", @@ -224799,7 +225035,7 @@ } }, { - "id": 6097, + "id": 6107, "properties": { "delay": "3", "facing": "east", @@ -224807,102 +225043,12 @@ "powered": "false" } }, - { - "id": 6098, - "properties": { - "delay": "4", - "facing": "north", - "locked": "true", - "powered": "true" - } - }, - { - "id": 6099, - "properties": { - "delay": "4", - "facing": "north", - "locked": "true", - "powered": "false" - } - }, - { - "id": 6100, - "properties": { - "delay": "4", - "facing": "north", - "locked": "false", - "powered": "true" - } - }, - { - "id": 6101, - "properties": { - "delay": "4", - "facing": "north", - "locked": "false", - "powered": "false" - } - }, - { - "id": 6102, - "properties": { - "delay": "4", - "facing": "south", - "locked": "true", - "powered": "true" - } - }, - { - "id": 6103, - "properties": { - "delay": "4", - "facing": "south", - "locked": "true", - "powered": "false" - } - }, - { - "id": 6104, - "properties": { - "delay": "4", - "facing": "south", - "locked": "false", - "powered": "true" - } - }, - { - "id": 6105, - "properties": { - "delay": "4", - "facing": "south", - "locked": "false", - "powered": "false" - } - }, - { - "id": 6106, - "properties": { - "delay": "4", - "facing": "west", - "locked": "true", - "powered": "true" - } - }, - { - "id": 6107, - "properties": { - "delay": "4", - "facing": "west", - "locked": "true", - "powered": "false" - } - }, { "id": 6108, "properties": { "delay": "4", - "facing": "west", - "locked": "false", + "facing": "north", + "locked": "true", "powered": "true" } }, @@ -224910,13 +225056,103 @@ "id": 6109, "properties": { "delay": "4", - "facing": "west", - "locked": "false", + "facing": "north", + "locked": "true", "powered": "false" } }, { "id": 6110, + "properties": { + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "id": 6111, + "properties": { + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 6112, + "properties": { + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 6113, + "properties": { + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 6114, + "properties": { + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 6115, + "properties": { + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 6116, + "properties": { + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 6117, + "properties": { + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 6118, + "properties": { + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 6119, + "properties": { + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 6120, "properties": { "delay": "4", "facing": "east", @@ -224925,7 +225161,7 @@ } }, { - "id": 6111, + "id": 6121, "properties": { "delay": "4", "facing": "east", @@ -224934,7 +225170,7 @@ } }, { - "id": 6112, + "id": 6122, "properties": { "delay": "4", "facing": "east", @@ -224943,7 +225179,7 @@ } }, { - "id": 6113, + "id": 6123, "properties": { "delay": "4", "facing": "east", @@ -224975,42 +225211,42 @@ }, "states": [ { - "id": 13528, + "id": 13538, "properties": { "conditional": "true", "facing": "north" } }, { - "id": 13529, + "id": 13539, "properties": { "conditional": "true", "facing": "east" } }, { - "id": 13530, + "id": 13540, "properties": { "conditional": "true", "facing": "south" } }, { - "id": 13531, + "id": 13541, "properties": { "conditional": "true", "facing": "west" } }, { - "id": 13532, + "id": 13542, "properties": { "conditional": "true", "facing": "up" } }, { - "id": 13533, + "id": 13543, "properties": { "conditional": "true", "facing": "down" @@ -225018,42 +225254,42 @@ }, { "default": true, - "id": 13534, + "id": 13544, "properties": { "conditional": "false", "facing": "north" } }, { - "id": 13535, + "id": 13545, "properties": { "conditional": "false", "facing": "east" } }, { - "id": 13536, + "id": 13546, "properties": { "conditional": "false", "facing": "south" } }, { - "id": 13537, + "id": 13547, "properties": { "conditional": "false", "facing": "west" } }, { - "id": 13538, + "id": 13548, "properties": { "conditional": "false", "facing": "up" } }, { - "id": 13539, + "id": 13549, "properties": { "conditional": "false", "facing": "down" @@ -225069,7 +225305,7 @@ "states": [ { "default": true, - "id": 7633 + "id": 7643 } ] }, @@ -225091,21 +225327,21 @@ }, "states": [ { - "id": 7715, + "id": 7725, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 7716, + "id": 7726, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 7717, + "id": 7727, "properties": { "type": "bottom", "waterlogged": "true" @@ -225113,21 +225349,21 @@ }, { "default": true, - "id": 7718, + "id": 7728, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 7719, + "id": 7729, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 7720, + "id": 7730, "properties": { "type": "double", "waterlogged": "false" @@ -225167,98 +225403,98 @@ ] }, "states": [ - { - "id": 7635, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7636, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7637, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7638, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7639, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7640, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7641, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7642, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7643, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7644, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 7645, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7646, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7647, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7648, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7649, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7650, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7651, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7652, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7653, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7654, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7655, "properties": { "facing": "north", "half": "bottom", @@ -225268,100 +225504,10 @@ }, { "default": true, - "id": 7646, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7647, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7648, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7649, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7650, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7651, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7652, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7653, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7654, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7655, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 7656, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -225369,8 +225515,8 @@ { "id": 7657, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -225378,8 +225524,8 @@ { "id": 7658, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -225387,8 +225533,8 @@ { "id": 7659, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -225396,8 +225542,8 @@ { "id": 7660, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -225405,8 +225551,8 @@ { "id": 7661, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -225414,8 +225560,8 @@ { "id": 7662, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -225423,8 +225569,8 @@ { "id": 7663, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -225432,8 +225578,8 @@ { "id": 7664, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -225442,7 +225588,7 @@ "id": 7665, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -225451,7 +225597,7 @@ "id": 7666, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -225460,7 +225606,7 @@ "id": 7667, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -225469,7 +225615,7 @@ "id": 7668, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -225478,7 +225624,7 @@ "id": 7669, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -225487,7 +225633,7 @@ "id": 7670, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -225496,7 +225642,7 @@ "id": 7671, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -225505,7 +225651,7 @@ "id": 7672, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -225514,7 +225660,7 @@ "id": 7673, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -225523,7 +225669,7 @@ "id": 7674, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -225531,8 +225677,8 @@ { "id": 7675, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -225540,8 +225686,8 @@ { "id": 7676, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -225549,8 +225695,8 @@ { "id": 7677, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -225558,8 +225704,8 @@ { "id": 7678, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -225567,8 +225713,8 @@ { "id": 7679, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -225576,8 +225722,8 @@ { "id": 7680, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -225585,8 +225731,8 @@ { "id": 7681, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -225594,8 +225740,8 @@ { "id": 7682, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -225603,8 +225749,8 @@ { "id": 7683, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -225612,8 +225758,8 @@ { "id": 7684, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -225622,7 +225768,7 @@ "id": 7685, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -225631,7 +225777,7 @@ "id": 7686, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -225640,7 +225786,7 @@ "id": 7687, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -225649,7 +225795,7 @@ "id": 7688, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -225658,7 +225804,7 @@ "id": 7689, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -225667,7 +225813,7 @@ "id": 7690, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -225676,7 +225822,7 @@ "id": 7691, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -225685,7 +225831,7 @@ "id": 7692, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -225694,7 +225840,7 @@ "id": 7693, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -225703,7 +225849,7 @@ "id": 7694, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -225711,8 +225857,8 @@ { "id": 7695, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -225720,8 +225866,8 @@ { "id": 7696, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -225729,8 +225875,8 @@ { "id": 7697, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -225738,8 +225884,8 @@ { "id": 7698, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -225747,8 +225893,8 @@ { "id": 7699, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -225756,8 +225902,8 @@ { "id": 7700, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -225765,8 +225911,8 @@ { "id": 7701, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -225774,8 +225920,8 @@ { "id": 7702, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -225783,8 +225929,8 @@ { "id": 7703, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -225792,8 +225938,8 @@ { "id": 7704, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -225802,7 +225948,7 @@ "id": 7705, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -225811,7 +225957,7 @@ "id": 7706, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -225820,7 +225966,7 @@ "id": 7707, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -225829,7 +225975,7 @@ "id": 7708, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -225838,7 +225984,7 @@ "id": 7709, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -225847,7 +225993,7 @@ "id": 7710, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -225856,7 +226002,7 @@ "id": 7711, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -225865,7 +226011,7 @@ "id": 7712, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -225874,13 +226020,103 @@ "id": 7713, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 7714, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7715, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7716, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7717, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7718, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7719, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7720, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7721, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7722, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7723, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7724, "properties": { "facing": "east", "half": "bottom", @@ -225927,7 +226163,7 @@ }, "states": [ { - "id": 7721, + "id": 7731, "properties": { "east": "none", "north": "none", @@ -225938,7 +226174,7 @@ } }, { - "id": 7722, + "id": 7732, "properties": { "east": "none", "north": "none", @@ -225949,7 +226185,7 @@ } }, { - "id": 7723, + "id": 7733, "properties": { "east": "none", "north": "none", @@ -225961,124 +226197,14 @@ }, { "default": true, - "id": 7724, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7725, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7726, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7727, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7728, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7729, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7730, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7731, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7732, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7733, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { "id": 7734, "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -226086,10 +226212,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -226097,10 +226223,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -226108,10 +226234,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -226119,10 +226245,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -226130,10 +226256,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -226141,10 +226267,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -226152,10 +226278,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -226163,10 +226289,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -226175,9 +226301,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -226186,9 +226312,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -226196,10 +226322,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -226207,10 +226333,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -226218,10 +226344,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -226229,10 +226355,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -226240,10 +226366,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -226251,10 +226377,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -226262,10 +226388,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -226273,10 +226399,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -226284,10 +226410,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -226295,10 +226421,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -226307,9 +226433,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -226318,130 +226444,130 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 7757, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 7758, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 7759, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 7760, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 7761, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 7762, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7763, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7764, - "properties": { - "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 7765, + "id": 7763, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 7766, + "id": 7764, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 7765, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7766, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 7767, "properties": { "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -226450,9 +226576,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -226460,10 +226586,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -226471,10 +226597,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -226482,10 +226608,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -226493,10 +226619,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -226504,10 +226630,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -226515,10 +226641,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -226526,10 +226652,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -226537,10 +226663,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -226548,10 +226674,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -226559,10 +226685,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -226571,9 +226697,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -226582,9 +226708,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -226592,10 +226718,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -226603,10 +226729,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -226614,10 +226740,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -226625,10 +226751,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -226636,10 +226762,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -226647,10 +226773,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -226658,10 +226784,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -226669,10 +226795,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -226680,10 +226806,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -226691,10 +226817,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -226703,9 +226829,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -226714,130 +226840,130 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 7793, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 7794, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 7795, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 7796, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 7797, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 7798, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7799, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7800, - "properties": { - "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 7801, + "id": 7799, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 7802, + "id": 7800, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 7801, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7802, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 7803, "properties": { "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -226846,9 +226972,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -226856,10 +226982,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -226867,10 +226993,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -226878,10 +227004,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -226889,10 +227015,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -226900,10 +227026,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -226911,10 +227037,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -226922,10 +227048,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -226933,10 +227059,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -226944,10 +227070,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -226955,10 +227081,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -226967,9 +227093,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -226978,9 +227104,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -226988,10 +227114,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -226999,10 +227125,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -227010,10 +227136,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -227021,10 +227147,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -227032,10 +227158,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -227043,10 +227169,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -227054,10 +227180,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -227065,10 +227191,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -227076,10 +227202,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -227087,14 +227213,124 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 7827, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7828, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7829, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7830, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7831, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7832, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7833, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7834, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7835, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7836, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7837, "properties": { "east": "none", "north": "tall", @@ -227105,7 +227341,7 @@ } }, { - "id": 7828, + "id": 7838, "properties": { "east": "none", "north": "tall", @@ -227115,125 +227351,15 @@ "west": "tall" } }, - { - "id": 7829, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7830, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7831, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7832, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7833, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7834, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7835, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7836, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7837, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7838, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 7839, "properties": { "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -227242,9 +227368,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -227252,10 +227378,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -227263,10 +227389,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -227274,10 +227400,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -227285,10 +227411,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -227296,10 +227422,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -227307,10 +227433,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -227318,10 +227444,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -227329,10 +227455,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -227340,10 +227466,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -227351,10 +227477,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -227363,9 +227489,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -227374,9 +227500,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -227384,10 +227510,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -227395,10 +227521,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -227406,10 +227532,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -227417,10 +227543,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -227428,10 +227554,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -227439,10 +227565,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -227450,10 +227576,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -227461,10 +227587,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -227472,10 +227598,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -227483,10 +227609,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -227495,9 +227621,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -227506,130 +227632,130 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 7865, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 7866, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 7867, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 7868, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 7869, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 7870, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7871, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7872, - "properties": { - "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 7873, + "id": 7871, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 7874, + "id": 7872, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 7873, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7874, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 7875, "properties": { "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -227638,9 +227764,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -227648,10 +227774,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -227659,10 +227785,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -227670,10 +227796,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -227681,10 +227807,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -227692,10 +227818,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -227703,10 +227829,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -227714,10 +227840,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -227725,10 +227851,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -227736,10 +227862,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -227747,10 +227873,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -227759,9 +227885,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -227770,9 +227896,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -227780,10 +227906,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -227791,10 +227917,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -227802,10 +227928,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -227813,10 +227939,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -227824,10 +227950,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -227835,10 +227961,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -227846,10 +227972,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -227857,10 +227983,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -227868,10 +227994,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -227879,10 +228005,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -227891,9 +228017,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -227902,130 +228028,130 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 7901, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 7902, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 7903, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 7904, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 7905, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 7906, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7907, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7908, - "properties": { - "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 7909, + "id": 7907, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 7910, + "id": 7908, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 7909, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7910, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 7911, "properties": { "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -228034,9 +228160,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -228044,10 +228170,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -228055,10 +228181,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -228066,10 +228192,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -228077,10 +228203,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -228088,10 +228214,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -228099,10 +228225,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -228110,10 +228236,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -228121,10 +228247,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -228132,10 +228258,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -228143,10 +228269,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -228155,9 +228281,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -228166,9 +228292,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -228176,10 +228302,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -228187,10 +228313,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -228198,10 +228324,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -228209,10 +228335,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -228220,10 +228346,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -228231,10 +228357,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -228242,10 +228368,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -228253,10 +228379,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -228264,10 +228390,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -228275,14 +228401,124 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 7935, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7936, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7937, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7938, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7939, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7940, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7941, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7942, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7943, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7944, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7945, "properties": { "east": "low", "north": "tall", @@ -228293,7 +228529,7 @@ } }, { - "id": 7936, + "id": 7946, "properties": { "east": "low", "north": "tall", @@ -228303,125 +228539,15 @@ "west": "tall" } }, - { - "id": 7937, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7938, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7939, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7940, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7941, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7942, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7943, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7944, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7945, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7946, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 7947, "properties": { "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -228430,9 +228556,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -228440,10 +228566,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -228451,10 +228577,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -228462,10 +228588,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -228473,10 +228599,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -228484,10 +228610,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -228495,10 +228621,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -228506,10 +228632,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -228517,10 +228643,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -228528,10 +228654,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -228539,10 +228665,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -228551,9 +228677,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -228562,9 +228688,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -228572,10 +228698,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -228583,10 +228709,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -228594,10 +228720,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -228605,10 +228731,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -228616,10 +228742,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -228627,10 +228753,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -228638,10 +228764,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -228649,10 +228775,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -228660,10 +228786,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -228671,14 +228797,124 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 7971, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7972, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7973, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7974, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7975, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7976, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7977, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7978, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7979, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7980, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7981, "properties": { "east": "tall", "north": "none", @@ -228689,7 +228925,7 @@ } }, { - "id": 7972, + "id": 7982, "properties": { "east": "tall", "north": "none", @@ -228699,125 +228935,15 @@ "west": "tall" } }, - { - "id": 7973, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7974, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7975, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7976, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7977, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7978, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7979, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7980, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7981, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7982, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 7983, "properties": { "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -228826,9 +228952,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -228836,10 +228962,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -228847,10 +228973,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -228858,10 +228984,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -228869,10 +228995,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -228880,10 +229006,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -228891,10 +229017,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -228902,10 +229028,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -228913,10 +229039,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -228924,10 +229050,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -228935,10 +229061,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -228947,9 +229073,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -228958,9 +229084,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -228968,10 +229094,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -228979,10 +229105,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -228990,10 +229116,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -229001,10 +229127,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -229012,10 +229138,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -229023,10 +229149,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -229034,10 +229160,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -229045,10 +229171,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -229056,10 +229182,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -229067,14 +229193,124 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 8007, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8008, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8009, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8010, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8011, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8012, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8013, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8014, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8015, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8016, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8017, "properties": { "east": "tall", "north": "low", @@ -229085,7 +229321,7 @@ } }, { - "id": 8008, + "id": 8018, "properties": { "east": "tall", "north": "low", @@ -229095,125 +229331,15 @@ "west": "tall" } }, - { - "id": 8009, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8010, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8011, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8012, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8013, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8014, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8015, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8016, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8017, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8018, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 8019, "properties": { "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -229222,9 +229348,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -229232,10 +229358,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -229243,10 +229369,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -229254,10 +229380,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -229265,10 +229391,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -229276,10 +229402,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -229287,10 +229413,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -229298,10 +229424,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -229309,10 +229435,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -229320,10 +229446,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -229331,14 +229457,124 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 8031, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8032, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8033, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8034, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8035, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8036, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8037, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8038, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8039, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8040, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8041, "properties": { "east": "tall", "north": "tall", @@ -229349,7 +229585,7 @@ } }, { - "id": 8032, + "id": 8042, "properties": { "east": "tall", "north": "tall", @@ -229359,118 +229595,118 @@ "west": "tall" } }, - { - "id": 8033, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8034, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8035, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8036, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8037, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8038, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8039, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8040, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8041, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8042, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 8043, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8044, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8045, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8046, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8047, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8048, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8049, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8050, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8051, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8052, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8053, "properties": { "east": "tall", "north": "tall", @@ -229481,7 +229717,7 @@ } }, { - "id": 8044, + "id": 8054, "properties": { "east": "tall", "north": "tall", @@ -229501,7 +229737,7 @@ "states": [ { "default": true, - "id": 7634 + "id": 7644 } ] }, @@ -229541,135 +229777,15 @@ ] }, "states": [ - { - "id": 7230, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7231, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7232, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7233, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7234, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7235, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7236, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7237, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7238, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7239, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 7240, "properties": { "down": "true", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -229679,9 +229795,9 @@ "down": "true", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -229691,9 +229807,9 @@ "down": "true", "east": "true", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -229703,9 +229819,9 @@ "down": "true", "east": "true", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "false" } }, @@ -229715,9 +229831,9 @@ "down": "true", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -229727,9 +229843,9 @@ "down": "true", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -229738,10 +229854,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "true" } }, @@ -229750,10 +229866,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "false" } }, @@ -229762,10 +229878,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -229774,10 +229890,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -229786,10 +229902,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -229798,10 +229914,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", "west": "false" } }, @@ -229810,10 +229926,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -229822,10 +229938,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -229834,10 +229950,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "true" } }, @@ -229846,10 +229962,10 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "false" } }, @@ -229859,9 +229975,9 @@ "down": "true", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -229871,9 +229987,9 @@ "down": "true", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -229883,9 +229999,9 @@ "down": "true", "east": "true", "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -229895,9 +230011,9 @@ "down": "true", "east": "true", "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "false" } }, @@ -229907,9 +230023,9 @@ "down": "true", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -229919,9 +230035,9 @@ "down": "true", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -229929,11 +230045,11 @@ "id": 7262, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "true" } }, @@ -229941,11 +230057,11 @@ "id": 7263, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "false" } }, @@ -229953,11 +230069,11 @@ "id": 7264, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -229965,11 +230081,11 @@ "id": 7265, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -229977,11 +230093,11 @@ "id": 7266, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -229989,11 +230105,11 @@ "id": 7267, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", "west": "false" } }, @@ -230001,11 +230117,11 @@ "id": 7268, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -230013,11 +230129,11 @@ "id": 7269, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -230025,11 +230141,11 @@ "id": 7270, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "true" } }, @@ -230037,11 +230153,11 @@ "id": 7271, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "false" } }, @@ -230051,9 +230167,9 @@ "down": "true", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -230063,9 +230179,9 @@ "down": "true", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -230075,9 +230191,9 @@ "down": "true", "east": "false", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -230087,9 +230203,9 @@ "down": "true", "east": "false", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "false" } }, @@ -230099,9 +230215,9 @@ "down": "true", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -230111,9 +230227,9 @@ "down": "true", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -230122,10 +230238,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "true" } }, @@ -230134,10 +230250,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "false" } }, @@ -230146,10 +230262,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -230158,10 +230274,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -230170,10 +230286,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -230182,10 +230298,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", "west": "false" } }, @@ -230194,10 +230310,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -230206,10 +230322,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -230218,10 +230334,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "false", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "true" } }, @@ -230230,10 +230346,10 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "false", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "false" } }, @@ -230243,9 +230359,9 @@ "down": "true", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -230255,9 +230371,9 @@ "down": "true", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -230267,9 +230383,9 @@ "down": "true", "east": "false", "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -230279,14 +230395,134 @@ "down": "true", "east": "false", "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "false" } }, { "id": 7292, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7293, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7294, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7295, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7296, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7297, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7298, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7299, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7300, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7301, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7302, "properties": { "down": "true", "east": "false", @@ -230298,7 +230534,7 @@ } }, { - "id": 7293, + "id": 7303, "properties": { "down": "true", "east": "false", @@ -230309,135 +230545,15 @@ "west": "false" } }, - { - "id": 7294, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7295, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7296, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7297, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7298, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7299, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7300, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7301, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7302, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7303, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 7304, "properties": { "down": "false", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -230447,9 +230563,9 @@ "down": "false", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -230459,9 +230575,9 @@ "down": "false", "east": "true", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -230471,9 +230587,9 @@ "down": "false", "east": "true", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "false" } }, @@ -230483,9 +230599,9 @@ "down": "false", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -230495,9 +230611,9 @@ "down": "false", "east": "true", "north": "true", - "south": "false", + "south": "true", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -230506,10 +230622,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "true" } }, @@ -230518,10 +230634,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "false" } }, @@ -230530,10 +230646,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -230542,10 +230658,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -230554,10 +230670,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -230566,10 +230682,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", "west": "false" } }, @@ -230578,10 +230694,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -230590,10 +230706,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -230602,10 +230718,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "false", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "true" } }, @@ -230614,10 +230730,10 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "false", - "up": "true", - "waterlogged": "true", + "up": "false", + "waterlogged": "false", "west": "false" } }, @@ -230627,9 +230743,9 @@ "down": "false", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -230639,9 +230755,9 @@ "down": "false", "east": "true", "north": "false", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -230651,9 +230767,9 @@ "down": "false", "east": "true", "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -230663,14 +230779,134 @@ "down": "false", "east": "true", "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "false" } }, { "id": 7324, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7325, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7326, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7327, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7328, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7329, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7330, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7331, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7332, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7333, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7334, "properties": { "down": "false", "east": "true", @@ -230682,7 +230918,7 @@ } }, { - "id": 7325, + "id": 7335, "properties": { "down": "false", "east": "true", @@ -230693,135 +230929,15 @@ "west": "false" } }, - { - "id": 7326, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7327, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7328, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7329, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7330, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7331, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7332, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7333, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7334, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7335, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 7336, "properties": { "down": "false", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -230831,9 +230947,9 @@ "down": "false", "east": "false", "north": "true", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -230843,9 +230959,9 @@ "down": "false", "east": "false", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "true" } }, @@ -230855,14 +230971,134 @@ "down": "false", "east": "false", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", + "south": "true", + "up": "true", + "waterlogged": "false", "west": "false" } }, { "id": 7340, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7341, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7342, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7343, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7344, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7345, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7346, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7347, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7348, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7349, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7350, "properties": { "down": "false", "east": "false", @@ -230874,7 +231110,7 @@ } }, { - "id": 7341, + "id": 7351, "properties": { "down": "false", "east": "false", @@ -230885,140 +231121,140 @@ "west": "false" } }, - { - "id": 7342, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7343, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7344, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7345, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7346, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7347, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7348, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7349, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7350, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7351, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 7352, "properties": { "down": "false", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 7353, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7354, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7355, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7356, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7357, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7358, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7359, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7360, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7361, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7362, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7363, "properties": { "down": "false", "east": "false", @@ -231030,7 +231266,7 @@ } }, { - "id": 7354, + "id": 7364, "properties": { "down": "false", "east": "false", @@ -231042,7 +231278,7 @@ } }, { - "id": 7355, + "id": 7365, "properties": { "down": "false", "east": "false", @@ -231054,7 +231290,7 @@ } }, { - "id": 7356, + "id": 7366, "properties": { "down": "false", "east": "false", @@ -231067,7 +231303,7 @@ }, { "default": true, - "id": 7357, + "id": 7367, "properties": { "down": "false", "east": "false", @@ -231097,31 +231333,31 @@ "states": [ { "default": true, - "id": 20463, + "id": 20478, "properties": { "charges": "0" } }, { - "id": 20464, + "id": 20479, "properties": { "charges": "1" } }, { - "id": 20465, + "id": 20480, "properties": { "charges": "2" } }, { - "id": 20466, + "id": 20481, "properties": { "charges": "3" } }, { - "id": 20467, + "id": 20482, "properties": { "charges": "4" } @@ -231136,7 +231372,7 @@ "states": [ { "default": true, - "id": 25915 + "id": 25962 } ] }, @@ -231153,14 +231389,14 @@ }, "states": [ { - "id": 11630, + "id": 11640, "properties": { "half": "upper" } }, { "default": true, - "id": 11631, + "id": 11641, "properties": { "half": "lower" } @@ -231169,7 +231405,7 @@ }, "minecraft:sand": { "definition": { - "type": "minecraft:colored_falling", + "type": "minecraft:sand", "falling_dust_color": "#00DBD3A0", "properties": {} }, @@ -231210,21 +231446,21 @@ }, "states": [ { - "id": 12119, + "id": 12129, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12120, + "id": 12130, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12121, + "id": 12131, "properties": { "type": "bottom", "waterlogged": "true" @@ -231232,21 +231468,21 @@ }, { "default": true, - "id": 12122, + "id": 12132, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12123, + "id": 12133, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12124, + "id": 12134, "properties": { "type": "double", "waterlogged": "false" @@ -231286,98 +231522,98 @@ ] }, "states": [ - { - "id": 8205, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 8206, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 8207, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 8208, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 8209, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 8210, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 8211, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 8212, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 8213, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 8214, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 8215, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8216, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8217, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8218, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8219, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8220, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8221, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8222, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8223, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8224, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8225, "properties": { "facing": "north", "half": "bottom", @@ -231387,100 +231623,10 @@ }, { "default": true, - "id": 8216, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 8217, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 8218, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 8219, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 8220, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 8221, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 8222, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 8223, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 8224, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 8225, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 8226, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -231488,8 +231634,8 @@ { "id": 8227, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -231497,8 +231643,8 @@ { "id": 8228, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -231506,8 +231652,8 @@ { "id": 8229, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -231515,8 +231661,8 @@ { "id": 8230, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -231524,8 +231670,8 @@ { "id": 8231, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -231533,8 +231679,8 @@ { "id": 8232, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -231542,8 +231688,8 @@ { "id": 8233, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -231551,8 +231697,8 @@ { "id": 8234, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -231561,7 +231707,7 @@ "id": 8235, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -231570,7 +231716,7 @@ "id": 8236, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -231579,7 +231725,7 @@ "id": 8237, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -231588,7 +231734,7 @@ "id": 8238, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -231597,7 +231743,7 @@ "id": 8239, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -231606,7 +231752,7 @@ "id": 8240, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -231615,7 +231761,7 @@ "id": 8241, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -231624,7 +231770,7 @@ "id": 8242, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -231633,7 +231779,7 @@ "id": 8243, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -231642,7 +231788,7 @@ "id": 8244, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -231650,8 +231796,8 @@ { "id": 8245, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -231659,8 +231805,8 @@ { "id": 8246, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -231668,8 +231814,8 @@ { "id": 8247, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -231677,8 +231823,8 @@ { "id": 8248, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -231686,8 +231832,8 @@ { "id": 8249, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -231695,8 +231841,8 @@ { "id": 8250, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -231704,8 +231850,8 @@ { "id": 8251, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -231713,8 +231859,8 @@ { "id": 8252, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -231722,8 +231868,8 @@ { "id": 8253, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -231731,8 +231877,8 @@ { "id": 8254, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -231741,7 +231887,7 @@ "id": 8255, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -231750,7 +231896,7 @@ "id": 8256, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -231759,7 +231905,7 @@ "id": 8257, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -231768,7 +231914,7 @@ "id": 8258, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -231777,7 +231923,7 @@ "id": 8259, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -231786,7 +231932,7 @@ "id": 8260, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -231795,7 +231941,7 @@ "id": 8261, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -231804,7 +231950,7 @@ "id": 8262, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -231813,7 +231959,7 @@ "id": 8263, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -231822,7 +231968,7 @@ "id": 8264, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -231830,8 +231976,8 @@ { "id": 8265, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -231839,8 +231985,8 @@ { "id": 8266, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -231848,8 +231994,8 @@ { "id": 8267, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -231857,8 +232003,8 @@ { "id": 8268, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -231866,8 +232012,8 @@ { "id": 8269, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -231875,8 +232021,8 @@ { "id": 8270, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -231884,8 +232030,8 @@ { "id": 8271, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -231893,8 +232039,8 @@ { "id": 8272, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -231902,8 +232048,8 @@ { "id": 8273, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -231911,8 +232057,8 @@ { "id": 8274, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -231921,7 +232067,7 @@ "id": 8275, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -231930,7 +232076,7 @@ "id": 8276, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -231939,7 +232085,7 @@ "id": 8277, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -231948,7 +232094,7 @@ "id": 8278, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -231957,7 +232103,7 @@ "id": 8279, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -231966,7 +232112,7 @@ "id": 8280, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -231975,7 +232121,7 @@ "id": 8281, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -231984,7 +232130,7 @@ "id": 8282, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -231993,13 +232139,103 @@ "id": 8283, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 8284, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8285, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8286, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8287, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8288, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8289, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8290, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8291, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8292, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8293, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8294, "properties": { "facing": "east", "half": "bottom", @@ -232046,7 +232282,7 @@ }, "states": [ { - "id": 18413, + "id": 18423, "properties": { "east": "none", "north": "none", @@ -232057,7 +232293,7 @@ } }, { - "id": 18414, + "id": 18424, "properties": { "east": "none", "north": "none", @@ -232068,7 +232304,7 @@ } }, { - "id": 18415, + "id": 18425, "properties": { "east": "none", "north": "none", @@ -232080,124 +232316,14 @@ }, { "default": true, - "id": 18416, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18417, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18418, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18419, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18420, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18421, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18422, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18423, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18424, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18425, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { "id": 18426, "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -232205,10 +232331,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -232216,10 +232342,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -232227,10 +232353,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -232238,10 +232364,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -232249,10 +232375,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -232260,10 +232386,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -232271,10 +232397,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -232282,10 +232408,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -232294,9 +232420,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -232305,9 +232431,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -232315,10 +232441,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -232326,10 +232452,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -232337,10 +232463,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -232348,10 +232474,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -232359,10 +232485,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -232370,10 +232496,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -232381,10 +232507,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -232392,10 +232518,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -232403,10 +232529,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -232414,10 +232540,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -232426,9 +232552,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -232437,130 +232563,130 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 18449, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 18450, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 18451, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 18452, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18453, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 18454, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18455, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18456, - "properties": { - "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 18457, + "id": 18455, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 18458, + "id": 18456, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 18457, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18458, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 18459, "properties": { "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -232569,9 +232695,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -232579,10 +232705,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -232590,10 +232716,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -232601,10 +232727,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -232612,10 +232738,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -232623,10 +232749,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -232634,10 +232760,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -232645,10 +232771,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -232656,10 +232782,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -232667,10 +232793,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -232678,10 +232804,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -232690,9 +232816,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -232701,9 +232827,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -232711,10 +232837,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -232722,10 +232848,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -232733,10 +232859,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -232744,10 +232870,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -232755,10 +232881,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -232766,10 +232892,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -232777,10 +232903,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -232788,10 +232914,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -232799,10 +232925,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -232810,10 +232936,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -232822,9 +232948,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -232833,130 +232959,130 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 18485, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 18486, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 18487, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 18488, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18489, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 18490, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18491, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18492, - "properties": { - "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 18493, + "id": 18491, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 18494, + "id": 18492, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 18493, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18494, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 18495, "properties": { "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -232965,9 +233091,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -232975,10 +233101,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -232986,10 +233112,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -232997,10 +233123,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -233008,10 +233134,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -233019,10 +233145,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -233030,10 +233156,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -233041,10 +233167,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -233052,10 +233178,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -233063,10 +233189,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -233074,10 +233200,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -233086,9 +233212,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -233097,9 +233223,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -233107,10 +233233,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -233118,10 +233244,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -233129,10 +233255,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -233140,10 +233266,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -233151,10 +233277,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -233162,10 +233288,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -233173,10 +233299,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -233184,10 +233310,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -233195,10 +233321,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -233206,14 +233332,124 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18519, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18520, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18521, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18522, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18523, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18524, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18525, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18526, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18527, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18528, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18529, "properties": { "east": "none", "north": "tall", @@ -233224,7 +233460,7 @@ } }, { - "id": 18520, + "id": 18530, "properties": { "east": "none", "north": "tall", @@ -233234,125 +233470,15 @@ "west": "tall" } }, - { - "id": 18521, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18522, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18523, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18524, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18525, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18526, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18527, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18528, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18529, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18530, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 18531, "properties": { "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -233361,9 +233487,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -233371,10 +233497,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -233382,10 +233508,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -233393,10 +233519,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -233404,10 +233530,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -233415,10 +233541,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -233426,10 +233552,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -233437,10 +233563,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -233448,10 +233574,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -233459,10 +233585,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -233470,10 +233596,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -233482,9 +233608,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -233493,9 +233619,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -233503,10 +233629,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -233514,10 +233640,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -233525,10 +233651,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -233536,10 +233662,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -233547,10 +233673,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -233558,10 +233684,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -233569,10 +233695,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -233580,10 +233706,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -233591,10 +233717,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -233602,10 +233728,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -233614,9 +233740,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -233625,130 +233751,130 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 18557, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 18558, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 18559, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 18560, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18561, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 18562, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18563, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18564, - "properties": { - "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 18565, + "id": 18563, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 18566, + "id": 18564, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 18565, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18566, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 18567, "properties": { "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -233757,9 +233883,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -233767,10 +233893,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -233778,10 +233904,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -233789,10 +233915,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -233800,10 +233926,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -233811,10 +233937,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -233822,10 +233948,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -233833,10 +233959,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -233844,10 +233970,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -233855,10 +233981,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -233866,10 +233992,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -233878,9 +234004,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -233889,9 +234015,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -233899,10 +234025,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -233910,10 +234036,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -233921,10 +234047,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -233932,10 +234058,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -233943,10 +234069,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -233954,10 +234080,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -233965,10 +234091,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -233976,10 +234102,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -233987,10 +234113,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -233998,10 +234124,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -234010,9 +234136,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -234021,130 +234147,130 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 18593, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 18594, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 18595, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 18596, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18597, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 18598, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18599, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18600, - "properties": { - "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 18601, + "id": 18599, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 18602, + "id": 18600, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 18601, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18602, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 18603, "properties": { "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -234153,9 +234279,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -234163,10 +234289,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -234174,10 +234300,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -234185,10 +234311,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -234196,10 +234322,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -234207,10 +234333,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -234218,10 +234344,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -234229,10 +234355,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -234240,10 +234366,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -234251,10 +234377,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -234262,10 +234388,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -234274,9 +234400,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -234285,9 +234411,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -234295,10 +234421,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -234306,10 +234432,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -234317,10 +234443,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -234328,10 +234454,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -234339,10 +234465,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -234350,10 +234476,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -234361,10 +234487,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -234372,10 +234498,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -234383,10 +234509,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -234394,14 +234520,124 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18627, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18628, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18629, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18630, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18631, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18632, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18633, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18634, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18635, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18636, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18637, "properties": { "east": "low", "north": "tall", @@ -234412,7 +234648,7 @@ } }, { - "id": 18628, + "id": 18638, "properties": { "east": "low", "north": "tall", @@ -234422,125 +234658,15 @@ "west": "tall" } }, - { - "id": 18629, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18630, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18631, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18632, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18633, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18634, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18635, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18636, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18637, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18638, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 18639, "properties": { "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -234549,9 +234675,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -234559,10 +234685,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -234570,10 +234696,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -234581,10 +234707,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -234592,10 +234718,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -234603,10 +234729,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -234614,10 +234740,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -234625,10 +234751,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -234636,10 +234762,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -234647,10 +234773,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -234658,10 +234784,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -234670,9 +234796,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -234681,9 +234807,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -234691,10 +234817,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -234702,10 +234828,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -234713,10 +234839,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -234724,10 +234850,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -234735,10 +234861,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -234746,10 +234872,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -234757,10 +234883,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -234768,10 +234894,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -234779,10 +234905,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -234790,14 +234916,124 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18663, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18664, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18665, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18666, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18667, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18668, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18669, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18670, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18671, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18672, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18673, "properties": { "east": "tall", "north": "none", @@ -234808,7 +235044,7 @@ } }, { - "id": 18664, + "id": 18674, "properties": { "east": "tall", "north": "none", @@ -234818,125 +235054,15 @@ "west": "tall" } }, - { - "id": 18665, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18666, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18667, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18668, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18669, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18670, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18671, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18672, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18673, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18674, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 18675, "properties": { "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -234945,9 +235071,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -234955,10 +235081,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -234966,10 +235092,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -234977,10 +235103,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -234988,10 +235114,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -234999,10 +235125,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -235010,10 +235136,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -235021,10 +235147,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -235032,10 +235158,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -235043,10 +235169,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -235054,10 +235180,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -235066,9 +235192,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -235077,9 +235203,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -235087,10 +235213,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -235098,10 +235224,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -235109,10 +235235,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -235120,10 +235246,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -235131,10 +235257,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -235142,10 +235268,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -235153,10 +235279,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -235164,10 +235290,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -235175,10 +235301,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -235186,14 +235312,124 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18699, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18700, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18701, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18702, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18703, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18704, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18705, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18706, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18707, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18708, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18709, "properties": { "east": "tall", "north": "low", @@ -235204,7 +235440,7 @@ } }, { - "id": 18700, + "id": 18710, "properties": { "east": "tall", "north": "low", @@ -235214,125 +235450,15 @@ "west": "tall" } }, - { - "id": 18701, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18702, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18703, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18704, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18705, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18706, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18707, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18708, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18709, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18710, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 18711, "properties": { "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -235341,9 +235467,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -235351,10 +235477,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -235362,10 +235488,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -235373,10 +235499,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -235384,10 +235510,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -235395,10 +235521,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -235406,10 +235532,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -235417,10 +235543,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -235428,10 +235554,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -235439,10 +235565,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -235450,14 +235576,124 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 18723, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18724, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18725, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18726, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18727, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18728, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18729, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18730, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18731, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18732, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18733, "properties": { "east": "tall", "north": "tall", @@ -235468,7 +235704,7 @@ } }, { - "id": 18724, + "id": 18734, "properties": { "east": "tall", "north": "tall", @@ -235478,118 +235714,118 @@ "west": "tall" } }, - { - "id": 18725, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18726, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18727, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18728, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18729, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18730, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18731, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18732, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18733, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18734, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 18735, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18736, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18737, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18738, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18739, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18740, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18741, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18742, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18743, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18744, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18745, "properties": { "east": "tall", "north": "tall", @@ -235600,7 +235836,7 @@ } }, { - "id": 18736, + "id": 18746, "properties": { "east": "tall", "north": "tall", @@ -235638,91 +235874,11 @@ ] }, "states": [ - { - "id": 19385, - "properties": { - "bottom": "true", - "distance": "0", - "waterlogged": "true" - } - }, - { - "id": 19386, - "properties": { - "bottom": "true", - "distance": "0", - "waterlogged": "false" - } - }, - { - "id": 19387, - "properties": { - "bottom": "true", - "distance": "1", - "waterlogged": "true" - } - }, - { - "id": 19388, - "properties": { - "bottom": "true", - "distance": "1", - "waterlogged": "false" - } - }, - { - "id": 19389, - "properties": { - "bottom": "true", - "distance": "2", - "waterlogged": "true" - } - }, - { - "id": 19390, - "properties": { - "bottom": "true", - "distance": "2", - "waterlogged": "false" - } - }, - { - "id": 19391, - "properties": { - "bottom": "true", - "distance": "3", - "waterlogged": "true" - } - }, - { - "id": 19392, - "properties": { - "bottom": "true", - "distance": "3", - "waterlogged": "false" - } - }, - { - "id": 19393, - "properties": { - "bottom": "true", - "distance": "4", - "waterlogged": "true" - } - }, - { - "id": 19394, - "properties": { - "bottom": "true", - "distance": "4", - "waterlogged": "false" - } - }, { "id": 19395, "properties": { "bottom": "true", - "distance": "5", + "distance": "0", "waterlogged": "true" } }, @@ -235730,7 +235886,7 @@ "id": 19396, "properties": { "bottom": "true", - "distance": "5", + "distance": "0", "waterlogged": "false" } }, @@ -235738,7 +235894,7 @@ "id": 19397, "properties": { "bottom": "true", - "distance": "6", + "distance": "1", "waterlogged": "true" } }, @@ -235746,7 +235902,7 @@ "id": 19398, "properties": { "bottom": "true", - "distance": "6", + "distance": "1", "waterlogged": "false" } }, @@ -235754,7 +235910,7 @@ "id": 19399, "properties": { "bottom": "true", - "distance": "7", + "distance": "2", "waterlogged": "true" } }, @@ -235762,87 +235918,87 @@ "id": 19400, "properties": { "bottom": "true", - "distance": "7", + "distance": "2", "waterlogged": "false" } }, { "id": 19401, "properties": { - "bottom": "false", - "distance": "0", + "bottom": "true", + "distance": "3", "waterlogged": "true" } }, { "id": 19402, "properties": { - "bottom": "false", - "distance": "0", + "bottom": "true", + "distance": "3", "waterlogged": "false" } }, { "id": 19403, "properties": { - "bottom": "false", - "distance": "1", + "bottom": "true", + "distance": "4", "waterlogged": "true" } }, { "id": 19404, "properties": { - "bottom": "false", - "distance": "1", + "bottom": "true", + "distance": "4", "waterlogged": "false" } }, { "id": 19405, "properties": { - "bottom": "false", - "distance": "2", + "bottom": "true", + "distance": "5", "waterlogged": "true" } }, { "id": 19406, "properties": { - "bottom": "false", - "distance": "2", + "bottom": "true", + "distance": "5", "waterlogged": "false" } }, { "id": 19407, "properties": { - "bottom": "false", - "distance": "3", + "bottom": "true", + "distance": "6", "waterlogged": "true" } }, { "id": 19408, "properties": { - "bottom": "false", - "distance": "3", + "bottom": "true", + "distance": "6", "waterlogged": "false" } }, { "id": 19409, "properties": { - "bottom": "false", - "distance": "4", + "bottom": "true", + "distance": "7", "waterlogged": "true" } }, { "id": 19410, "properties": { - "bottom": "false", - "distance": "4", + "bottom": "true", + "distance": "7", "waterlogged": "false" } }, @@ -235850,7 +236006,7 @@ "id": 19411, "properties": { "bottom": "false", - "distance": "5", + "distance": "0", "waterlogged": "true" } }, @@ -235858,7 +236014,7 @@ "id": 19412, "properties": { "bottom": "false", - "distance": "5", + "distance": "0", "waterlogged": "false" } }, @@ -235866,7 +236022,7 @@ "id": 19413, "properties": { "bottom": "false", - "distance": "6", + "distance": "1", "waterlogged": "true" } }, @@ -235874,12 +236030,92 @@ "id": 19414, "properties": { "bottom": "false", - "distance": "6", + "distance": "1", "waterlogged": "false" } }, { "id": 19415, + "properties": { + "bottom": "false", + "distance": "2", + "waterlogged": "true" + } + }, + { + "id": 19416, + "properties": { + "bottom": "false", + "distance": "2", + "waterlogged": "false" + } + }, + { + "id": 19417, + "properties": { + "bottom": "false", + "distance": "3", + "waterlogged": "true" + } + }, + { + "id": 19418, + "properties": { + "bottom": "false", + "distance": "3", + "waterlogged": "false" + } + }, + { + "id": 19419, + "properties": { + "bottom": "false", + "distance": "4", + "waterlogged": "true" + } + }, + { + "id": 19420, + "properties": { + "bottom": "false", + "distance": "4", + "waterlogged": "false" + } + }, + { + "id": 19421, + "properties": { + "bottom": "false", + "distance": "5", + "waterlogged": "true" + } + }, + { + "id": 19422, + "properties": { + "bottom": "false", + "distance": "5", + "waterlogged": "false" + } + }, + { + "id": 19423, + "properties": { + "bottom": "false", + "distance": "6", + "waterlogged": "true" + } + }, + { + "id": 19424, + "properties": { + "bottom": "false", + "distance": "6", + "waterlogged": "false" + } + }, + { + "id": 19425, "properties": { "bottom": "false", "distance": "7", @@ -235888,7 +236124,7 @@ }, { "default": true, - "id": 19416, + "id": 19426, "properties": { "bottom": "false", "distance": "7", @@ -235905,7 +236141,7 @@ "states": [ { "default": true, - "id": 23812 + "id": 23827 } ] }, @@ -235922,14 +236158,14 @@ }, "states": [ { - "id": 23941, + "id": 23956, "properties": { "bloom": "true" } }, { "default": true, - "id": 23942, + "id": 23957, "properties": { "bloom": "false" } @@ -235972,7 +236208,7 @@ }, "states": [ { - "id": 23332, + "id": 23347, "properties": { "power": "0", "sculk_sensor_phase": "inactive", @@ -235981,711 +236217,711 @@ }, { "default": true, - "id": 23333, - "properties": { - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23334, - "properties": { - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23335, - "properties": { - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 23336, - "properties": { - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 23337, - "properties": { - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 23338, - "properties": { - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23339, - "properties": { - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23340, - "properties": { - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23341, - "properties": { - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 23342, - "properties": { - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 23343, - "properties": { - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 23344, - "properties": { - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23345, - "properties": { - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23346, - "properties": { - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23347, - "properties": { - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { "id": 23348, "properties": { - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23349, + "properties": { + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23350, + "properties": { + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23351, + "properties": { + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23352, + "properties": { + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23353, + "properties": { + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23354, + "properties": { + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23355, + "properties": { + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23356, + "properties": { + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23357, + "properties": { + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23358, + "properties": { + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23359, + "properties": { + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23360, + "properties": { + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23361, + "properties": { + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23362, + "properties": { + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23363, + "properties": { + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23364, "properties": { "power": "2", "sculk_sensor_phase": "cooldown", "waterlogged": "false" } }, - { - "id": 23350, - "properties": { - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23351, - "properties": { - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23352, - "properties": { - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23353, - "properties": { - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 23354, - "properties": { - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 23355, - "properties": { - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 23356, - "properties": { - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23357, - "properties": { - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23358, - "properties": { - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23359, - "properties": { - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 23360, - "properties": { - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 23361, - "properties": { - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 23362, - "properties": { - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23363, - "properties": { - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23364, - "properties": { - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, { "id": 23365, "properties": { - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23366, "properties": { - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23367, + "properties": { + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23368, + "properties": { + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23369, + "properties": { + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23370, + "properties": { + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23371, + "properties": { + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23372, + "properties": { + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23373, + "properties": { + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23374, + "properties": { + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23375, + "properties": { + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23376, + "properties": { + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23377, + "properties": { + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23378, + "properties": { + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23379, + "properties": { + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23380, + "properties": { + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23381, + "properties": { + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23382, "properties": { "power": "5", "sculk_sensor_phase": "cooldown", "waterlogged": "false" } }, - { - "id": 23368, - "properties": { - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23369, - "properties": { - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23370, - "properties": { - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23371, - "properties": { - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 23372, - "properties": { - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 23373, - "properties": { - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 23374, - "properties": { - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23375, - "properties": { - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23376, - "properties": { - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23377, - "properties": { - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 23378, - "properties": { - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 23379, - "properties": { - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 23380, - "properties": { - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23381, - "properties": { - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23382, - "properties": { - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, { "id": 23383, "properties": { - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23384, "properties": { - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23385, + "properties": { + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23386, + "properties": { + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23387, + "properties": { + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23388, + "properties": { + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23389, + "properties": { + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23390, + "properties": { + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23391, + "properties": { + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23392, + "properties": { + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23393, + "properties": { + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23394, + "properties": { + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23395, + "properties": { + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23396, + "properties": { + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23397, + "properties": { + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23398, + "properties": { + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23399, + "properties": { + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23400, "properties": { "power": "8", "sculk_sensor_phase": "cooldown", "waterlogged": "false" } }, - { - "id": 23386, - "properties": { - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23387, - "properties": { - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23388, - "properties": { - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23389, - "properties": { - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 23390, - "properties": { - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 23391, - "properties": { - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 23392, - "properties": { - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23393, - "properties": { - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23394, - "properties": { - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23395, - "properties": { - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 23396, - "properties": { - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 23397, - "properties": { - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 23398, - "properties": { - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23399, - "properties": { - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23400, - "properties": { - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, { "id": 23401, "properties": { - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23402, "properties": { - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23403, + "properties": { + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23404, + "properties": { + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23405, + "properties": { + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23406, + "properties": { + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23407, + "properties": { + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23408, + "properties": { + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23409, + "properties": { + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23410, + "properties": { + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23411, + "properties": { + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23412, + "properties": { + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23413, + "properties": { + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23414, + "properties": { + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23415, + "properties": { + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23416, + "properties": { + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23417, + "properties": { + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23418, "properties": { "power": "11", "sculk_sensor_phase": "cooldown", "waterlogged": "false" } }, - { - "id": 23404, - "properties": { - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23405, - "properties": { - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23406, - "properties": { - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23407, - "properties": { - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 23408, - "properties": { - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 23409, - "properties": { - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 23410, - "properties": { - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23411, - "properties": { - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23412, - "properties": { - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 23413, - "properties": { - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 23414, - "properties": { - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 23415, - "properties": { - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 23416, - "properties": { - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 23417, - "properties": { - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 23418, - "properties": { - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, { "id": 23419, "properties": { - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" } }, { "id": 23420, "properties": { - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" } }, { "id": 23421, + "properties": { + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23422, + "properties": { + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23423, + "properties": { + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23424, + "properties": { + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23425, + "properties": { + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23426, + "properties": { + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23427, + "properties": { + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23428, + "properties": { + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23429, + "properties": { + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23430, + "properties": { + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 23431, + "properties": { + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 23432, + "properties": { + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 23433, + "properties": { + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 23434, + "properties": { + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 23435, + "properties": { + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 23436, "properties": { "power": "14", "sculk_sensor_phase": "cooldown", @@ -236693,7 +236929,7 @@ } }, { - "id": 23422, + "id": 23437, "properties": { "power": "15", "sculk_sensor_phase": "inactive", @@ -236701,7 +236937,7 @@ } }, { - "id": 23423, + "id": 23438, "properties": { "power": "15", "sculk_sensor_phase": "inactive", @@ -236709,7 +236945,7 @@ } }, { - "id": 23424, + "id": 23439, "properties": { "power": "15", "sculk_sensor_phase": "active", @@ -236717,7 +236953,7 @@ } }, { - "id": 23425, + "id": 23440, "properties": { "power": "15", "sculk_sensor_phase": "active", @@ -236725,7 +236961,7 @@ } }, { - "id": 23426, + "id": 23441, "properties": { "power": "15", "sculk_sensor_phase": "cooldown", @@ -236733,7 +236969,7 @@ } }, { - "id": 23427, + "id": 23442, "properties": { "power": "15", "sculk_sensor_phase": "cooldown", @@ -236763,7 +236999,7 @@ }, "states": [ { - "id": 23943, + "id": 23958, "properties": { "can_summon": "true", "shrieking": "true", @@ -236771,7 +237007,7 @@ } }, { - "id": 23944, + "id": 23959, "properties": { "can_summon": "true", "shrieking": "true", @@ -236779,7 +237015,7 @@ } }, { - "id": 23945, + "id": 23960, "properties": { "can_summon": "true", "shrieking": "false", @@ -236787,7 +237023,7 @@ } }, { - "id": 23946, + "id": 23961, "properties": { "can_summon": "true", "shrieking": "false", @@ -236795,7 +237031,7 @@ } }, { - "id": 23947, + "id": 23962, "properties": { "can_summon": "false", "shrieking": "true", @@ -236803,7 +237039,7 @@ } }, { - "id": 23948, + "id": 23963, "properties": { "can_summon": "false", "shrieking": "true", @@ -236811,7 +237047,7 @@ } }, { - "id": 23949, + "id": 23964, "properties": { "can_summon": "false", "shrieking": "false", @@ -236820,7 +237056,7 @@ }, { "default": true, - "id": 23950, + "id": 23965, "properties": { "can_summon": "false", "shrieking": "false", @@ -236865,196 +237101,16 @@ ] }, "states": [ - { - "id": 23813, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 23814, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 23815, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 23816, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 23817, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 23818, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 23819, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 23820, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 23821, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 23822, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 23823, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 23824, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 23825, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 23826, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 23827, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, { "id": 23828, "properties": { "down": "true", "east": "true", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" } }, { @@ -237062,11 +237118,11 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", "up": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -237074,11 +237130,11 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", "up": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -237086,11 +237142,11 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", "up": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { @@ -237098,11 +237154,11 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" + "up": "false", + "waterlogged": "true", + "west": "true" } }, { @@ -237110,11 +237166,11 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", "up": "false", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -237122,11 +237178,11 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", "up": "false", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -237134,11 +237190,11 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "true", "up": "false", "waterlogged": "false", - "west": "true" + "west": "false" } }, { @@ -237146,11 +237202,11 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" } }, { @@ -237158,11 +237214,11 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", "up": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -237170,11 +237226,11 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", "up": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -237182,11 +237238,11 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", "up": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { @@ -237194,11 +237250,11 @@ "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" + "up": "false", + "waterlogged": "true", + "west": "true" } }, { @@ -237206,19 +237262,7 @@ "properties": { "down": "true", "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 23842, - "properties": { - "down": "true", - "east": "true", - "north": "false", + "north": "true", "south": "false", "up": "false", "waterlogged": "true", @@ -237226,191 +237270,191 @@ } }, { - "id": 23843, + "id": 23842, "properties": { "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "true" } }, + { + "id": 23843, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, { "id": 23844, "properties": { "down": "true", "east": "true", "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" } }, { "id": 23845, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", "up": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { "id": 23846, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", "up": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { "id": 23847, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", "up": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { "id": 23848, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" + "up": "false", + "waterlogged": "true", + "west": "true" } }, { "id": 23849, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", "up": "false", "waterlogged": "true", - "west": "true" + "west": "false" } }, { "id": 23850, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", "up": "false", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { "id": 23851, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", "up": "false", "waterlogged": "false", - "west": "true" + "west": "false" } }, { "id": 23852, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" } }, { "id": 23853, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", "up": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { "id": 23854, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", "up": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { "id": 23855, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", "up": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { "id": 23856, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" + "up": "false", + "waterlogged": "true", + "west": "true" } }, { "id": 23857, "properties": { "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 23858, - "properties": { - "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", "up": "false", "waterlogged": "true", @@ -237418,27 +237462,39 @@ } }, { - "id": 23859, + "id": 23858, "properties": { "down": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "true" } }, + { + "id": 23859, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, { "id": 23860, "properties": { "down": "true", "east": "false", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" } }, { @@ -237446,11 +237502,11 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", "up": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -237458,11 +237514,11 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", "up": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -237470,11 +237526,11 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", "up": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { @@ -237482,11 +237538,11 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" + "up": "false", + "waterlogged": "true", + "west": "true" } }, { @@ -237494,11 +237550,11 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", "up": "false", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -237506,11 +237562,11 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", "up": "false", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -237518,11 +237574,11 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "true", "up": "false", "waterlogged": "false", - "west": "true" + "west": "false" } }, { @@ -237530,11 +237586,11 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" } }, { @@ -237542,11 +237598,11 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "false", "up": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -237554,11 +237610,11 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "false", "up": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -237566,11 +237622,11 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "false", "up": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { @@ -237578,11 +237634,11 @@ "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" + "up": "false", + "waterlogged": "true", + "west": "true" } }, { @@ -237590,19 +237646,7 @@ "properties": { "down": "true", "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 23874, - "properties": { - "down": "true", - "east": "false", - "north": "false", + "north": "true", "south": "false", "up": "false", "waterlogged": "true", @@ -237610,191 +237654,191 @@ } }, { - "id": 23875, + "id": 23874, "properties": { "down": "true", "east": "false", - "north": "false", + "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "true" } }, + { + "id": 23875, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, { "id": 23876, "properties": { "down": "true", "east": "false", "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" } }, { "id": 23877, "properties": { - "down": "false", - "east": "true", - "north": "true", + "down": "true", + "east": "false", + "north": "false", "south": "true", "up": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { "id": 23878, "properties": { - "down": "false", - "east": "true", - "north": "true", + "down": "true", + "east": "false", + "north": "false", "south": "true", "up": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { "id": 23879, "properties": { - "down": "false", - "east": "true", - "north": "true", + "down": "true", + "east": "false", + "north": "false", "south": "true", "up": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { "id": 23880, "properties": { - "down": "false", - "east": "true", - "north": "true", + "down": "true", + "east": "false", + "north": "false", "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" + "up": "false", + "waterlogged": "true", + "west": "true" } }, { "id": 23881, "properties": { - "down": "false", - "east": "true", - "north": "true", + "down": "true", + "east": "false", + "north": "false", "south": "true", "up": "false", "waterlogged": "true", - "west": "true" + "west": "false" } }, { "id": 23882, "properties": { - "down": "false", - "east": "true", - "north": "true", + "down": "true", + "east": "false", + "north": "false", "south": "true", "up": "false", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { "id": 23883, "properties": { - "down": "false", - "east": "true", - "north": "true", + "down": "true", + "east": "false", + "north": "false", "south": "true", "up": "false", "waterlogged": "false", - "west": "true" + "west": "false" } }, { "id": 23884, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" } }, { "id": 23885, "properties": { - "down": "false", - "east": "true", - "north": "true", + "down": "true", + "east": "false", + "north": "false", "south": "false", "up": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { "id": 23886, "properties": { - "down": "false", - "east": "true", - "north": "true", + "down": "true", + "east": "false", + "north": "false", "south": "false", "up": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { "id": 23887, "properties": { - "down": "false", - "east": "true", - "north": "true", + "down": "true", + "east": "false", + "north": "false", "south": "false", "up": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { "id": 23888, "properties": { - "down": "false", - "east": "true", - "north": "true", + "down": "true", + "east": "false", + "north": "false", "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" + "up": "false", + "waterlogged": "true", + "west": "true" } }, { "id": 23889, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 23890, - "properties": { - "down": "false", - "east": "true", - "north": "true", + "down": "true", + "east": "false", + "north": "false", "south": "false", "up": "false", "waterlogged": "true", @@ -237802,27 +237846,39 @@ } }, { - "id": 23891, + "id": 23890, "properties": { - "down": "false", - "east": "true", - "north": "true", + "down": "true", + "east": "false", + "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "true" } }, + { + "id": 23891, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, { "id": 23892, "properties": { "down": "false", "east": "true", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" } }, { @@ -237830,11 +237886,11 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", "up": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -237842,11 +237898,11 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", "up": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -237854,11 +237910,11 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", "up": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { @@ -237866,11 +237922,11 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" + "up": "false", + "waterlogged": "true", + "west": "true" } }, { @@ -237878,11 +237934,11 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", "up": "false", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -237890,11 +237946,11 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", "up": "false", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -237902,11 +237958,11 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "true", "up": "false", "waterlogged": "false", - "west": "true" + "west": "false" } }, { @@ -237914,11 +237970,11 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" } }, { @@ -237926,11 +237982,11 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "false", "up": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -237938,11 +237994,11 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "false", "up": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -237950,11 +238006,11 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "false", "up": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { @@ -237962,11 +238018,11 @@ "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" + "up": "false", + "waterlogged": "true", + "west": "true" } }, { @@ -237974,19 +238030,7 @@ "properties": { "down": "false", "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 23906, - "properties": { - "down": "false", - "east": "true", - "north": "false", + "north": "true", "south": "false", "up": "false", "waterlogged": "true", @@ -237994,191 +238038,191 @@ } }, { - "id": 23907, + "id": 23906, "properties": { "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "false", "up": "false", "waterlogged": "false", "west": "true" } }, + { + "id": 23907, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, { "id": 23908, "properties": { "down": "false", "east": "true", "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" } }, { "id": 23909, "properties": { "down": "false", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", "up": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { "id": 23910, "properties": { "down": "false", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", "up": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { "id": 23911, "properties": { "down": "false", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", "up": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { "id": 23912, "properties": { "down": "false", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" + "up": "false", + "waterlogged": "true", + "west": "true" } }, { "id": 23913, "properties": { "down": "false", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", "up": "false", "waterlogged": "true", - "west": "true" + "west": "false" } }, { "id": 23914, "properties": { "down": "false", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", "up": "false", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { "id": 23915, "properties": { "down": "false", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "true", "up": "false", "waterlogged": "false", - "west": "true" + "west": "false" } }, { "id": 23916, "properties": { "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" } }, { "id": 23917, "properties": { "down": "false", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", "up": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { "id": 23918, "properties": { "down": "false", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", "up": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { "id": 23919, "properties": { "down": "false", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", "up": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { "id": 23920, "properties": { "down": "false", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" + "up": "false", + "waterlogged": "true", + "west": "true" } }, { "id": 23921, "properties": { "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 23922, - "properties": { - "down": "false", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", "up": "false", "waterlogged": "true", @@ -238186,27 +238230,39 @@ } }, { - "id": 23923, + "id": 23922, "properties": { "down": "false", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "south": "false", "up": "false", "waterlogged": "false", "west": "true" } }, + { + "id": 23923, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, { "id": 23924, "properties": { "down": "false", "east": "false", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" } }, { @@ -238214,11 +238270,11 @@ "properties": { "down": "false", "east": "false", - "north": "false", + "north": "true", "south": "true", "up": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -238226,11 +238282,11 @@ "properties": { "down": "false", "east": "false", - "north": "false", + "north": "true", "south": "true", "up": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -238238,11 +238294,11 @@ "properties": { "down": "false", "east": "false", - "north": "false", + "north": "true", "south": "true", "up": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { @@ -238250,11 +238306,11 @@ "properties": { "down": "false", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" + "up": "false", + "waterlogged": "true", + "west": "true" } }, { @@ -238262,11 +238318,11 @@ "properties": { "down": "false", "east": "false", - "north": "false", + "north": "true", "south": "true", "up": "false", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -238274,11 +238330,11 @@ "properties": { "down": "false", "east": "false", - "north": "false", + "north": "true", "south": "true", "up": "false", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -238286,15 +238342,195 @@ "properties": { "down": "false", "east": "false", - "north": "false", + "north": "true", "south": "true", "up": "false", "waterlogged": "false", - "west": "true" + "west": "false" } }, { "id": 23932, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 23933, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 23934, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 23935, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 23936, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 23937, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 23938, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 23939, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 23940, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 23941, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 23942, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 23943, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 23944, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 23945, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 23946, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 23947, "properties": { "down": "false", "east": "false", @@ -238306,7 +238542,7 @@ } }, { - "id": 23933, + "id": 23948, "properties": { "down": "false", "east": "false", @@ -238318,7 +238554,7 @@ } }, { - "id": 23934, + "id": 23949, "properties": { "down": "false", "east": "false", @@ -238330,7 +238566,7 @@ } }, { - "id": 23935, + "id": 23950, "properties": { "down": "false", "east": "false", @@ -238342,7 +238578,7 @@ } }, { - "id": 23936, + "id": 23951, "properties": { "down": "false", "east": "false", @@ -238354,7 +238590,7 @@ } }, { - "id": 23937, + "id": 23952, "properties": { "down": "false", "east": "false", @@ -238366,7 +238602,7 @@ } }, { - "id": 23938, + "id": 23953, "properties": { "down": "false", "east": "false", @@ -238378,7 +238614,7 @@ } }, { - "id": 23939, + "id": 23954, "properties": { "down": "false", "east": "false", @@ -238391,7 +238627,7 @@ }, { "default": true, - "id": 23940, + "id": 23955, "properties": { "down": "false", "east": "false", @@ -238412,7 +238648,7 @@ "states": [ { "default": true, - "id": 11603 + "id": 11613 } ] }, @@ -238436,56 +238672,56 @@ "states": [ { "default": true, - "id": 13946, + "id": 13956, "properties": { "pickles": "1", "waterlogged": "true" } }, { - "id": 13947, + "id": 13957, "properties": { "pickles": "1", "waterlogged": "false" } }, { - "id": 13948, + "id": 13958, "properties": { "pickles": "2", "waterlogged": "true" } }, { - "id": 13949, + "id": 13959, "properties": { "pickles": "2", "waterlogged": "false" } }, { - "id": 13950, + "id": 13960, "properties": { "pickles": "3", "waterlogged": "true" } }, { - "id": 13951, + "id": 13961, "properties": { "pickles": "3", "waterlogged": "false" } }, { - "id": 13952, + "id": 13962, "properties": { "pickles": "4", "waterlogged": "true" } }, { - "id": 13953, + "id": 13963, "properties": { "pickles": "4", "waterlogged": "false" @@ -238501,7 +238737,19 @@ "states": [ { "default": true, - "id": 2051 + "id": 2054 + } + ] + }, + "minecraft:short_dry_grass": { + "definition": { + "type": "minecraft:short_dry_grass", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2052 } ] }, @@ -238525,7 +238773,7 @@ "states": [ { "default": true, - "id": 19623 + "id": 19633 } ] }, @@ -238546,38 +238794,38 @@ }, "states": [ { - "id": 13575, + "id": 13585, "properties": { "facing": "north" } }, { - "id": 13576, + "id": 13586, "properties": { "facing": "east" } }, { - "id": 13577, + "id": 13587, "properties": { "facing": "south" } }, { - "id": 13578, + "id": 13588, "properties": { "facing": "west" } }, { "default": true, - "id": 13579, + "id": 13589, "properties": { "facing": "up" } }, { - "id": 13580, + "id": 13590, "properties": { "facing": "down" } @@ -238616,112 +238864,112 @@ }, "states": [ { - "id": 9626, + "id": 9636, "properties": { "powered": "true", "rotation": "0" } }, { - "id": 9627, + "id": 9637, "properties": { "powered": "true", "rotation": "1" } }, { - "id": 9628, + "id": 9638, "properties": { "powered": "true", "rotation": "2" } }, { - "id": 9629, + "id": 9639, "properties": { "powered": "true", "rotation": "3" } }, { - "id": 9630, + "id": 9640, "properties": { "powered": "true", "rotation": "4" } }, { - "id": 9631, + "id": 9641, "properties": { "powered": "true", "rotation": "5" } }, { - "id": 9632, + "id": 9642, "properties": { "powered": "true", "rotation": "6" } }, { - "id": 9633, + "id": 9643, "properties": { "powered": "true", "rotation": "7" } }, { - "id": 9634, + "id": 9644, "properties": { "powered": "true", "rotation": "8" } }, { - "id": 9635, + "id": 9645, "properties": { "powered": "true", "rotation": "9" } }, { - "id": 9636, + "id": 9646, "properties": { "powered": "true", "rotation": "10" } }, { - "id": 9637, + "id": 9647, "properties": { "powered": "true", "rotation": "11" } }, { - "id": 9638, + "id": 9648, "properties": { "powered": "true", "rotation": "12" } }, { - "id": 9639, + "id": 9649, "properties": { "powered": "true", "rotation": "13" } }, { - "id": 9640, + "id": 9650, "properties": { "powered": "true", "rotation": "14" } }, { - "id": 9641, + "id": 9651, "properties": { "powered": "true", "rotation": "15" @@ -238729,112 +238977,112 @@ }, { "default": true, - "id": 9642, + "id": 9652, "properties": { "powered": "false", "rotation": "0" } }, { - "id": 9643, + "id": 9653, "properties": { "powered": "false", "rotation": "1" } }, { - "id": 9644, + "id": 9654, "properties": { "powered": "false", "rotation": "2" } }, { - "id": 9645, + "id": 9655, "properties": { "powered": "false", "rotation": "3" } }, { - "id": 9646, + "id": 9656, "properties": { "powered": "false", "rotation": "4" } }, { - "id": 9647, + "id": 9657, "properties": { "powered": "false", "rotation": "5" } }, { - "id": 9648, + "id": 9658, "properties": { "powered": "false", "rotation": "6" } }, { - "id": 9649, + "id": 9659, "properties": { "powered": "false", "rotation": "7" } }, { - "id": 9650, + "id": 9660, "properties": { "powered": "false", "rotation": "8" } }, { - "id": 9651, + "id": 9661, "properties": { "powered": "false", "rotation": "9" } }, { - "id": 9652, + "id": 9662, "properties": { "powered": "false", "rotation": "10" } }, { - "id": 9653, + "id": 9663, "properties": { "powered": "false", "rotation": "11" } }, { - "id": 9654, + "id": 9664, "properties": { "powered": "false", "rotation": "12" } }, { - "id": 9655, + "id": 9665, "properties": { "powered": "false", "rotation": "13" } }, { - "id": 9656, + "id": 9666, "properties": { "powered": "false", "rotation": "14" } }, { - "id": 9657, + "id": 9667, "properties": { "powered": "false", "rotation": "15" @@ -238862,7 +239110,7 @@ }, "states": [ { - "id": 9658, + "id": 9668, "properties": { "facing": "north", "powered": "true" @@ -238870,49 +239118,49 @@ }, { "default": true, - "id": 9659, + "id": 9669, "properties": { "facing": "north", "powered": "false" } }, { - "id": 9660, + "id": 9670, "properties": { "facing": "south", "powered": "true" } }, { - "id": 9661, + "id": 9671, "properties": { "facing": "south", "powered": "false" } }, { - "id": 9662, + "id": 9672, "properties": { "facing": "west", "powered": "true" } }, { - "id": 9663, + "id": 9673, "properties": { "facing": "west", "powered": "false" } }, { - "id": 9664, + "id": 9674, "properties": { "facing": "east", "powered": "true" } }, { - "id": 9665, + "id": 9675, "properties": { "facing": "east", "powered": "false" @@ -238928,16 +239176,16 @@ "states": [ { "default": true, - "id": 11243 + "id": 11253 } ] }, "minecraft:small_amethyst_bud": { "definition": { "type": "minecraft:amethyst_cluster", - "aabb_offset": 4.0, "height": 3.0, - "properties": {} + "properties": {}, + "width": 8.0 }, "properties": { "facing": [ @@ -238955,63 +239203,63 @@ }, "states": [ { - "id": 22082, + "id": 22097, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 22083, + "id": 22098, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 22084, + "id": 22099, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 22085, + "id": 22100, "properties": { "facing": "east", "waterlogged": "false" } }, { - "id": 22086, + "id": 22101, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 22087, + "id": 22102, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 22088, + "id": 22103, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 22089, + "id": 22104, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 22090, + "id": 22105, "properties": { "facing": "up", "waterlogged": "true" @@ -239019,21 +239267,21 @@ }, { "default": true, - "id": 22091, + "id": 22106, "properties": { "facing": "up", "waterlogged": "false" } }, { - "id": 22092, + "id": 22107, "properties": { "facing": "down", "waterlogged": "true" } }, { - "id": 22093, + "id": 22108, "properties": { "facing": "down", "waterlogged": "false" @@ -239064,7 +239312,7 @@ }, "states": [ { - "id": 25897, + "id": 25944, "properties": { "facing": "north", "half": "upper", @@ -239072,7 +239320,7 @@ } }, { - "id": 25898, + "id": 25945, "properties": { "facing": "north", "half": "upper", @@ -239080,7 +239328,7 @@ } }, { - "id": 25899, + "id": 25946, "properties": { "facing": "north", "half": "lower", @@ -239089,7 +239337,7 @@ }, { "default": true, - "id": 25900, + "id": 25947, "properties": { "facing": "north", "half": "lower", @@ -239097,7 +239345,7 @@ } }, { - "id": 25901, + "id": 25948, "properties": { "facing": "south", "half": "upper", @@ -239105,7 +239353,7 @@ } }, { - "id": 25902, + "id": 25949, "properties": { "facing": "south", "half": "upper", @@ -239113,7 +239361,7 @@ } }, { - "id": 25903, + "id": 25950, "properties": { "facing": "south", "half": "lower", @@ -239121,7 +239369,7 @@ } }, { - "id": 25904, + "id": 25951, "properties": { "facing": "south", "half": "lower", @@ -239129,7 +239377,7 @@ } }, { - "id": 25905, + "id": 25952, "properties": { "facing": "west", "half": "upper", @@ -239137,7 +239385,7 @@ } }, { - "id": 25906, + "id": 25953, "properties": { "facing": "west", "half": "upper", @@ -239145,7 +239393,7 @@ } }, { - "id": 25907, + "id": 25954, "properties": { "facing": "west", "half": "lower", @@ -239153,7 +239401,7 @@ } }, { - "id": 25908, + "id": 25955, "properties": { "facing": "west", "half": "lower", @@ -239161,7 +239409,7 @@ } }, { - "id": 25909, + "id": 25956, "properties": { "facing": "east", "half": "upper", @@ -239169,7 +239417,7 @@ } }, { - "id": 25910, + "id": 25957, "properties": { "facing": "east", "half": "upper", @@ -239177,7 +239425,7 @@ } }, { - "id": 25911, + "id": 25958, "properties": { "facing": "east", "half": "lower", @@ -239185,7 +239433,7 @@ } }, { - "id": 25912, + "id": 25959, "properties": { "facing": "east", "half": "lower", @@ -239202,7 +239450,7 @@ "states": [ { "default": true, - "id": 19479 + "id": 19489 } ] }, @@ -239225,7 +239473,7 @@ }, "states": [ { - "id": 19433, + "id": 19443, "properties": { "facing": "north", "lit": "true" @@ -239233,49 +239481,49 @@ }, { "default": true, - "id": 19434, + "id": 19444, "properties": { "facing": "north", "lit": "false" } }, { - "id": 19435, + "id": 19445, "properties": { "facing": "south", "lit": "true" } }, { - "id": 19436, + "id": 19446, "properties": { "facing": "south", "lit": "false" } }, { - "id": 19437, + "id": 19447, "properties": { "facing": "west", "lit": "true" } }, { - "id": 19438, + "id": 19448, "properties": { "facing": "west", "lit": "false" } }, { - "id": 19439, + "id": 19449, "properties": { "facing": "east", "lit": "true" } }, { - "id": 19440, + "id": 19450, "properties": { "facing": "east", "lit": "false" @@ -239291,7 +239539,7 @@ "states": [ { "default": true, - "id": 27570 + "id": 27617 } ] }, @@ -239303,7 +239551,7 @@ "states": [ { "default": true, - "id": 12193 + "id": 12203 } ] }, @@ -239325,21 +239573,21 @@ }, "states": [ { - "id": 15137, + "id": 15147, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 15138, + "id": 15148, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 15139, + "id": 15149, "properties": { "type": "bottom", "waterlogged": "true" @@ -239347,21 +239595,21 @@ }, { "default": true, - "id": 15140, + "id": 15150, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 15141, + "id": 15151, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 15142, + "id": 15152, "properties": { "type": "double", "waterlogged": "false" @@ -239401,98 +239649,98 @@ ] }, "states": [ - { - "id": 14615, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 14616, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14617, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14618, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14619, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14620, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14621, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14622, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14623, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14624, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 14625, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14626, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14627, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14628, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14629, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14630, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14631, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14632, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14633, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14634, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14635, "properties": { "facing": "north", "half": "bottom", @@ -239502,100 +239750,10 @@ }, { "default": true, - "id": 14626, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14627, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14628, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14629, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14630, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14631, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14632, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14633, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14634, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 14635, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 14636, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -239603,8 +239761,8 @@ { "id": 14637, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -239612,8 +239770,8 @@ { "id": 14638, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -239621,8 +239779,8 @@ { "id": 14639, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -239630,8 +239788,8 @@ { "id": 14640, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -239639,8 +239797,8 @@ { "id": 14641, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -239648,8 +239806,8 @@ { "id": 14642, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -239657,8 +239815,8 @@ { "id": 14643, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -239666,8 +239824,8 @@ { "id": 14644, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -239676,7 +239834,7 @@ "id": 14645, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -239685,7 +239843,7 @@ "id": 14646, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -239694,7 +239852,7 @@ "id": 14647, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -239703,7 +239861,7 @@ "id": 14648, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -239712,7 +239870,7 @@ "id": 14649, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -239721,7 +239879,7 @@ "id": 14650, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -239730,7 +239888,7 @@ "id": 14651, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -239739,7 +239897,7 @@ "id": 14652, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -239748,7 +239906,7 @@ "id": 14653, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -239757,7 +239915,7 @@ "id": 14654, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -239765,8 +239923,8 @@ { "id": 14655, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -239774,8 +239932,8 @@ { "id": 14656, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -239783,8 +239941,8 @@ { "id": 14657, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -239792,8 +239950,8 @@ { "id": 14658, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -239801,8 +239959,8 @@ { "id": 14659, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -239810,8 +239968,8 @@ { "id": 14660, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -239819,8 +239977,8 @@ { "id": 14661, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -239828,8 +239986,8 @@ { "id": 14662, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -239837,8 +239995,8 @@ { "id": 14663, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -239846,8 +240004,8 @@ { "id": 14664, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -239856,7 +240014,7 @@ "id": 14665, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -239865,7 +240023,7 @@ "id": 14666, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -239874,7 +240032,7 @@ "id": 14667, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -239883,7 +240041,7 @@ "id": 14668, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -239892,7 +240050,7 @@ "id": 14669, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -239901,7 +240059,7 @@ "id": 14670, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -239910,7 +240068,7 @@ "id": 14671, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -239919,7 +240077,7 @@ "id": 14672, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -239928,7 +240086,7 @@ "id": 14673, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -239937,7 +240095,7 @@ "id": 14674, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -239945,8 +240103,8 @@ { "id": 14675, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -239954,8 +240112,8 @@ { "id": 14676, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -239963,8 +240121,8 @@ { "id": 14677, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -239972,8 +240130,8 @@ { "id": 14678, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -239981,8 +240139,8 @@ { "id": 14679, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -239990,8 +240148,8 @@ { "id": 14680, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -239999,8 +240157,8 @@ { "id": 14681, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -240008,8 +240166,8 @@ { "id": 14682, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -240017,8 +240175,8 @@ { "id": 14683, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -240026,8 +240184,8 @@ { "id": 14684, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -240036,7 +240194,7 @@ "id": 14685, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -240045,7 +240203,7 @@ "id": 14686, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -240054,7 +240212,7 @@ "id": 14687, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -240063,7 +240221,7 @@ "id": 14688, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -240072,7 +240230,7 @@ "id": 14689, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -240081,7 +240239,7 @@ "id": 14690, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -240090,7 +240248,7 @@ "id": 14691, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -240099,7 +240257,7 @@ "id": 14692, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -240108,13 +240266,103 @@ "id": 14693, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 14694, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14695, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14696, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14697, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14698, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14699, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14700, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14701, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14702, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14703, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14704, "properties": { "facing": "east", "half": "bottom", @@ -240132,7 +240380,7 @@ "states": [ { "default": true, - "id": 12194 + "id": 12204 } ] }, @@ -240154,21 +240402,21 @@ }, "states": [ { - "id": 15101, + "id": 15111, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 15102, + "id": 15112, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 15103, + "id": 15113, "properties": { "type": "bottom", "waterlogged": "true" @@ -240176,21 +240424,21 @@ }, { "default": true, - "id": 15104, + "id": 15114, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 15105, + "id": 15115, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 15106, + "id": 15116, "properties": { "type": "double", "waterlogged": "false" @@ -240230,98 +240478,98 @@ ] }, "states": [ - { - "id": 14055, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 14056, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14057, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14058, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14059, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14060, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14061, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14062, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14063, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14064, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 14065, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14066, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14067, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14068, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14069, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14070, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14071, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14072, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14073, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14074, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14075, "properties": { "facing": "north", "half": "bottom", @@ -240331,100 +240579,10 @@ }, { "default": true, - "id": 14066, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14067, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14068, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14069, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14070, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14071, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14072, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14073, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14074, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 14075, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 14076, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -240432,8 +240590,8 @@ { "id": 14077, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -240441,8 +240599,8 @@ { "id": 14078, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -240450,8 +240608,8 @@ { "id": 14079, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -240459,8 +240617,8 @@ { "id": 14080, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -240468,8 +240626,8 @@ { "id": 14081, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -240477,8 +240635,8 @@ { "id": 14082, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -240486,8 +240644,8 @@ { "id": 14083, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -240495,8 +240653,8 @@ { "id": 14084, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -240505,7 +240663,7 @@ "id": 14085, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -240514,7 +240672,7 @@ "id": 14086, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -240523,7 +240681,7 @@ "id": 14087, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -240532,7 +240690,7 @@ "id": 14088, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -240541,7 +240699,7 @@ "id": 14089, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -240550,7 +240708,7 @@ "id": 14090, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -240559,7 +240717,7 @@ "id": 14091, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -240568,7 +240726,7 @@ "id": 14092, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -240577,7 +240735,7 @@ "id": 14093, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -240586,7 +240744,7 @@ "id": 14094, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -240594,8 +240752,8 @@ { "id": 14095, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -240603,8 +240761,8 @@ { "id": 14096, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -240612,8 +240770,8 @@ { "id": 14097, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -240621,8 +240779,8 @@ { "id": 14098, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -240630,8 +240788,8 @@ { "id": 14099, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -240639,8 +240797,8 @@ { "id": 14100, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -240648,8 +240806,8 @@ { "id": 14101, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -240657,8 +240815,8 @@ { "id": 14102, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -240666,8 +240824,8 @@ { "id": 14103, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -240675,8 +240833,8 @@ { "id": 14104, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -240685,7 +240843,7 @@ "id": 14105, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -240694,7 +240852,7 @@ "id": 14106, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -240703,7 +240861,7 @@ "id": 14107, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -240712,7 +240870,7 @@ "id": 14108, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -240721,7 +240879,7 @@ "id": 14109, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -240730,7 +240888,7 @@ "id": 14110, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -240739,7 +240897,7 @@ "id": 14111, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -240748,7 +240906,7 @@ "id": 14112, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -240757,7 +240915,7 @@ "id": 14113, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -240766,7 +240924,7 @@ "id": 14114, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -240774,8 +240932,8 @@ { "id": 14115, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -240783,8 +240941,8 @@ { "id": 14116, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -240792,8 +240950,8 @@ { "id": 14117, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -240801,8 +240959,8 @@ { "id": 14118, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -240810,8 +240968,8 @@ { "id": 14119, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -240819,8 +240977,8 @@ { "id": 14120, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -240828,8 +240986,8 @@ { "id": 14121, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -240837,8 +240995,8 @@ { "id": 14122, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -240846,8 +241004,8 @@ { "id": 14123, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -240855,8 +241013,8 @@ { "id": 14124, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -240865,7 +241023,7 @@ "id": 14125, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -240874,7 +241032,7 @@ "id": 14126, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -240883,7 +241041,7 @@ "id": 14127, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -240892,7 +241050,7 @@ "id": 14128, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -240901,7 +241059,7 @@ "id": 14129, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -240910,7 +241068,7 @@ "id": 14130, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -240919,7 +241077,7 @@ "id": 14131, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -240928,7 +241086,7 @@ "id": 14132, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -240937,13 +241095,103 @@ "id": 14133, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 14134, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14135, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14136, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14137, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14138, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14139, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14140, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14141, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14142, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14143, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14144, "properties": { "facing": "east", "half": "bottom", @@ -240961,7 +241209,7 @@ "states": [ { "default": true, - "id": 12192 + "id": 12202 } ] }, @@ -240983,21 +241231,21 @@ }, "states": [ { - "id": 15131, + "id": 15141, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 15132, + "id": 15142, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 15133, + "id": 15143, "properties": { "type": "bottom", "waterlogged": "true" @@ -241005,21 +241253,21 @@ }, { "default": true, - "id": 15134, + "id": 15144, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 15135, + "id": 15145, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 15136, + "id": 15146, "properties": { "type": "double", "waterlogged": "false" @@ -241059,98 +241307,98 @@ ] }, "states": [ - { - "id": 14535, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 14536, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14537, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14538, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14539, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14540, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14541, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14542, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14543, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14544, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 14545, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14546, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14547, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14548, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14549, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14550, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14551, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14552, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14553, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14554, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14555, "properties": { "facing": "north", "half": "bottom", @@ -241160,100 +241408,10 @@ }, { "default": true, - "id": 14546, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14547, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14548, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14549, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14550, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14551, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14552, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14553, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14554, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 14555, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 14556, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -241261,8 +241419,8 @@ { "id": 14557, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -241270,8 +241428,8 @@ { "id": 14558, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -241279,8 +241437,8 @@ { "id": 14559, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -241288,8 +241446,8 @@ { "id": 14560, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -241297,8 +241455,8 @@ { "id": 14561, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -241306,8 +241464,8 @@ { "id": 14562, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -241315,8 +241473,8 @@ { "id": 14563, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -241324,8 +241482,8 @@ { "id": 14564, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -241334,7 +241492,7 @@ "id": 14565, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -241343,7 +241501,7 @@ "id": 14566, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -241352,7 +241510,7 @@ "id": 14567, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -241361,7 +241519,7 @@ "id": 14568, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -241370,7 +241528,7 @@ "id": 14569, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -241379,7 +241537,7 @@ "id": 14570, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -241388,7 +241546,7 @@ "id": 14571, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -241397,7 +241555,7 @@ "id": 14572, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -241406,7 +241564,7 @@ "id": 14573, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -241415,7 +241573,7 @@ "id": 14574, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -241423,8 +241581,8 @@ { "id": 14575, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -241432,8 +241590,8 @@ { "id": 14576, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -241441,8 +241599,8 @@ { "id": 14577, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -241450,8 +241608,8 @@ { "id": 14578, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -241459,8 +241617,8 @@ { "id": 14579, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -241468,8 +241626,8 @@ { "id": 14580, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -241477,8 +241635,8 @@ { "id": 14581, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -241486,8 +241644,8 @@ { "id": 14582, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -241495,8 +241653,8 @@ { "id": 14583, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -241504,8 +241662,8 @@ { "id": 14584, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -241514,7 +241672,7 @@ "id": 14585, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -241523,7 +241681,7 @@ "id": 14586, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -241532,7 +241690,7 @@ "id": 14587, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -241541,7 +241699,7 @@ "id": 14588, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -241550,7 +241708,7 @@ "id": 14589, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -241559,7 +241717,7 @@ "id": 14590, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -241568,7 +241726,7 @@ "id": 14591, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -241577,7 +241735,7 @@ "id": 14592, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -241586,7 +241744,7 @@ "id": 14593, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -241595,7 +241753,7 @@ "id": 14594, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -241603,8 +241761,8 @@ { "id": 14595, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -241612,8 +241770,8 @@ { "id": 14596, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -241621,8 +241779,8 @@ { "id": 14597, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -241630,8 +241788,8 @@ { "id": 14598, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -241639,8 +241797,8 @@ { "id": 14599, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -241648,8 +241806,8 @@ { "id": 14600, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -241657,8 +241815,8 @@ { "id": 14601, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -241666,8 +241824,8 @@ { "id": 14602, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -241675,8 +241833,8 @@ { "id": 14603, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -241684,8 +241842,8 @@ { "id": 14604, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -241694,7 +241852,7 @@ "id": 14605, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -241703,7 +241861,7 @@ "id": 14606, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -241712,7 +241870,7 @@ "id": 14607, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -241721,7 +241879,7 @@ "id": 14608, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -241730,7 +241888,7 @@ "id": 14609, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -241739,7 +241897,7 @@ "id": 14610, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -241748,7 +241906,7 @@ "id": 14611, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -241757,7 +241915,7 @@ "id": 14612, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -241766,13 +241924,103 @@ "id": 14613, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 14614, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14615, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14616, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14617, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14618, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14619, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14620, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14621, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14622, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14623, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14624, "properties": { "facing": "east", "half": "bottom", @@ -241790,7 +242038,7 @@ "states": [ { "default": true, - "id": 12191 + "id": 12201 } ] }, @@ -241812,21 +242060,21 @@ }, "states": [ { - "id": 12113, + "id": 12123, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12114, + "id": 12124, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12115, + "id": 12125, "properties": { "type": "bottom", "waterlogged": "true" @@ -241834,21 +242082,21 @@ }, { "default": true, - "id": 12116, + "id": 12126, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12117, + "id": 12127, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12118, + "id": 12128, "properties": { "type": "double", "waterlogged": "false" @@ -241871,19 +242119,19 @@ "states": [ { "default": true, - "id": 13813, + "id": 13823, "properties": { "hatch": "0" } }, { - "id": 13814, + "id": 13824, "properties": { "hatch": "1" } }, { - "id": 13815, + "id": 13825, "properties": { "hatch": "2" } @@ -241910,49 +242158,49 @@ "states": [ { "default": true, - "id": 5941, + "id": 5950, "properties": { "layers": "1" } }, { - "id": 5942, + "id": 5951, "properties": { "layers": "2" } }, { - "id": 5943, + "id": 5952, "properties": { "layers": "3" } }, { - "id": 5944, + "id": 5953, "properties": { "layers": "4" } }, { - "id": 5945, + "id": 5954, "properties": { "layers": "5" } }, { - "id": 5946, + "id": 5955, "properties": { "layers": "6" } }, { - "id": 5947, + "id": 5956, "properties": { "layers": "7" } }, { - "id": 5948, + "id": 5957, "properties": { "layers": "8" } @@ -241967,7 +242215,7 @@ "states": [ { "default": true, - "id": 5950 + "id": 5959 } ] }, @@ -242000,7 +242248,7 @@ }, "states": [ { - "id": 19556, + "id": 19566, "properties": { "facing": "north", "lit": "true", @@ -242009,7 +242257,7 @@ } }, { - "id": 19557, + "id": 19567, "properties": { "facing": "north", "lit": "true", @@ -242018,7 +242266,7 @@ } }, { - "id": 19558, + "id": 19568, "properties": { "facing": "north", "lit": "true", @@ -242028,115 +242276,115 @@ }, { "default": true, - "id": 19559, - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 19560, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 19561, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 19562, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 19563, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 19564, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 19565, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 19566, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 19567, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 19568, - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { "id": 19569, "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", + "facing": "north", + "lit": "true", + "signal_fire": "false", "waterlogged": "false" } }, { "id": 19570, "properties": { - "facing": "south", + "facing": "north", "lit": "false", - "signal_fire": "false", + "signal_fire": "true", "waterlogged": "true" } }, { "id": 19571, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 19572, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 19573, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 19574, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 19575, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 19576, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 19577, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 19578, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 19579, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 19580, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 19581, "properties": { "facing": "south", "lit": "false", @@ -242144,107 +242392,107 @@ "waterlogged": "false" } }, - { - "id": 19572, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 19573, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 19574, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 19575, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 19576, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 19577, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 19578, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 19579, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 19580, - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 19581, - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, { "id": 19582, "properties": { - "facing": "east", + "facing": "west", "lit": "true", - "signal_fire": "false", + "signal_fire": "true", "waterlogged": "true" } }, { "id": 19583, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 19584, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 19585, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 19586, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 19587, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 19588, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 19589, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 19590, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 19591, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 19592, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 19593, "properties": { "facing": "east", "lit": "true", @@ -242253,7 +242501,7 @@ } }, { - "id": 19584, + "id": 19594, "properties": { "facing": "east", "lit": "false", @@ -242262,7 +242510,7 @@ } }, { - "id": 19585, + "id": 19595, "properties": { "facing": "east", "lit": "false", @@ -242271,7 +242519,7 @@ } }, { - "id": 19586, + "id": 19596, "properties": { "facing": "east", "lit": "false", @@ -242280,7 +242528,7 @@ } }, { - "id": 19587, + "id": 19597, "properties": { "facing": "east", "lit": "false", @@ -242298,7 +242546,7 @@ "states": [ { "default": true, - "id": 2915 + "id": 2918 } ] }, @@ -242319,21 +242567,21 @@ }, "states": [ { - "id": 19520, + "id": 19530, "properties": { "hanging": "true", "waterlogged": "true" } }, { - "id": 19521, + "id": 19531, "properties": { "hanging": "true", "waterlogged": "false" } }, { - "id": 19522, + "id": 19532, "properties": { "hanging": "false", "waterlogged": "true" @@ -242341,7 +242589,7 @@ }, { "default": true, - "id": 19523, + "id": 19533, "properties": { "hanging": "false", "waterlogged": "false" @@ -242357,7 +242605,7 @@ "states": [ { "default": true, - "id": 6019 + "id": 6029 } ] }, @@ -242369,7 +242617,7 @@ "states": [ { "default": true, - "id": 6020 + "id": 6030 } ] }, @@ -242382,7 +242630,7 @@ "states": [ { "default": true, - "id": 6027 + "id": 6037 } ] }, @@ -242403,25 +242651,25 @@ "states": [ { "default": true, - "id": 6028, + "id": 6038, "properties": { "facing": "north" } }, { - "id": 6029, + "id": 6039, "properties": { "facing": "south" } }, { - "id": 6030, + "id": 6040, "properties": { "facing": "west" } }, { - "id": 6031, + "id": 6041, "properties": { "facing": "east" } @@ -242436,7 +242684,7 @@ "states": [ { "default": true, - "id": 2916 + "id": 2919 } ] }, @@ -242460,7 +242708,7 @@ "states": [ { "default": true, - "id": 25836 + "id": 25851 } ] }, @@ -242490,7 +242738,7 @@ }, "states": [ { - "id": 9410, + "id": 9420, "properties": { "face": "floor", "facing": "north", @@ -242498,7 +242746,7 @@ } }, { - "id": 9411, + "id": 9421, "properties": { "face": "floor", "facing": "north", @@ -242506,7 +242754,7 @@ } }, { - "id": 9412, + "id": 9422, "properties": { "face": "floor", "facing": "south", @@ -242514,7 +242762,7 @@ } }, { - "id": 9413, + "id": 9423, "properties": { "face": "floor", "facing": "south", @@ -242522,7 +242770,7 @@ } }, { - "id": 9414, + "id": 9424, "properties": { "face": "floor", "facing": "west", @@ -242530,7 +242778,7 @@ } }, { - "id": 9415, + "id": 9425, "properties": { "face": "floor", "facing": "west", @@ -242538,7 +242786,7 @@ } }, { - "id": 9416, + "id": 9426, "properties": { "face": "floor", "facing": "east", @@ -242546,7 +242794,7 @@ } }, { - "id": 9417, + "id": 9427, "properties": { "face": "floor", "facing": "east", @@ -242554,7 +242802,7 @@ } }, { - "id": 9418, + "id": 9428, "properties": { "face": "wall", "facing": "north", @@ -242563,95 +242811,95 @@ }, { "default": true, - "id": 9419, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9420, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 9421, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 9422, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 9423, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 9424, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 9425, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 9426, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 9427, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 9428, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { "id": 9429, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "north", "powered": "false" } }, { "id": 9430, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9431, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9432, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 9433, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 9434, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 9435, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 9436, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 9437, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 9438, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9439, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9440, "properties": { "face": "ceiling", "facing": "west", @@ -242659,7 +242907,7 @@ } }, { - "id": 9431, + "id": 9441, "properties": { "face": "ceiling", "facing": "west", @@ -242667,7 +242915,7 @@ } }, { - "id": 9432, + "id": 9442, "properties": { "face": "ceiling", "facing": "east", @@ -242675,7 +242923,7 @@ } }, { - "id": 9433, + "id": 9443, "properties": { "face": "ceiling", "facing": "east", @@ -242715,108 +242963,108 @@ ] }, "states": [ - { - "id": 12771, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12772, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12773, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12774, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12775, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12776, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12777, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12778, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12779, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12780, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 12781, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12782, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12783, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12784, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12785, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12786, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12787, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12788, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12789, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12790, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12791, "properties": { "facing": "north", "half": "lower", @@ -242827,152 +243075,52 @@ }, { "default": true, - "id": 12782, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12783, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12784, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12785, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12786, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12787, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12788, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12789, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12790, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12791, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { "id": 12792, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 12793, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12794, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 12795, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "true" } }, { "id": 12796, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "false" } }, @@ -242980,9 +243128,9 @@ "id": 12797, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -242990,9 +243138,9 @@ "id": 12798, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -243000,9 +243148,9 @@ "id": 12799, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -243010,14 +243158,114 @@ "id": 12800, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 12801, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12802, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12803, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12804, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12805, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12806, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12807, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12808, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12809, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12810, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12811, "properties": { "facing": "south", "half": "lower", @@ -243027,7 +243275,7 @@ } }, { - "id": 12802, + "id": 12812, "properties": { "facing": "south", "half": "lower", @@ -243036,113 +243284,13 @@ "powered": "false" } }, - { - "id": 12803, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12804, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12805, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12806, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12807, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12808, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12809, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12810, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12811, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12812, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 12813, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -243150,9 +243298,9 @@ "id": 12814, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -243160,9 +243308,9 @@ "id": 12815, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -243170,14 +243318,114 @@ "id": 12816, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 12817, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12818, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12819, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12820, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12821, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12822, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12823, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12824, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12825, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12826, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12827, "properties": { "facing": "west", "half": "lower", @@ -243187,7 +243435,7 @@ } }, { - "id": 12818, + "id": 12828, "properties": { "facing": "west", "half": "lower", @@ -243196,113 +243444,13 @@ "powered": "false" } }, - { - "id": 12819, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12820, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12821, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12822, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12823, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12824, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12825, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12826, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12827, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12828, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 12829, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -243310,14 +243458,114 @@ "id": 12830, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 12831, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12832, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12833, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12834, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12835, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12836, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12837, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12838, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12839, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12840, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12841, "properties": { "facing": "east", "half": "lower", @@ -243327,7 +243575,7 @@ } }, { - "id": 12832, + "id": 12842, "properties": { "facing": "east", "half": "lower", @@ -243337,7 +243585,7 @@ } }, { - "id": 12833, + "id": 12843, "properties": { "facing": "east", "half": "lower", @@ -243347,7 +243595,7 @@ } }, { - "id": 12834, + "id": 12844, "properties": { "facing": "east", "half": "lower", @@ -243386,113 +243634,13 @@ ] }, "states": [ - { - "id": 12483, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12484, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12485, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12486, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12487, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12488, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12489, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12490, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12491, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12492, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 12493, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -243500,9 +243648,9 @@ "id": 12494, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -243510,9 +243658,9 @@ "id": 12495, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -243520,14 +243668,114 @@ "id": 12496, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 12497, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12498, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12499, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12500, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12501, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12502, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12503, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12504, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12505, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12506, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12507, "properties": { "east": "true", "north": "false", @@ -243537,7 +243785,7 @@ } }, { - "id": 12498, + "id": 12508, "properties": { "east": "true", "north": "false", @@ -243546,118 +243794,118 @@ "west": "false" } }, - { - "id": 12499, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12500, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12501, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12502, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12503, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12504, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 12505, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 12506, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 12507, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 12508, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 12509, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 12510, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12511, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12512, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12513, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12514, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12515, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12516, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 12517, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 12518, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 12519, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 12520, "properties": { "east": "false", "north": "false", @@ -243667,7 +243915,7 @@ } }, { - "id": 12511, + "id": 12521, "properties": { "east": "false", "north": "false", @@ -243677,7 +243925,7 @@ } }, { - "id": 12512, + "id": 12522, "properties": { "east": "false", "north": "false", @@ -243687,7 +243935,7 @@ } }, { - "id": 12513, + "id": 12523, "properties": { "east": "false", "north": "false", @@ -243698,7 +243946,7 @@ }, { "default": true, - "id": 12514, + "id": 12524, "properties": { "east": "false", "north": "false", @@ -243737,7 +243985,7 @@ }, "states": [ { - "id": 12195, + "id": 12205, "properties": { "facing": "north", "in_wall": "true", @@ -243746,7 +243994,7 @@ } }, { - "id": 12196, + "id": 12206, "properties": { "facing": "north", "in_wall": "true", @@ -243755,7 +244003,7 @@ } }, { - "id": 12197, + "id": 12207, "properties": { "facing": "north", "in_wall": "true", @@ -243764,7 +244012,7 @@ } }, { - "id": 12198, + "id": 12208, "properties": { "facing": "north", "in_wall": "true", @@ -243773,7 +244021,7 @@ } }, { - "id": 12199, + "id": 12209, "properties": { "facing": "north", "in_wall": "false", @@ -243782,7 +244030,7 @@ } }, { - "id": 12200, + "id": 12210, "properties": { "facing": "north", "in_wall": "false", @@ -243791,7 +244039,7 @@ } }, { - "id": 12201, + "id": 12211, "properties": { "facing": "north", "in_wall": "false", @@ -243801,7 +244049,7 @@ }, { "default": true, - "id": 12202, + "id": 12212, "properties": { "facing": "north", "in_wall": "false", @@ -243809,143 +244057,143 @@ "powered": "false" } }, - { - "id": 12203, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 12204, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 12205, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 12206, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 12207, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 12208, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 12209, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 12210, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 12211, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 12212, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, { "id": 12213, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12214, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 12215, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "true" } }, { "id": 12216, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "false" } }, { "id": 12217, "properties": { - "facing": "west", + "facing": "south", "in_wall": "false", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 12218, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 12219, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 12220, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 12221, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 12222, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 12223, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 12224, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 12225, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 12226, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 12227, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 12228, "properties": { "facing": "west", "in_wall": "false", @@ -243954,7 +244202,7 @@ } }, { - "id": 12219, + "id": 12229, "properties": { "facing": "east", "in_wall": "true", @@ -243963,7 +244211,7 @@ } }, { - "id": 12220, + "id": 12230, "properties": { "facing": "east", "in_wall": "true", @@ -243972,7 +244220,7 @@ } }, { - "id": 12221, + "id": 12231, "properties": { "facing": "east", "in_wall": "true", @@ -243981,7 +244229,7 @@ } }, { - "id": 12222, + "id": 12232, "properties": { "facing": "east", "in_wall": "true", @@ -243990,7 +244238,7 @@ } }, { - "id": 12223, + "id": 12233, "properties": { "facing": "east", "in_wall": "false", @@ -243999,7 +244247,7 @@ } }, { - "id": 12224, + "id": 12234, "properties": { "facing": "east", "in_wall": "false", @@ -244008,7 +244256,7 @@ } }, { - "id": 12225, + "id": 12235, "properties": { "facing": "east", "in_wall": "false", @@ -244017,7 +244265,7 @@ } }, { - "id": 12226, + "id": 12236, "properties": { "facing": "east", "in_wall": "false", @@ -244062,240 +244310,240 @@ ] }, "states": [ - { - "id": 4993, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 4994, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4995, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4996, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4997, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4998, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4999, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5000, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5001, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, { "id": 5002, "properties": { "attached": "true", - "rotation": "4", - "waterlogged": "false" + "rotation": "0", + "waterlogged": "true" } }, { "id": 5003, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "true" + "rotation": "0", + "waterlogged": "false" } }, { "id": 5004, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5005, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5006, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5007, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5008, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5009, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5010, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5011, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5012, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5013, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5014, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5015, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5016, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5017, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5018, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5019, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5020, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "false" + "rotation": "9", + "waterlogged": "true" } }, { "id": 5021, "properties": { "attached": "true", - "rotation": "14", - "waterlogged": "true" + "rotation": "9", + "waterlogged": "false" } }, { "id": 5022, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5023, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5024, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5025, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5026, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5027, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5028, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5029, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5030, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5031, "properties": { "attached": "true", "rotation": "14", @@ -244303,7 +244551,7 @@ } }, { - "id": 5023, + "id": 5032, "properties": { "attached": "true", "rotation": "15", @@ -244311,7 +244559,7 @@ } }, { - "id": 5024, + "id": 5033, "properties": { "attached": "true", "rotation": "15", @@ -244319,7 +244567,7 @@ } }, { - "id": 5025, + "id": 5034, "properties": { "attached": "false", "rotation": "0", @@ -244328,215 +244576,215 @@ }, { "default": true, - "id": 5026, + "id": 5035, "properties": { "attached": "false", "rotation": "0", "waterlogged": "false" } }, - { - "id": 5027, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5028, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5029, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5030, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5031, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5032, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5033, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5034, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5035, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 5036, "properties": { "attached": "false", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5037, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5038, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5039, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5040, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5041, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5042, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5043, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5044, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5045, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5046, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5047, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5048, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5049, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5050, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5051, "properties": { "attached": "false", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5052, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5053, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5054, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5055, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5056, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5057, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5058, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5059, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5060, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5061, "properties": { "attached": "false", "rotation": "13", @@ -244544,7 +244792,7 @@ } }, { - "id": 5053, + "id": 5062, "properties": { "attached": "false", "rotation": "14", @@ -244552,7 +244800,7 @@ } }, { - "id": 5054, + "id": 5063, "properties": { "attached": "false", "rotation": "14", @@ -244560,7 +244808,7 @@ } }, { - "id": 5055, + "id": 5064, "properties": { "attached": "false", "rotation": "15", @@ -244568,7 +244816,7 @@ } }, { - "id": 5056, + "id": 5065, "properties": { "attached": "false", "rotation": "15", @@ -244579,7 +244827,8 @@ }, "minecraft:spruce_leaves": { "definition": { - "type": "minecraft:leaves", + "type": "minecraft:tinted_particle_leaves", + "leaf_particle_chance": 0.01, "properties": {} }, "properties": { @@ -244889,14 +245138,14 @@ }, "states": [ { - "id": 5885, + "id": 5894, "properties": { "powered": "true" } }, { "default": true, - "id": 5886, + "id": 5895, "properties": { "powered": "false" } @@ -244963,7 +245212,7 @@ }, "states": [ { - "id": 4389, + "id": 4398, "properties": { "rotation": "0", "waterlogged": "true" @@ -244971,217 +245220,217 @@ }, { "default": true, - "id": 4390, + "id": 4399, "properties": { "rotation": "0", "waterlogged": "false" } }, - { - "id": 4391, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4392, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4393, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4394, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4395, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4396, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4397, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4398, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4399, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 4400, "properties": { - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 4401, "properties": { - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 4402, "properties": { - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 4403, "properties": { - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 4404, "properties": { - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 4405, "properties": { - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 4406, "properties": { - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 4407, "properties": { - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 4408, "properties": { - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 4409, "properties": { - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 4410, "properties": { - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 4411, "properties": { - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 4412, "properties": { - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 4413, "properties": { - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 4414, "properties": { - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 4415, "properties": { - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 4416, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4417, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4418, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4419, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4420, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4421, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4422, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4423, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4424, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4425, "properties": { "rotation": "13", "waterlogged": "false" } }, { - "id": 4417, + "id": 4426, "properties": { "rotation": "14", "waterlogged": "true" } }, { - "id": 4418, + "id": 4427, "properties": { "rotation": "14", "waterlogged": "false" } }, { - "id": 4419, + "id": 4428, "properties": { "rotation": "15", "waterlogged": "true" } }, { - "id": 4420, + "id": 4429, "properties": { "rotation": "15", "waterlogged": "false" @@ -245207,21 +245456,21 @@ }, "states": [ { - "id": 12047, + "id": 12057, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12048, + "id": 12058, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12049, + "id": 12059, "properties": { "type": "bottom", "waterlogged": "true" @@ -245229,21 +245478,21 @@ }, { "default": true, - "id": 12050, + "id": 12060, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12051, + "id": 12061, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12052, + "id": 12062, "properties": { "type": "double", "waterlogged": "false" @@ -245283,98 +245532,98 @@ ] }, "states": [ - { - "id": 8440, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 8441, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 8442, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 8443, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 8444, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 8445, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 8446, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 8447, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 8448, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 8449, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 8450, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8451, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8452, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8453, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8454, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8455, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8456, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8457, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8458, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8459, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8460, "properties": { "facing": "north", "half": "bottom", @@ -245384,100 +245633,10 @@ }, { "default": true, - "id": 8451, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 8452, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 8453, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 8454, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 8455, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 8456, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 8457, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 8458, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 8459, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 8460, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 8461, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -245485,8 +245644,8 @@ { "id": 8462, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -245494,8 +245653,8 @@ { "id": 8463, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -245503,8 +245662,8 @@ { "id": 8464, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -245512,8 +245671,8 @@ { "id": 8465, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -245521,8 +245680,8 @@ { "id": 8466, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -245530,8 +245689,8 @@ { "id": 8467, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -245539,8 +245698,8 @@ { "id": 8468, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -245548,8 +245707,8 @@ { "id": 8469, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -245558,7 +245717,7 @@ "id": 8470, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -245567,7 +245726,7 @@ "id": 8471, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -245576,7 +245735,7 @@ "id": 8472, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -245585,7 +245744,7 @@ "id": 8473, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -245594,7 +245753,7 @@ "id": 8474, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -245603,7 +245762,7 @@ "id": 8475, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -245612,7 +245771,7 @@ "id": 8476, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -245621,7 +245780,7 @@ "id": 8477, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -245630,7 +245789,7 @@ "id": 8478, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -245639,7 +245798,7 @@ "id": 8479, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -245647,8 +245806,8 @@ { "id": 8480, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -245656,8 +245815,8 @@ { "id": 8481, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -245665,8 +245824,8 @@ { "id": 8482, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -245674,8 +245833,8 @@ { "id": 8483, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -245683,8 +245842,8 @@ { "id": 8484, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -245692,8 +245851,8 @@ { "id": 8485, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -245701,8 +245860,8 @@ { "id": 8486, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -245710,8 +245869,8 @@ { "id": 8487, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -245719,8 +245878,8 @@ { "id": 8488, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -245728,8 +245887,8 @@ { "id": 8489, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -245738,7 +245897,7 @@ "id": 8490, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -245747,7 +245906,7 @@ "id": 8491, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -245756,7 +245915,7 @@ "id": 8492, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -245765,7 +245924,7 @@ "id": 8493, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -245774,7 +245933,7 @@ "id": 8494, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -245783,7 +245942,7 @@ "id": 8495, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -245792,7 +245951,7 @@ "id": 8496, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -245801,7 +245960,7 @@ "id": 8497, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -245810,7 +245969,7 @@ "id": 8498, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -245819,7 +245978,7 @@ "id": 8499, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -245827,8 +245986,8 @@ { "id": 8500, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -245836,8 +245995,8 @@ { "id": 8501, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -245845,8 +246004,8 @@ { "id": 8502, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -245854,8 +246013,8 @@ { "id": 8503, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -245863,8 +246022,8 @@ { "id": 8504, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -245872,8 +246031,8 @@ { "id": 8505, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -245881,8 +246040,8 @@ { "id": 8506, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -245890,8 +246049,8 @@ { "id": 8507, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -245899,8 +246058,8 @@ { "id": 8508, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -245908,8 +246067,8 @@ { "id": 8509, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -245918,7 +246077,7 @@ "id": 8510, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -245927,7 +246086,7 @@ "id": 8511, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -245936,7 +246095,7 @@ "id": 8512, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -245945,7 +246104,7 @@ "id": 8513, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -245954,7 +246113,7 @@ "id": 8514, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -245963,7 +246122,7 @@ "id": 8515, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -245972,7 +246131,7 @@ "id": 8516, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -245981,7 +246140,7 @@ "id": 8517, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -245990,13 +246149,103 @@ "id": 8518, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 8519, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8520, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8521, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8522, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8523, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8524, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8525, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8526, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8527, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8528, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8529, "properties": { "facing": "east", "half": "bottom", @@ -246037,118 +246286,118 @@ ] }, "states": [ - { - "id": 6194, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6195, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6196, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6197, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6198, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6199, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6200, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6201, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6202, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6203, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6204, "properties": { "facing": "north", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, { "id": 6205, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6206, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6207, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6208, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6209, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6210, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6211, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6212, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6213, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6214, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6215, "properties": { "facing": "north", "half": "bottom", @@ -246158,7 +246407,7 @@ } }, { - "id": 6206, + "id": 6216, "properties": { "facing": "north", "half": "bottom", @@ -246168,7 +246417,7 @@ } }, { - "id": 6207, + "id": 6217, "properties": { "facing": "north", "half": "bottom", @@ -246178,7 +246427,7 @@ } }, { - "id": 6208, + "id": 6218, "properties": { "facing": "north", "half": "bottom", @@ -246189,7 +246438,7 @@ }, { "default": true, - "id": 6209, + "id": 6219, "properties": { "facing": "north", "half": "bottom", @@ -246198,113 +246447,13 @@ "waterlogged": "false" } }, - { - "id": 6210, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6211, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6212, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6213, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6214, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6215, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6216, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6217, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6218, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6219, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6220, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -246312,9 +246461,9 @@ "id": 6221, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -246322,9 +246471,9 @@ "id": 6222, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -246332,14 +246481,114 @@ "id": 6223, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6224, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6225, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6226, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6227, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6228, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6229, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6230, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6231, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6232, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6233, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6234, "properties": { "facing": "south", "half": "bottom", @@ -246349,7 +246598,7 @@ } }, { - "id": 6225, + "id": 6235, "properties": { "facing": "south", "half": "bottom", @@ -246358,113 +246607,13 @@ "waterlogged": "false" } }, - { - "id": 6226, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6227, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6228, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6229, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6230, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6231, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6232, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6233, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6234, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6235, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6236, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -246472,9 +246621,9 @@ "id": 6237, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -246482,9 +246631,9 @@ "id": 6238, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -246492,14 +246641,114 @@ "id": 6239, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 6240, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6241, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6242, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6243, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6244, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6245, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6246, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6247, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6248, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6249, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6250, "properties": { "facing": "west", "half": "bottom", @@ -246509,7 +246758,7 @@ } }, { - "id": 6241, + "id": 6251, "properties": { "facing": "west", "half": "bottom", @@ -246518,113 +246767,13 @@ "waterlogged": "false" } }, - { - "id": 6242, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6243, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6244, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6245, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6246, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6247, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6248, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6249, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6250, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6251, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 6252, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -246632,14 +246781,114 @@ "id": 6253, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, { "id": 6254, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6255, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6256, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6257, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6258, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6259, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6260, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6261, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6262, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6263, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6264, "properties": { "facing": "east", "half": "bottom", @@ -246649,7 +246898,7 @@ } }, { - "id": 6255, + "id": 6265, "properties": { "facing": "east", "half": "bottom", @@ -246659,7 +246908,7 @@ } }, { - "id": 6256, + "id": 6266, "properties": { "facing": "east", "half": "bottom", @@ -246669,7 +246918,7 @@ } }, { - "id": 6257, + "id": 6267, "properties": { "facing": "east", "half": "bottom", @@ -246700,7 +246949,7 @@ }, "states": [ { - "id": 5705, + "id": 5714, "properties": { "facing": "north", "waterlogged": "true" @@ -246708,49 +246957,49 @@ }, { "default": true, - "id": 5706, + "id": 5715, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5707, + "id": 5716, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5708, + "id": 5717, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5709, + "id": 5718, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5710, + "id": 5719, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5711, + "id": 5720, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5712, + "id": 5721, "properties": { "facing": "east", "waterlogged": "false" @@ -246778,7 +247027,7 @@ }, "states": [ { - "id": 4857, + "id": 4866, "properties": { "facing": "north", "waterlogged": "true" @@ -246786,49 +247035,49 @@ }, { "default": true, - "id": 4858, + "id": 4867, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 4859, + "id": 4868, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 4860, + "id": 4869, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 4861, + "id": 4870, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 4862, + "id": 4871, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 4863, + "id": 4872, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 4864, + "id": 4873, "properties": { "facing": "east", "waterlogged": "false" @@ -247008,21 +247257,21 @@ }, "states": [ { - "id": 12149, + "id": 12159, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12150, + "id": 12160, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12151, + "id": 12161, "properties": { "type": "bottom", "waterlogged": "true" @@ -247030,21 +247279,21 @@ }, { "default": true, - "id": 12152, + "id": 12162, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12153, + "id": 12163, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12154, + "id": 12164, "properties": { "type": "double", "waterlogged": "false" @@ -247084,98 +247333,98 @@ ] }, "states": [ - { - "id": 7470, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7471, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7472, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7473, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7474, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7475, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7476, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7477, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7478, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7479, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 7480, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7481, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7482, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7483, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7484, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7485, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7486, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7487, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7488, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7489, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7490, "properties": { "facing": "north", "half": "bottom", @@ -247185,100 +247434,10 @@ }, { "default": true, - "id": 7481, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7482, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7483, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7484, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7485, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7486, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7487, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7488, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7489, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7490, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 7491, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -247286,8 +247445,8 @@ { "id": 7492, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -247295,8 +247454,8 @@ { "id": 7493, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -247304,8 +247463,8 @@ { "id": 7494, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -247313,8 +247472,8 @@ { "id": 7495, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -247322,8 +247481,8 @@ { "id": 7496, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -247331,8 +247490,8 @@ { "id": 7497, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -247340,8 +247499,8 @@ { "id": 7498, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -247349,8 +247508,8 @@ { "id": 7499, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -247359,7 +247518,7 @@ "id": 7500, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -247368,7 +247527,7 @@ "id": 7501, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -247377,7 +247536,7 @@ "id": 7502, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -247386,7 +247545,7 @@ "id": 7503, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -247395,7 +247554,7 @@ "id": 7504, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -247404,7 +247563,7 @@ "id": 7505, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -247413,7 +247572,7 @@ "id": 7506, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -247422,7 +247581,7 @@ "id": 7507, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -247431,7 +247590,7 @@ "id": 7508, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -247440,7 +247599,7 @@ "id": 7509, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -247448,8 +247607,8 @@ { "id": 7510, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -247457,8 +247616,8 @@ { "id": 7511, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -247466,8 +247625,8 @@ { "id": 7512, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -247475,8 +247634,8 @@ { "id": 7513, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -247484,8 +247643,8 @@ { "id": 7514, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -247493,8 +247652,8 @@ { "id": 7515, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -247502,8 +247661,8 @@ { "id": 7516, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -247511,8 +247670,8 @@ { "id": 7517, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -247520,8 +247679,8 @@ { "id": 7518, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -247529,8 +247688,8 @@ { "id": 7519, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -247539,7 +247698,7 @@ "id": 7520, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -247548,7 +247707,7 @@ "id": 7521, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -247557,7 +247716,7 @@ "id": 7522, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -247566,7 +247725,7 @@ "id": 7523, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -247575,7 +247734,7 @@ "id": 7524, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -247584,7 +247743,7 @@ "id": 7525, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -247593,7 +247752,7 @@ "id": 7526, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -247602,7 +247761,7 @@ "id": 7527, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -247611,7 +247770,7 @@ "id": 7528, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -247620,7 +247779,7 @@ "id": 7529, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -247628,8 +247787,8 @@ { "id": 7530, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -247637,8 +247796,8 @@ { "id": 7531, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -247646,8 +247805,8 @@ { "id": 7532, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -247655,8 +247814,8 @@ { "id": 7533, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -247664,8 +247823,8 @@ { "id": 7534, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -247673,8 +247832,8 @@ { "id": 7535, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -247682,8 +247841,8 @@ { "id": 7536, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -247691,8 +247850,8 @@ { "id": 7537, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -247700,8 +247859,8 @@ { "id": 7538, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -247709,8 +247868,8 @@ { "id": 7539, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -247719,7 +247878,7 @@ "id": 7540, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -247728,7 +247887,7 @@ "id": 7541, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -247737,7 +247896,7 @@ "id": 7542, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -247746,7 +247905,7 @@ "id": 7543, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -247755,7 +247914,7 @@ "id": 7544, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -247764,7 +247923,7 @@ "id": 7545, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -247773,7 +247932,7 @@ "id": 7546, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -247782,7 +247941,7 @@ "id": 7547, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -247791,13 +247950,103 @@ "id": 7548, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 7549, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7550, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7551, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7552, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7553, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7554, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7555, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7556, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7557, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7558, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7559, "properties": { "facing": "east", "half": "bottom", @@ -247844,7 +248093,7 @@ }, "states": [ { - "id": 16793, + "id": 16803, "properties": { "east": "none", "north": "none", @@ -247855,7 +248104,7 @@ } }, { - "id": 16794, + "id": 16804, "properties": { "east": "none", "north": "none", @@ -247866,7 +248115,7 @@ } }, { - "id": 16795, + "id": 16805, "properties": { "east": "none", "north": "none", @@ -247878,124 +248127,14 @@ }, { "default": true, - "id": 16796, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16797, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16798, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16799, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16800, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16801, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16802, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16803, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16804, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16805, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { "id": 16806, "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -248003,10 +248142,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -248014,10 +248153,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -248025,10 +248164,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -248036,10 +248175,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -248047,10 +248186,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -248058,10 +248197,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -248069,10 +248208,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -248080,10 +248219,10 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -248092,9 +248231,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -248103,9 +248242,9 @@ "east": "none", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -248113,10 +248252,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -248124,10 +248263,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -248135,10 +248274,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -248146,10 +248285,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -248157,10 +248296,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -248168,10 +248307,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -248179,10 +248318,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -248190,10 +248329,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -248201,10 +248340,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -248212,10 +248351,10 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -248224,9 +248363,9 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -248235,130 +248374,130 @@ "east": "none", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 16829, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 16830, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 16831, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 16832, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16833, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 16834, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16835, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16836, - "properties": { - "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 16837, + "id": 16835, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 16838, + "id": 16836, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 16837, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16838, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 16839, "properties": { "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -248367,9 +248506,9 @@ "east": "none", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -248377,10 +248516,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -248388,10 +248527,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -248399,10 +248538,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -248410,10 +248549,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -248421,10 +248560,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -248432,10 +248571,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -248443,10 +248582,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -248454,10 +248593,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -248465,10 +248604,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -248476,10 +248615,10 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -248488,9 +248627,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -248499,9 +248638,9 @@ "east": "none", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -248509,10 +248648,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -248520,10 +248659,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -248531,10 +248670,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -248542,10 +248681,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -248553,10 +248692,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -248564,10 +248703,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -248575,10 +248714,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -248586,10 +248725,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -248597,10 +248736,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -248608,10 +248747,10 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -248620,9 +248759,9 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -248631,130 +248770,130 @@ "east": "none", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 16865, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 16866, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 16867, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 16868, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16869, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 16870, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16871, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16872, - "properties": { - "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 16873, + "id": 16871, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 16874, + "id": 16872, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 16873, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16874, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 16875, "properties": { "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -248763,9 +248902,9 @@ "east": "none", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -248773,10 +248912,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -248784,10 +248923,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -248795,10 +248934,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -248806,10 +248945,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -248817,10 +248956,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -248828,10 +248967,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -248839,10 +248978,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -248850,10 +248989,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -248861,10 +249000,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -248872,10 +249011,10 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -248884,9 +249023,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -248895,9 +249034,9 @@ "east": "none", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -248905,10 +249044,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -248916,10 +249055,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -248927,10 +249066,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -248938,10 +249077,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -248949,10 +249088,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -248960,10 +249099,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -248971,10 +249110,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -248982,10 +249121,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -248993,10 +249132,10 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -249004,14 +249143,124 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16899, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16900, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16901, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16902, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16903, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16904, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16905, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16906, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16907, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16908, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16909, "properties": { "east": "none", "north": "tall", @@ -249022,7 +249271,7 @@ } }, { - "id": 16900, + "id": 16910, "properties": { "east": "none", "north": "tall", @@ -249032,125 +249281,15 @@ "west": "tall" } }, - { - "id": 16901, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16902, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16903, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16904, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16905, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16906, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16907, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16908, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16909, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16910, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 16911, "properties": { "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -249159,9 +249298,9 @@ "east": "low", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -249169,10 +249308,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -249180,10 +249319,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -249191,10 +249330,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -249202,10 +249341,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -249213,10 +249352,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -249224,10 +249363,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -249235,10 +249374,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -249246,10 +249385,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -249257,10 +249396,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -249268,10 +249407,10 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -249280,9 +249419,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -249291,9 +249430,9 @@ "east": "low", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -249301,10 +249440,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -249312,10 +249451,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -249323,10 +249462,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -249334,10 +249473,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -249345,10 +249484,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -249356,10 +249495,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -249367,10 +249506,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -249378,10 +249517,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -249389,10 +249528,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -249400,10 +249539,10 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -249412,9 +249551,9 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -249423,130 +249562,130 @@ "east": "low", "north": "none", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 16937, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 16938, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 16939, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 16940, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16941, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 16942, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16943, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16944, - "properties": { - "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 16945, + "id": 16943, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 16946, + "id": 16944, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 16945, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16946, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 16947, "properties": { "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -249555,9 +249694,9 @@ "east": "low", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -249565,10 +249704,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -249576,10 +249715,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -249587,10 +249726,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -249598,10 +249737,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -249609,10 +249748,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -249620,10 +249759,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -249631,10 +249770,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -249642,10 +249781,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -249653,10 +249792,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -249664,10 +249803,10 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -249676,9 +249815,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -249687,9 +249826,9 @@ "east": "low", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -249697,10 +249836,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -249708,10 +249847,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -249719,10 +249858,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -249730,10 +249869,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -249741,10 +249880,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -249752,10 +249891,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -249763,10 +249902,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -249774,10 +249913,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -249785,10 +249924,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -249796,10 +249935,10 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -249808,9 +249947,9 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -249819,130 +249958,130 @@ "east": "low", "north": "low", "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { "id": 16973, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { "id": 16974, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { "id": 16975, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { "id": 16976, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 16977, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { "id": 16978, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16979, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16980, - "properties": { - "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "low" } }, { - "id": 16981, + "id": 16979, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" } }, { - "id": 16982, + "id": 16980, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", "waterlogged": "false", "west": "none" } }, + { + "id": 16981, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16982, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { "id": 16983, "properties": { "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -249951,9 +250090,9 @@ "east": "low", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -249961,10 +250100,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -249972,10 +250111,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -249983,10 +250122,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -249994,10 +250133,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -250005,10 +250144,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -250016,10 +250155,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -250027,10 +250166,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -250038,10 +250177,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -250049,10 +250188,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -250060,10 +250199,10 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -250072,9 +250211,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -250083,9 +250222,9 @@ "east": "low", "north": "tall", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -250093,10 +250232,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -250104,10 +250243,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -250115,10 +250254,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -250126,10 +250265,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -250137,10 +250276,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -250148,10 +250287,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -250159,10 +250298,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -250170,10 +250309,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -250181,10 +250320,10 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -250192,14 +250331,124 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17007, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17008, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17009, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17010, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17011, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17012, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17013, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17014, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17015, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17016, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17017, "properties": { "east": "low", "north": "tall", @@ -250210,7 +250459,7 @@ } }, { - "id": 17008, + "id": 17018, "properties": { "east": "low", "north": "tall", @@ -250220,125 +250469,15 @@ "west": "tall" } }, - { - "id": 17009, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17010, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17011, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17012, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17013, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17014, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17015, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17016, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17017, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17018, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 17019, "properties": { "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -250347,9 +250486,9 @@ "east": "tall", "north": "none", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -250357,10 +250496,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -250368,10 +250507,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -250379,10 +250518,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -250390,10 +250529,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -250401,10 +250540,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -250412,10 +250551,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -250423,10 +250562,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -250434,10 +250573,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -250445,10 +250584,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -250456,10 +250595,10 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -250468,9 +250607,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -250479,9 +250618,9 @@ "east": "tall", "north": "none", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -250489,10 +250628,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -250500,10 +250639,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -250511,10 +250650,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -250522,10 +250661,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -250533,10 +250672,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -250544,10 +250683,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -250555,10 +250694,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -250566,10 +250705,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -250577,10 +250716,10 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -250588,14 +250727,124 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17043, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17044, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17045, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17046, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17047, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17048, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17049, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17050, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17051, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17052, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17053, "properties": { "east": "tall", "north": "none", @@ -250606,7 +250855,7 @@ } }, { - "id": 17044, + "id": 17054, "properties": { "east": "tall", "north": "none", @@ -250616,125 +250865,15 @@ "west": "tall" } }, - { - "id": 17045, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17046, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17047, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17048, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17049, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17050, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17051, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17052, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17053, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17054, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 17055, "properties": { "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -250743,9 +250882,9 @@ "east": "tall", "north": "low", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -250753,10 +250892,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -250764,10 +250903,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -250775,10 +250914,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -250786,10 +250925,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -250797,10 +250936,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -250808,10 +250947,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -250819,10 +250958,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -250830,10 +250969,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -250841,10 +250980,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -250852,10 +250991,10 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -250864,9 +251003,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -250875,9 +251014,9 @@ "east": "tall", "north": "low", "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -250885,10 +251024,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -250896,10 +251035,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -250907,10 +251046,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -250918,10 +251057,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -250929,10 +251068,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -250940,10 +251079,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -250951,10 +251090,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -250962,10 +251101,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -250973,10 +251112,10 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -250984,14 +251123,124 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17079, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17080, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17081, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17082, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17083, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17084, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17085, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17086, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17087, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17088, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17089, "properties": { "east": "tall", "north": "low", @@ -251002,7 +251251,7 @@ } }, { - "id": 17080, + "id": 17090, "properties": { "east": "tall", "north": "low", @@ -251012,125 +251261,15 @@ "west": "tall" } }, - { - "id": 17081, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17082, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17083, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17084, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17085, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17086, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17087, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17088, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17089, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17090, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 17091, "properties": { "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "up": "true", + "waterlogged": "true", + "west": "none" } }, { @@ -251139,9 +251278,9 @@ "east": "tall", "north": "tall", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { @@ -251149,10 +251288,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -251160,10 +251299,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -251171,10 +251310,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -251182,10 +251321,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { @@ -251193,10 +251332,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { @@ -251204,10 +251343,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { @@ -251215,10 +251354,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "true", - "west": "none" + "west": "tall" } }, { @@ -251226,10 +251365,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "none" } }, { @@ -251237,10 +251376,10 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "low" } }, { @@ -251248,14 +251387,124 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", "waterlogged": "false", - "west": "none" + "west": "tall" } }, { "id": 17103, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17104, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17105, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17106, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17107, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17108, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17109, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17110, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17111, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17112, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17113, "properties": { "east": "tall", "north": "tall", @@ -251266,7 +251515,7 @@ } }, { - "id": 17104, + "id": 17114, "properties": { "east": "tall", "north": "tall", @@ -251276,118 +251525,118 @@ "west": "tall" } }, - { - "id": 17105, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17106, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17107, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17108, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17109, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17110, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17111, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17112, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17113, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17114, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, { "id": 17115, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17116, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17117, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17118, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17119, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17120, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17121, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17122, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17123, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17124, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17125, "properties": { "east": "tall", "north": "tall", @@ -251398,7 +251647,7 @@ } }, { - "id": 17116, + "id": 17126, "properties": { "east": "tall", "north": "tall", @@ -251418,7 +251667,7 @@ "states": [ { "default": true, - "id": 6770 + "id": 6780 } ] }, @@ -251448,7 +251697,7 @@ }, "states": [ { - "id": 5917, + "id": 5926, "properties": { "face": "floor", "facing": "north", @@ -251456,7 +251705,7 @@ } }, { - "id": 5918, + "id": 5927, "properties": { "face": "floor", "facing": "north", @@ -251464,7 +251713,7 @@ } }, { - "id": 5919, + "id": 5928, "properties": { "face": "floor", "facing": "south", @@ -251472,7 +251721,7 @@ } }, { - "id": 5920, + "id": 5929, "properties": { "face": "floor", "facing": "south", @@ -251480,7 +251729,7 @@ } }, { - "id": 5921, + "id": 5930, "properties": { "face": "floor", "facing": "west", @@ -251488,7 +251737,7 @@ } }, { - "id": 5922, + "id": 5931, "properties": { "face": "floor", "facing": "west", @@ -251496,7 +251745,7 @@ } }, { - "id": 5923, + "id": 5932, "properties": { "face": "floor", "facing": "east", @@ -251504,7 +251753,7 @@ } }, { - "id": 5924, + "id": 5933, "properties": { "face": "floor", "facing": "east", @@ -251512,7 +251761,7 @@ } }, { - "id": 5925, + "id": 5934, "properties": { "face": "wall", "facing": "north", @@ -251521,87 +251770,87 @@ }, { "default": true, - "id": 5926, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 5927, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 5928, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 5929, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 5930, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 5931, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 5932, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 5933, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 5934, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { "id": 5935, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" + "face": "wall", + "facing": "north", + "powered": "false" } }, { "id": 5936, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5937, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5938, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5939, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5940, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5941, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 5942, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 5943, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5944, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5945, "properties": { "face": "ceiling", "facing": "south", @@ -251609,7 +251858,7 @@ } }, { - "id": 5937, + "id": 5946, "properties": { "face": "ceiling", "facing": "west", @@ -251617,7 +251866,7 @@ } }, { - "id": 5938, + "id": 5947, "properties": { "face": "ceiling", "facing": "west", @@ -251625,7 +251874,7 @@ } }, { - "id": 5939, + "id": 5948, "properties": { "face": "ceiling", "facing": "east", @@ -251633,7 +251882,7 @@ } }, { - "id": 5940, + "id": 5949, "properties": { "face": "ceiling", "facing": "east", @@ -251656,14 +251905,14 @@ }, "states": [ { - "id": 5817, + "id": 5826, "properties": { "powered": "true" } }, { "default": true, - "id": 5818, + "id": 5827, "properties": { "powered": "false" } @@ -251688,21 +251937,21 @@ }, "states": [ { - "id": 12107, + "id": 12117, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 12108, + "id": 12118, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 12109, + "id": 12119, "properties": { "type": "bottom", "waterlogged": "true" @@ -251710,21 +251959,21 @@ }, { "default": true, - "id": 12110, + "id": 12120, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 12111, + "id": 12121, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 12112, + "id": 12122, "properties": { "type": "double", "waterlogged": "false" @@ -251764,98 +252013,98 @@ ] }, "states": [ - { - "id": 14455, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 14456, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14457, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14458, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14459, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14460, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14461, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14462, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14463, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14464, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 14465, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14466, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14467, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14468, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14469, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14470, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14471, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14472, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14473, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14474, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14475, "properties": { "facing": "north", "half": "bottom", @@ -251865,100 +252114,10 @@ }, { "default": true, - "id": 14466, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14467, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14468, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14469, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14470, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14471, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14472, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14473, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14474, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 14475, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 14476, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -251966,8 +252125,8 @@ { "id": 14477, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -251975,8 +252134,8 @@ { "id": 14478, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -251984,8 +252143,8 @@ { "id": 14479, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -251993,8 +252152,8 @@ { "id": 14480, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -252002,8 +252161,8 @@ { "id": 14481, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -252011,8 +252170,8 @@ { "id": 14482, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -252020,8 +252179,8 @@ { "id": 14483, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -252029,8 +252188,8 @@ { "id": 14484, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -252039,7 +252198,7 @@ "id": 14485, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -252048,7 +252207,7 @@ "id": 14486, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -252057,7 +252216,7 @@ "id": 14487, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -252066,7 +252225,7 @@ "id": 14488, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -252075,7 +252234,7 @@ "id": 14489, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -252084,7 +252243,7 @@ "id": 14490, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -252093,7 +252252,7 @@ "id": 14491, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -252102,7 +252261,7 @@ "id": 14492, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -252111,7 +252270,7 @@ "id": 14493, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -252120,7 +252279,7 @@ "id": 14494, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -252128,8 +252287,8 @@ { "id": 14495, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -252137,8 +252296,8 @@ { "id": 14496, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -252146,8 +252305,8 @@ { "id": 14497, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -252155,8 +252314,8 @@ { "id": 14498, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -252164,8 +252323,8 @@ { "id": 14499, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -252173,8 +252332,8 @@ { "id": 14500, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -252182,8 +252341,8 @@ { "id": 14501, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -252191,8 +252350,8 @@ { "id": 14502, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -252200,8 +252359,8 @@ { "id": 14503, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -252209,8 +252368,8 @@ { "id": 14504, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -252219,7 +252378,7 @@ "id": 14505, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -252228,7 +252387,7 @@ "id": 14506, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -252237,7 +252396,7 @@ "id": 14507, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -252246,7 +252405,7 @@ "id": 14508, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -252255,7 +252414,7 @@ "id": 14509, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -252264,7 +252423,7 @@ "id": 14510, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -252273,7 +252432,7 @@ "id": 14511, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -252282,7 +252441,7 @@ "id": 14512, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -252291,7 +252450,7 @@ "id": 14513, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -252300,7 +252459,7 @@ "id": 14514, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -252308,8 +252467,8 @@ { "id": 14515, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -252317,8 +252476,8 @@ { "id": 14516, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -252326,8 +252485,8 @@ { "id": 14517, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -252335,8 +252494,8 @@ { "id": 14518, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -252344,8 +252503,8 @@ { "id": 14519, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -252353,8 +252512,8 @@ { "id": 14520, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -252362,8 +252521,8 @@ { "id": 14521, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -252371,8 +252530,8 @@ { "id": 14522, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -252380,8 +252539,8 @@ { "id": 14523, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -252389,8 +252548,8 @@ { "id": 14524, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -252399,7 +252558,7 @@ "id": 14525, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -252408,7 +252567,7 @@ "id": 14526, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -252417,7 +252576,7 @@ "id": 14527, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -252426,7 +252585,7 @@ "id": 14528, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -252435,7 +252594,7 @@ "id": 14529, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -252444,7 +252603,7 @@ "id": 14530, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -252453,7 +252612,7 @@ "id": 14531, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -252462,7 +252621,7 @@ "id": 14532, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -252471,13 +252630,103 @@ "id": 14533, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 14534, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14535, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14536, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14537, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14538, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14539, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14540, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14541, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14542, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14543, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14544, "properties": { "facing": "east", "half": "bottom", @@ -252503,25 +252752,25 @@ "states": [ { "default": true, - "id": 19480, + "id": 19490, "properties": { "facing": "north" } }, { - "id": 19481, + "id": 19491, "properties": { "facing": "south" } }, { - "id": 19482, + "id": 19492, "properties": { "facing": "west" } }, { - "id": 19483, + "id": 19493, "properties": { "facing": "east" } @@ -252780,20 +253029,20 @@ }, "states": [ { - "id": 19618, + "id": 19628, "properties": { "axis": "x" } }, { "default": true, - "id": 19619, + "id": 19629, "properties": { "axis": "y" } }, { - "id": 19620, + "id": 19630, "properties": { "axis": "z" } @@ -252814,20 +253063,20 @@ }, "states": [ { - "id": 19612, + "id": 19622, "properties": { "axis": "x" } }, { "default": true, - "id": 19613, + "id": 19623, "properties": { "axis": "y" } }, { - "id": 19614, + "id": 19624, "properties": { "axis": "z" } @@ -253256,20 +253505,20 @@ }, "states": [ { - "id": 19601, + "id": 19611, "properties": { "axis": "x" } }, { "default": true, - "id": 19602, + "id": 19612, "properties": { "axis": "y" } }, { - "id": 19603, + "id": 19613, "properties": { "axis": "z" } @@ -253290,20 +253539,20 @@ }, "states": [ { - "id": 19595, + "id": 19605, "properties": { "axis": "x" } }, { "default": true, - "id": 19596, + "id": 19606, "properties": { "axis": "y" } }, { - "id": 19597, + "id": 19607, "properties": { "axis": "z" } @@ -253325,26 +253574,26 @@ }, "states": [ { - "id": 20369, + "id": 20379, "properties": { "mode": "save" } }, { "default": true, - "id": 20370, + "id": 20380, "properties": { "mode": "load" } }, { - "id": 20371, + "id": 20381, "properties": { "mode": "corner" } }, { - "id": 20372, + "id": 20382, "properties": { "mode": "data" } @@ -253359,7 +253608,7 @@ "states": [ { "default": true, - "id": 13562 + "id": 13572 } ] }, @@ -253391,97 +253640,97 @@ "states": [ { "default": true, - "id": 5968, + "id": 5978, "properties": { "age": "0" } }, { - "id": 5969, + "id": 5979, "properties": { "age": "1" } }, { - "id": 5970, + "id": 5980, "properties": { "age": "2" } }, { - "id": 5971, + "id": 5981, "properties": { "age": "3" } }, { - "id": 5972, + "id": 5982, "properties": { "age": "4" } }, { - "id": 5973, + "id": 5983, "properties": { "age": "5" } }, { - "id": 5974, + "id": 5984, "properties": { "age": "6" } }, { - "id": 5975, + "id": 5985, "properties": { "age": "7" } }, { - "id": 5976, + "id": 5986, "properties": { "age": "8" } }, { - "id": 5977, + "id": 5987, "properties": { "age": "9" } }, { - "id": 5978, + "id": 5988, "properties": { "age": "10" } }, { - "id": 5979, + "id": 5989, "properties": { "age": "11" } }, { - "id": 5980, + "id": 5990, "properties": { "age": "12" } }, { - "id": 5981, + "id": 5991, "properties": { "age": "13" } }, { - "id": 5982, + "id": 5992, "properties": { "age": "14" } }, { - "id": 5983, + "id": 5993, "properties": { "age": "15" } @@ -253501,14 +253750,14 @@ }, "states": [ { - "id": 11626, + "id": 11636, "properties": { "half": "upper" } }, { "default": true, - "id": 11627, + "id": 11637, "properties": { "half": "lower" } @@ -253619,31 +253868,43 @@ "states": [ { "default": true, - "id": 19588, + "id": 19598, "properties": { "age": "0" } }, { - "id": 19589, + "id": 19599, "properties": { "age": "1" } }, { - "id": 19590, + "id": 19600, "properties": { "age": "2" } }, { - "id": 19591, + "id": 19601, "properties": { "age": "3" } } ] }, + "minecraft:tall_dry_grass": { + "definition": { + "type": "minecraft:tall_dry_grass", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2053 + } + ] + }, "minecraft:tall_grass": { "definition": { "type": "minecraft:double_plant", @@ -253657,14 +253918,14 @@ }, "states": [ { - "id": 11634, + "id": 11644, "properties": { "half": "upper" } }, { "default": true, - "id": 11635, + "id": 11645, "properties": { "half": "lower" } @@ -253684,14 +253945,14 @@ }, "states": [ { - "id": 2052, + "id": 2055, "properties": { "half": "upper" } }, { "default": true, - "id": 2053, + "id": 2056, "properties": { "half": "lower" } @@ -253726,97 +253987,97 @@ "states": [ { "default": true, - "id": 20394, + "id": 20409, "properties": { "power": "0" } }, { - "id": 20395, + "id": 20410, "properties": { "power": "1" } }, { - "id": 20396, + "id": 20411, "properties": { "power": "2" } }, { - "id": 20397, + "id": 20412, "properties": { "power": "3" } }, { - "id": 20398, + "id": 20413, "properties": { "power": "4" } }, { - "id": 20399, + "id": 20414, "properties": { "power": "5" } }, { - "id": 20400, + "id": 20415, "properties": { "power": "6" } }, { - "id": 20401, + "id": 20416, "properties": { "power": "7" } }, { - "id": 20402, + "id": 20417, "properties": { "power": "8" } }, { - "id": 20403, + "id": 20418, "properties": { "power": "9" } }, { - "id": 20404, + "id": 20419, "properties": { "power": "10" } }, { - "id": 20405, + "id": 20420, "properties": { "power": "11" } }, { - "id": 20406, + "id": 20421, "properties": { "power": "12" } }, { - "id": 20407, + "id": 20422, "properties": { "power": "13" } }, { - "id": 20408, + "id": 20423, "properties": { "power": "14" } }, { - "id": 20409, + "id": 20424, "properties": { "power": "15" } @@ -253825,13 +254086,66 @@ }, "minecraft:terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 11623 + "id": 11633 + } + ] + }, + "minecraft:test_block": { + "definition": { + "type": "minecraft:test", + "properties": {} + }, + "properties": { + "mode": [ + "start", + "log", + "fail", + "accept" + ] + }, + "states": [ + { + "default": true, + "id": 20395, + "properties": { + "mode": "start" + } + }, + { + "id": 20396, + "properties": { + "mode": "log" + } + }, + { + "id": 20397, + "properties": { + "mode": "fail" + } + }, + { + "id": 20398, + "properties": { + "mode": "accept" + } + } + ] + }, + "minecraft:test_instance_block": { + "definition": { + "type": "minecraft:test_instance", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20399 } ] }, @@ -253843,7 +254157,7 @@ "states": [ { "default": true, - "id": 23330 + "id": 23345 } ] }, @@ -253860,14 +254174,14 @@ }, "states": [ { - "id": 2137, + "id": 2140, "properties": { "unstable": "true" } }, { "default": true, - "id": 2138, + "id": 2141, "properties": { "unstable": "false" } @@ -253883,7 +254197,7 @@ "states": [ { "default": true, - "id": 2398 + "id": 2401 } ] }, @@ -253901,7 +254215,7 @@ "states": [ { "default": true, - "id": 2119 + "id": 2122 } ] }, @@ -253919,13 +254233,13 @@ "states": [ { "default": true, - "id": 13508, + "id": 13518, "properties": { "age": "0" } }, { - "id": 13509, + "id": 13519, "properties": { "age": "1" } @@ -253956,7 +254270,7 @@ }, "states": [ { - "id": 9918, + "id": 9928, "properties": { "type": "single", "facing": "north", @@ -253965,151 +254279,151 @@ }, { "default": true, - "id": 9919, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 9920, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 9921, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 9922, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 9923, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 9924, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 9925, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 9926, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 9927, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 9928, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "true" - } - }, - { "id": 9929, "properties": { - "type": "right", - "facing": "south", + "type": "single", + "facing": "north", "waterlogged": "false" } }, { "id": 9930, "properties": { - "type": "single", - "facing": "west", + "type": "left", + "facing": "north", "waterlogged": "true" } }, { "id": 9931, "properties": { - "type": "single", - "facing": "west", + "type": "left", + "facing": "north", "waterlogged": "false" } }, { "id": 9932, "properties": { - "type": "left", - "facing": "west", + "type": "right", + "facing": "north", "waterlogged": "true" } }, { "id": 9933, "properties": { - "type": "left", - "facing": "west", + "type": "right", + "facing": "north", "waterlogged": "false" } }, { "id": 9934, "properties": { - "type": "right", - "facing": "west", + "type": "single", + "facing": "south", "waterlogged": "true" } }, { "id": 9935, "properties": { - "type": "right", - "facing": "west", + "type": "single", + "facing": "south", "waterlogged": "false" } }, { "id": 9936, "properties": { - "type": "single", - "facing": "east", + "type": "left", + "facing": "south", "waterlogged": "true" } }, { "id": 9937, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 9938, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 9939, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 9940, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 9941, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 9942, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 9943, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 9944, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 9945, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 9946, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 9947, "properties": { "type": "single", "facing": "east", @@ -254117,7 +254431,7 @@ } }, { - "id": 9938, + "id": 9948, "properties": { "type": "left", "facing": "east", @@ -254125,7 +254439,7 @@ } }, { - "id": 9939, + "id": 9949, "properties": { "type": "left", "facing": "east", @@ -254133,7 +254447,7 @@ } }, { - "id": 9940, + "id": 9950, "properties": { "type": "right", "facing": "east", @@ -254141,7 +254455,7 @@ } }, { - "id": 9941, + "id": 9951, "properties": { "type": "right", "facing": "east", @@ -254171,42 +254485,42 @@ }, "states": [ { - "id": 27651, + "id": 27698, "properties": { "ominous": "true", "trial_spawner_state": "inactive" } }, { - "id": 27652, + "id": 27699, "properties": { "ominous": "true", "trial_spawner_state": "waiting_for_players" } }, { - "id": 27653, + "id": 27700, "properties": { "ominous": "true", "trial_spawner_state": "active" } }, { - "id": 27654, + "id": 27701, "properties": { "ominous": "true", "trial_spawner_state": "waiting_for_reward_ejection" } }, { - "id": 27655, + "id": 27702, "properties": { "ominous": "true", "trial_spawner_state": "ejecting_reward" } }, { - "id": 27656, + "id": 27703, "properties": { "ominous": "true", "trial_spawner_state": "cooldown" @@ -254214,42 +254528,42 @@ }, { "default": true, - "id": 27657, + "id": 27704, "properties": { "ominous": "false", "trial_spawner_state": "inactive" } }, { - "id": 27658, + "id": 27705, "properties": { "ominous": "false", "trial_spawner_state": "waiting_for_players" } }, { - "id": 27659, + "id": 27706, "properties": { "ominous": "false", "trial_spawner_state": "active" } }, { - "id": 27660, + "id": 27707, "properties": { "ominous": "false", "trial_spawner_state": "waiting_for_reward_ejection" } }, { - "id": 27661, + "id": 27708, "properties": { "ominous": "false", "trial_spawner_state": "ejecting_reward" } }, { - "id": 27662, + "id": 27709, "properties": { "ominous": "false", "trial_spawner_state": "cooldown" @@ -254294,135 +254608,15 @@ ] }, "states": [ - { - "id": 8311, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 8312, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 8313, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 8314, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 8315, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 8316, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 8317, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 8318, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 8319, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 8320, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - } - }, { "id": 8321, "properties": { "attached": "true", "disarmed": "true", "east": "true", - "north": "false", + "north": "true", "powered": "true", - "south": "false", + "south": "true", "west": "true" } }, @@ -254432,9 +254626,9 @@ "attached": "true", "disarmed": "true", "east": "true", - "north": "false", + "north": "true", "powered": "true", - "south": "false", + "south": "true", "west": "false" } }, @@ -254444,9 +254638,9 @@ "attached": "true", "disarmed": "true", "east": "true", - "north": "false", - "powered": "false", - "south": "true", + "north": "true", + "powered": "true", + "south": "false", "west": "true" } }, @@ -254456,9 +254650,9 @@ "attached": "true", "disarmed": "true", "east": "true", - "north": "false", - "powered": "false", - "south": "true", + "north": "true", + "powered": "true", + "south": "false", "west": "false" } }, @@ -254468,9 +254662,9 @@ "attached": "true", "disarmed": "true", "east": "true", - "north": "false", + "north": "true", "powered": "false", - "south": "false", + "south": "true", "west": "true" } }, @@ -254480,9 +254674,9 @@ "attached": "true", "disarmed": "true", "east": "true", - "north": "false", + "north": "true", "powered": "false", - "south": "false", + "south": "true", "west": "false" } }, @@ -254491,10 +254685,10 @@ "properties": { "attached": "true", "disarmed": "true", - "east": "false", + "east": "true", "north": "true", - "powered": "true", - "south": "true", + "powered": "false", + "south": "false", "west": "true" } }, @@ -254503,10 +254697,10 @@ "properties": { "attached": "true", "disarmed": "true", - "east": "false", + "east": "true", "north": "true", - "powered": "true", - "south": "true", + "powered": "false", + "south": "false", "west": "false" } }, @@ -254515,10 +254709,10 @@ "properties": { "attached": "true", "disarmed": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "powered": "true", - "south": "false", + "south": "true", "west": "true" } }, @@ -254527,10 +254721,10 @@ "properties": { "attached": "true", "disarmed": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "powered": "true", - "south": "false", + "south": "true", "west": "false" } }, @@ -254539,10 +254733,10 @@ "properties": { "attached": "true", "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", "west": "true" } }, @@ -254551,10 +254745,10 @@ "properties": { "attached": "true", "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", "west": "false" } }, @@ -254563,10 +254757,10 @@ "properties": { "attached": "true", "disarmed": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "powered": "false", - "south": "false", + "south": "true", "west": "true" } }, @@ -254575,10 +254769,10 @@ "properties": { "attached": "true", "disarmed": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "powered": "false", - "south": "false", + "south": "true", "west": "false" } }, @@ -254587,10 +254781,10 @@ "properties": { "attached": "true", "disarmed": "true", - "east": "false", + "east": "true", "north": "false", - "powered": "true", - "south": "true", + "powered": "false", + "south": "false", "west": "true" } }, @@ -254599,10 +254793,10 @@ "properties": { "attached": "true", "disarmed": "true", - "east": "false", + "east": "true", "north": "false", - "powered": "true", - "south": "true", + "powered": "false", + "south": "false", "west": "false" } }, @@ -254612,9 +254806,9 @@ "attached": "true", "disarmed": "true", "east": "false", - "north": "false", + "north": "true", "powered": "true", - "south": "false", + "south": "true", "west": "true" } }, @@ -254624,9 +254818,9 @@ "attached": "true", "disarmed": "true", "east": "false", - "north": "false", + "north": "true", "powered": "true", - "south": "false", + "south": "true", "west": "false" } }, @@ -254636,9 +254830,9 @@ "attached": "true", "disarmed": "true", "east": "false", - "north": "false", - "powered": "false", - "south": "true", + "north": "true", + "powered": "true", + "south": "false", "west": "true" } }, @@ -254648,9 +254842,9 @@ "attached": "true", "disarmed": "true", "east": "false", - "north": "false", - "powered": "false", - "south": "true", + "north": "true", + "powered": "true", + "south": "false", "west": "false" } }, @@ -254660,9 +254854,9 @@ "attached": "true", "disarmed": "true", "east": "false", - "north": "false", + "north": "true", "powered": "false", - "south": "false", + "south": "true", "west": "true" } }, @@ -254672,9 +254866,9 @@ "attached": "true", "disarmed": "true", "east": "false", - "north": "false", + "north": "true", "powered": "false", - "south": "false", + "south": "true", "west": "false" } }, @@ -254682,11 +254876,11 @@ "id": 8343, "properties": { "attached": "true", - "disarmed": "false", - "east": "true", + "disarmed": "true", + "east": "false", "north": "true", - "powered": "true", - "south": "true", + "powered": "false", + "south": "false", "west": "true" } }, @@ -254694,11 +254888,11 @@ "id": 8344, "properties": { "attached": "true", - "disarmed": "false", - "east": "true", + "disarmed": "true", + "east": "false", "north": "true", - "powered": "true", - "south": "true", + "powered": "false", + "south": "false", "west": "false" } }, @@ -254706,11 +254900,11 @@ "id": 8345, "properties": { "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", + "disarmed": "true", + "east": "false", + "north": "false", "powered": "true", - "south": "false", + "south": "true", "west": "true" } }, @@ -254718,11 +254912,11 @@ "id": 8346, "properties": { "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", + "disarmed": "true", + "east": "false", + "north": "false", "powered": "true", - "south": "false", + "south": "true", "west": "false" } }, @@ -254730,11 +254924,11 @@ "id": 8347, "properties": { "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", "west": "true" } }, @@ -254742,11 +254936,11 @@ "id": 8348, "properties": { "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", "west": "false" } }, @@ -254754,11 +254948,11 @@ "id": 8349, "properties": { "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", + "disarmed": "true", + "east": "false", + "north": "false", "powered": "false", - "south": "false", + "south": "true", "west": "true" } }, @@ -254766,11 +254960,11 @@ "id": 8350, "properties": { "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", + "disarmed": "true", + "east": "false", + "north": "false", "powered": "false", - "south": "false", + "south": "true", "west": "false" } }, @@ -254778,11 +254972,11 @@ "id": 8351, "properties": { "attached": "true", - "disarmed": "false", - "east": "true", + "disarmed": "true", + "east": "false", "north": "false", - "powered": "true", - "south": "true", + "powered": "false", + "south": "false", "west": "true" } }, @@ -254790,11 +254984,11 @@ "id": 8352, "properties": { "attached": "true", - "disarmed": "false", - "east": "true", + "disarmed": "true", + "east": "false", "north": "false", - "powered": "true", - "south": "true", + "powered": "false", + "south": "false", "west": "false" } }, @@ -254804,9 +254998,9 @@ "attached": "true", "disarmed": "false", "east": "true", - "north": "false", + "north": "true", "powered": "true", - "south": "false", + "south": "true", "west": "true" } }, @@ -254816,9 +255010,9 @@ "attached": "true", "disarmed": "false", "east": "true", - "north": "false", + "north": "true", "powered": "true", - "south": "false", + "south": "true", "west": "false" } }, @@ -254828,9 +255022,9 @@ "attached": "true", "disarmed": "false", "east": "true", - "north": "false", - "powered": "false", - "south": "true", + "north": "true", + "powered": "true", + "south": "false", "west": "true" } }, @@ -254840,9 +255034,9 @@ "attached": "true", "disarmed": "false", "east": "true", - "north": "false", - "powered": "false", - "south": "true", + "north": "true", + "powered": "true", + "south": "false", "west": "false" } }, @@ -254852,9 +255046,9 @@ "attached": "true", "disarmed": "false", "east": "true", - "north": "false", + "north": "true", "powered": "false", - "south": "false", + "south": "true", "west": "true" } }, @@ -254864,9 +255058,9 @@ "attached": "true", "disarmed": "false", "east": "true", - "north": "false", + "north": "true", "powered": "false", - "south": "false", + "south": "true", "west": "false" } }, @@ -254875,10 +255069,10 @@ "properties": { "attached": "true", "disarmed": "false", - "east": "false", + "east": "true", "north": "true", - "powered": "true", - "south": "true", + "powered": "false", + "south": "false", "west": "true" } }, @@ -254887,10 +255081,10 @@ "properties": { "attached": "true", "disarmed": "false", - "east": "false", + "east": "true", "north": "true", - "powered": "true", - "south": "true", + "powered": "false", + "south": "false", "west": "false" } }, @@ -254899,10 +255093,10 @@ "properties": { "attached": "true", "disarmed": "false", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "powered": "true", - "south": "false", + "south": "true", "west": "true" } }, @@ -254911,10 +255105,10 @@ "properties": { "attached": "true", "disarmed": "false", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "powered": "true", - "south": "false", + "south": "true", "west": "false" } }, @@ -254923,10 +255117,10 @@ "properties": { "attached": "true", "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", "west": "true" } }, @@ -254935,10 +255129,10 @@ "properties": { "attached": "true", "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", "west": "false" } }, @@ -254947,10 +255141,10 @@ "properties": { "attached": "true", "disarmed": "false", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "powered": "false", - "south": "false", + "south": "true", "west": "true" } }, @@ -254959,10 +255153,10 @@ "properties": { "attached": "true", "disarmed": "false", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "powered": "false", - "south": "false", + "south": "true", "west": "false" } }, @@ -254971,10 +255165,10 @@ "properties": { "attached": "true", "disarmed": "false", - "east": "false", + "east": "true", "north": "false", - "powered": "true", - "south": "true", + "powered": "false", + "south": "false", "west": "true" } }, @@ -254983,10 +255177,10 @@ "properties": { "attached": "true", "disarmed": "false", - "east": "false", + "east": "true", "north": "false", - "powered": "true", - "south": "true", + "powered": "false", + "south": "false", "west": "false" } }, @@ -254996,9 +255190,9 @@ "attached": "true", "disarmed": "false", "east": "false", - "north": "false", + "north": "true", "powered": "true", - "south": "false", + "south": "true", "west": "true" } }, @@ -255008,9 +255202,9 @@ "attached": "true", "disarmed": "false", "east": "false", - "north": "false", + "north": "true", "powered": "true", - "south": "false", + "south": "true", "west": "false" } }, @@ -255020,9 +255214,9 @@ "attached": "true", "disarmed": "false", "east": "false", - "north": "false", - "powered": "false", - "south": "true", + "north": "true", + "powered": "true", + "south": "false", "west": "true" } }, @@ -255032,14 +255226,134 @@ "attached": "true", "disarmed": "false", "east": "false", - "north": "false", - "powered": "false", - "south": "true", + "north": "true", + "powered": "true", + "south": "false", "west": "false" } }, { "id": 8373, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 8374, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 8375, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 8376, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 8377, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 8378, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 8379, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 8380, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 8381, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 8382, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 8383, "properties": { "attached": "true", "disarmed": "false", @@ -255051,7 +255365,7 @@ } }, { - "id": 8374, + "id": 8384, "properties": { "attached": "true", "disarmed": "false", @@ -255062,135 +255376,15 @@ "west": "false" } }, - { - "id": 8375, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 8376, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 8377, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 8378, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 8379, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 8380, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 8381, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 8382, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 8383, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 8384, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - } - }, { "id": 8385, "properties": { "attached": "false", "disarmed": "true", "east": "true", - "north": "false", + "north": "true", "powered": "true", - "south": "false", + "south": "true", "west": "true" } }, @@ -255200,9 +255394,9 @@ "attached": "false", "disarmed": "true", "east": "true", - "north": "false", + "north": "true", "powered": "true", - "south": "false", + "south": "true", "west": "false" } }, @@ -255212,9 +255406,9 @@ "attached": "false", "disarmed": "true", "east": "true", - "north": "false", - "powered": "false", - "south": "true", + "north": "true", + "powered": "true", + "south": "false", "west": "true" } }, @@ -255224,9 +255418,9 @@ "attached": "false", "disarmed": "true", "east": "true", - "north": "false", - "powered": "false", - "south": "true", + "north": "true", + "powered": "true", + "south": "false", "west": "false" } }, @@ -255236,9 +255430,9 @@ "attached": "false", "disarmed": "true", "east": "true", - "north": "false", + "north": "true", "powered": "false", - "south": "false", + "south": "true", "west": "true" } }, @@ -255248,9 +255442,9 @@ "attached": "false", "disarmed": "true", "east": "true", - "north": "false", + "north": "true", "powered": "false", - "south": "false", + "south": "true", "west": "false" } }, @@ -255259,10 +255453,10 @@ "properties": { "attached": "false", "disarmed": "true", - "east": "false", + "east": "true", "north": "true", - "powered": "true", - "south": "true", + "powered": "false", + "south": "false", "west": "true" } }, @@ -255271,10 +255465,10 @@ "properties": { "attached": "false", "disarmed": "true", - "east": "false", + "east": "true", "north": "true", - "powered": "true", - "south": "true", + "powered": "false", + "south": "false", "west": "false" } }, @@ -255283,10 +255477,10 @@ "properties": { "attached": "false", "disarmed": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "powered": "true", - "south": "false", + "south": "true", "west": "true" } }, @@ -255295,10 +255489,10 @@ "properties": { "attached": "false", "disarmed": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "powered": "true", - "south": "false", + "south": "true", "west": "false" } }, @@ -255307,10 +255501,10 @@ "properties": { "attached": "false", "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", "west": "true" } }, @@ -255319,10 +255513,10 @@ "properties": { "attached": "false", "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", "west": "false" } }, @@ -255331,10 +255525,10 @@ "properties": { "attached": "false", "disarmed": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "powered": "false", - "south": "false", + "south": "true", "west": "true" } }, @@ -255343,10 +255537,10 @@ "properties": { "attached": "false", "disarmed": "true", - "east": "false", - "north": "true", + "east": "true", + "north": "false", "powered": "false", - "south": "false", + "south": "true", "west": "false" } }, @@ -255355,10 +255549,10 @@ "properties": { "attached": "false", "disarmed": "true", - "east": "false", + "east": "true", "north": "false", - "powered": "true", - "south": "true", + "powered": "false", + "south": "false", "west": "true" } }, @@ -255367,10 +255561,10 @@ "properties": { "attached": "false", "disarmed": "true", - "east": "false", + "east": "true", "north": "false", - "powered": "true", - "south": "true", + "powered": "false", + "south": "false", "west": "false" } }, @@ -255380,9 +255574,9 @@ "attached": "false", "disarmed": "true", "east": "false", - "north": "false", + "north": "true", "powered": "true", - "south": "false", + "south": "true", "west": "true" } }, @@ -255392,9 +255586,9 @@ "attached": "false", "disarmed": "true", "east": "false", - "north": "false", + "north": "true", "powered": "true", - "south": "false", + "south": "true", "west": "false" } }, @@ -255404,9 +255598,9 @@ "attached": "false", "disarmed": "true", "east": "false", - "north": "false", - "powered": "false", - "south": "true", + "north": "true", + "powered": "true", + "south": "false", "west": "true" } }, @@ -255416,14 +255610,134 @@ "attached": "false", "disarmed": "true", "east": "false", - "north": "false", - "powered": "false", - "south": "true", + "north": "true", + "powered": "true", + "south": "false", "west": "false" } }, { "id": 8405, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 8406, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 8407, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 8408, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 8409, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 8410, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 8411, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 8412, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 8413, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 8414, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 8415, "properties": { "attached": "false", "disarmed": "true", @@ -255435,7 +255749,7 @@ } }, { - "id": 8406, + "id": 8416, "properties": { "attached": "false", "disarmed": "true", @@ -255446,135 +255760,15 @@ "west": "false" } }, - { - "id": 8407, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 8408, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 8409, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 8410, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 8411, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 8412, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 8413, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 8414, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 8415, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 8416, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - } - }, { "id": 8417, "properties": { "attached": "false", "disarmed": "false", "east": "true", - "north": "false", + "north": "true", "powered": "true", - "south": "false", + "south": "true", "west": "true" } }, @@ -255584,9 +255778,9 @@ "attached": "false", "disarmed": "false", "east": "true", - "north": "false", + "north": "true", "powered": "true", - "south": "false", + "south": "true", "west": "false" } }, @@ -255596,9 +255790,9 @@ "attached": "false", "disarmed": "false", "east": "true", - "north": "false", - "powered": "false", - "south": "true", + "north": "true", + "powered": "true", + "south": "false", "west": "true" } }, @@ -255608,14 +255802,134 @@ "attached": "false", "disarmed": "false", "east": "true", - "north": "false", - "powered": "false", - "south": "true", + "north": "true", + "powered": "true", + "south": "false", "west": "false" } }, { "id": 8421, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 8422, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 8423, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 8424, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 8425, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 8426, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 8427, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 8428, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 8429, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 8430, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 8431, "properties": { "attached": "false", "disarmed": "false", @@ -255627,7 +255941,7 @@ } }, { - "id": 8422, + "id": 8432, "properties": { "attached": "false", "disarmed": "false", @@ -255638,140 +255952,140 @@ "west": "false" } }, - { - "id": 8423, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 8424, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 8425, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 8426, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 8427, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 8428, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 8429, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 8430, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 8431, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 8432, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - } - }, { "id": 8433, "properties": { "attached": "false", "disarmed": "false", "east": "false", - "north": "false", + "north": "true", "powered": "true", - "south": "false", + "south": "true", "west": "true" } }, { "id": 8434, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 8435, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 8436, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 8437, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 8438, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 8439, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 8440, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 8441, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 8442, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 8443, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 8444, "properties": { "attached": "false", "disarmed": "false", @@ -255783,7 +256097,7 @@ } }, { - "id": 8435, + "id": 8445, "properties": { "attached": "false", "disarmed": "false", @@ -255795,7 +256109,7 @@ } }, { - "id": 8436, + "id": 8446, "properties": { "attached": "false", "disarmed": "false", @@ -255807,7 +256121,7 @@ } }, { - "id": 8437, + "id": 8447, "properties": { "attached": "false", "disarmed": "false", @@ -255820,7 +256134,7 @@ }, { "default": true, - "id": 8438, + "id": 8448, "properties": { "attached": "false", "disarmed": "false", @@ -255856,7 +256170,7 @@ }, "states": [ { - "id": 8295, + "id": 8305, "properties": { "attached": "true", "facing": "north", @@ -255864,7 +256178,7 @@ } }, { - "id": 8296, + "id": 8306, "properties": { "attached": "true", "facing": "north", @@ -255872,7 +256186,7 @@ } }, { - "id": 8297, + "id": 8307, "properties": { "attached": "true", "facing": "south", @@ -255880,7 +256194,7 @@ } }, { - "id": 8298, + "id": 8308, "properties": { "attached": "true", "facing": "south", @@ -255888,7 +256202,7 @@ } }, { - "id": 8299, + "id": 8309, "properties": { "attached": "true", "facing": "west", @@ -255896,7 +256210,7 @@ } }, { - "id": 8300, + "id": 8310, "properties": { "attached": "true", "facing": "west", @@ -255904,7 +256218,7 @@ } }, { - "id": 8301, + "id": 8311, "properties": { "attached": "true", "facing": "east", @@ -255912,7 +256226,7 @@ } }, { - "id": 8302, + "id": 8312, "properties": { "attached": "true", "facing": "east", @@ -255920,7 +256234,7 @@ } }, { - "id": 8303, + "id": 8313, "properties": { "attached": "false", "facing": "north", @@ -255929,7 +256243,7 @@ }, { "default": true, - "id": 8304, + "id": 8314, "properties": { "attached": "false", "facing": "north", @@ -255937,7 +256251,7 @@ } }, { - "id": 8305, + "id": 8315, "properties": { "attached": "false", "facing": "south", @@ -255945,7 +256259,7 @@ } }, { - "id": 8306, + "id": 8316, "properties": { "attached": "false", "facing": "south", @@ -255953,7 +256267,7 @@ } }, { - "id": 8307, + "id": 8317, "properties": { "attached": "false", "facing": "west", @@ -255961,7 +256275,7 @@ } }, { - "id": 8308, + "id": 8318, "properties": { "attached": "false", "facing": "west", @@ -255969,7 +256283,7 @@ } }, { - "id": 8309, + "id": 8319, "properties": { "attached": "false", "facing": "east", @@ -255977,7 +256291,7 @@ } }, { - "id": 8310, + "id": 8320, "properties": { "attached": "false", "facing": "east", @@ -256001,13 +256315,13 @@ "states": [ { "default": true, - "id": 13836, + "id": 13846, "properties": { "waterlogged": "true" } }, { - "id": 13837, + "id": 13847, "properties": { "waterlogged": "false" } @@ -256023,7 +256337,7 @@ "states": [ { "default": true, - "id": 13821 + "id": 13831 } ] }, @@ -256042,13 +256356,13 @@ "states": [ { "default": true, - "id": 13856, + "id": 13866, "properties": { "waterlogged": "true" } }, { - "id": 13857, + "id": 13867, "properties": { "waterlogged": "false" } @@ -256076,56 +256390,56 @@ "states": [ { "default": true, - "id": 13906, + "id": 13916, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 13907, + "id": 13917, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 13908, + "id": 13918, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 13909, + "id": 13919, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 13910, + "id": 13920, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 13911, + "id": 13921, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 13912, + "id": 13922, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 13913, + "id": 13923, "properties": { "facing": "east", "waterlogged": "false" @@ -256141,7 +256455,7 @@ "states": [ { "default": true, - "id": 22094 + "id": 22109 } ] }, @@ -256163,21 +256477,21 @@ }, "states": [ { - "id": 22918, + "id": 22933, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22919, + "id": 22934, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22920, + "id": 22935, "properties": { "type": "bottom", "waterlogged": "true" @@ -256185,21 +256499,21 @@ }, { "default": true, - "id": 22921, + "id": 22936, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22922, + "id": 22937, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22923, + "id": 22938, "properties": { "type": "double", "waterlogged": "false" @@ -256240,7 +256554,7 @@ }, "states": [ { - "id": 22924, + "id": 22939, "properties": { "facing": "north", "half": "top", @@ -256249,7 +256563,7 @@ } }, { - "id": 22925, + "id": 22940, "properties": { "facing": "north", "half": "top", @@ -256258,7 +256572,7 @@ } }, { - "id": 22926, + "id": 22941, "properties": { "facing": "north", "half": "top", @@ -256267,7 +256581,7 @@ } }, { - "id": 22927, + "id": 22942, "properties": { "facing": "north", "half": "top", @@ -256276,7 +256590,7 @@ } }, { - "id": 22928, + "id": 22943, "properties": { "facing": "north", "half": "top", @@ -256285,7 +256599,7 @@ } }, { - "id": 22929, + "id": 22944, "properties": { "facing": "north", "half": "top", @@ -256294,7 +256608,7 @@ } }, { - "id": 22930, + "id": 22945, "properties": { "facing": "north", "half": "top", @@ -256303,7 +256617,7 @@ } }, { - "id": 22931, + "id": 22946, "properties": { "facing": "north", "half": "top", @@ -256312,7 +256626,7 @@ } }, { - "id": 22932, + "id": 22947, "properties": { "facing": "north", "half": "top", @@ -256321,7 +256635,7 @@ } }, { - "id": 22933, + "id": 22948, "properties": { "facing": "north", "half": "top", @@ -256330,7 +256644,7 @@ } }, { - "id": 22934, + "id": 22949, "properties": { "facing": "north", "half": "bottom", @@ -256340,250 +256654,250 @@ }, { "default": true, - "id": 22935, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22936, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22937, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22938, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22939, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22940, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22941, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22942, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22943, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22944, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22945, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22946, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22947, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22948, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22949, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { "id": 22950, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { "id": 22951, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 22952, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { "id": 22953, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 22954, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "shape": "inner_right", + "waterlogged": "false" } }, { "id": 22955, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 22956, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "shape": "outer_left", + "waterlogged": "false" } }, { "id": 22957, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "shape": "outer_right", + "waterlogged": "true" } }, { "id": 22958, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "shape": "outer_right", + "waterlogged": "false" } }, { "id": 22959, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 22960, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 22961, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 22962, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22963, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22964, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22965, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22966, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22967, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22968, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22969, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22970, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22971, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22972, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22973, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22974, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22975, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22976, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22977, "properties": { "facing": "south", "half": "bottom", @@ -256592,7 +256906,7 @@ } }, { - "id": 22963, + "id": 22978, "properties": { "facing": "south", "half": "bottom", @@ -256600,170 +256914,170 @@ "waterlogged": "false" } }, - { - "id": 22964, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22965, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22966, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22967, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22968, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22969, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22970, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22971, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22972, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22973, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22974, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22975, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22976, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22977, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22978, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 22979, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 22980, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 22981, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 22982, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22983, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22984, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22985, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22986, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22987, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22988, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22989, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22990, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22991, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22992, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22993, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22994, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22995, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22996, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22997, "properties": { "facing": "west", "half": "bottom", @@ -256772,7 +257086,7 @@ } }, { - "id": 22983, + "id": 22998, "properties": { "facing": "west", "half": "bottom", @@ -256780,152 +257094,152 @@ "waterlogged": "false" } }, - { - "id": 22984, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22985, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22986, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22987, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22988, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22989, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22990, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22991, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22992, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22993, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22994, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22995, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22996, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22997, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22998, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 22999, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 23000, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23001, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23002, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23003, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23004, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23005, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23006, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23007, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23008, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23009, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23010, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23011, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23012, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23013, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23014, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23015, "properties": { "facing": "east", "half": "bottom", @@ -256934,7 +257248,7 @@ } }, { - "id": 23001, + "id": 23016, "properties": { "facing": "east", "half": "bottom", @@ -256943,7 +257257,7 @@ } }, { - "id": 23002, + "id": 23017, "properties": { "facing": "east", "half": "bottom", @@ -256952,7 +257266,7 @@ } }, { - "id": 23003, + "id": 23018, "properties": { "facing": "east", "half": "bottom", @@ -256999,7 +257313,7 @@ }, "states": [ { - "id": 23004, + "id": 23019, "properties": { "east": "none", "north": "none", @@ -257010,7 +257324,7 @@ } }, { - "id": 23005, + "id": 23020, "properties": { "east": "none", "north": "none", @@ -257021,7 +257335,7 @@ } }, { - "id": 23006, + "id": 23021, "properties": { "east": "none", "north": "none", @@ -257033,178 +257347,13 @@ }, { "default": true, - "id": 23007, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23008, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23009, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23010, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23011, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23012, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23013, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23014, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23015, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23016, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23017, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23018, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23019, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23020, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23021, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { "id": 23022, "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -257213,9 +257362,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -257224,9 +257373,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -257235,9 +257384,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -257246,9 +257395,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -257257,9 +257406,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -257268,9 +257417,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -257279,9 +257428,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -257290,9 +257439,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -257301,9 +257450,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -257312,9 +257461,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -257323,9 +257472,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -257334,9 +257483,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -257345,9 +257494,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -257356,9 +257505,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -257367,9 +257516,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -257378,9 +257527,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -257389,9 +257538,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -257399,10 +257548,10 @@ "id": 23040, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -257410,10 +257559,10 @@ "id": 23041, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -257421,10 +257570,10 @@ "id": 23042, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -257432,10 +257581,10 @@ "id": 23043, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -257443,10 +257592,10 @@ "id": 23044, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -257454,10 +257603,10 @@ "id": 23045, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -257465,10 +257614,10 @@ "id": 23046, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -257476,10 +257625,10 @@ "id": 23047, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -257487,10 +257636,10 @@ "id": 23048, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -257498,10 +257647,10 @@ "id": 23049, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -257509,10 +257658,10 @@ "id": 23050, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -257520,10 +257669,10 @@ "id": 23051, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -257531,10 +257680,10 @@ "id": 23052, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -257542,10 +257691,10 @@ "id": 23053, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -257553,10 +257702,10 @@ "id": 23054, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -257565,9 +257714,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -257576,9 +257725,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -257587,9 +257736,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -257598,9 +257747,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -257609,9 +257758,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -257620,9 +257769,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -257631,9 +257780,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -257642,9 +257791,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -257653,9 +257802,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -257664,9 +257813,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -257675,9 +257824,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -257686,9 +257835,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -257697,9 +257846,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -257708,9 +257857,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -257719,9 +257868,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -257730,9 +257879,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -257741,9 +257890,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -257752,9 +257901,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -257763,9 +257912,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -257774,9 +257923,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -257785,9 +257934,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -257795,10 +257944,10 @@ "id": 23076, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -257806,10 +257955,10 @@ "id": 23077, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -257817,10 +257966,10 @@ "id": 23078, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -257828,10 +257977,10 @@ "id": 23079, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -257839,10 +257988,10 @@ "id": 23080, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -257850,10 +257999,10 @@ "id": 23081, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -257861,10 +258010,10 @@ "id": 23082, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -257872,10 +258021,10 @@ "id": 23083, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -257883,10 +258032,10 @@ "id": 23084, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -257894,10 +258043,10 @@ "id": 23085, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -257905,10 +258054,10 @@ "id": 23086, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -257916,10 +258065,10 @@ "id": 23087, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -257927,10 +258076,10 @@ "id": 23088, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -257938,10 +258087,10 @@ "id": 23089, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -257949,10 +258098,10 @@ "id": 23090, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -257961,9 +258110,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -257972,9 +258121,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -257983,9 +258132,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -257994,9 +258143,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -258005,9 +258154,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -258016,9 +258165,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -258027,9 +258176,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -258038,9 +258187,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -258049,9 +258198,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -258060,9 +258209,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -258071,9 +258220,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -258082,9 +258231,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -258093,9 +258242,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -258104,9 +258253,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -258115,9 +258264,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -258126,9 +258275,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -258137,9 +258286,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -258148,9 +258297,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -258159,14 +258308,179 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 23110, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23111, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23112, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23113, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23114, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23115, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23116, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23117, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23118, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23119, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23120, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23121, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23122, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23123, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23124, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23125, "properties": { "east": "none", "north": "tall", @@ -258177,7 +258491,7 @@ } }, { - "id": 23111, + "id": 23126, "properties": { "east": "none", "north": "tall", @@ -258187,179 +258501,14 @@ "west": "tall" } }, - { - "id": 23112, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23113, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23114, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23115, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23116, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23117, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23118, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23119, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23120, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23121, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23122, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23123, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23124, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23125, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23126, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 23127, "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -258368,9 +258517,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -258379,9 +258528,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -258390,9 +258539,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -258401,9 +258550,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -258412,9 +258561,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -258423,9 +258572,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -258434,9 +258583,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -258445,9 +258594,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -258456,9 +258605,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -258467,9 +258616,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -258478,9 +258627,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -258489,9 +258638,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -258500,9 +258649,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -258511,9 +258660,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -258522,9 +258671,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -258533,9 +258682,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -258544,9 +258693,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -258555,9 +258704,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -258566,9 +258715,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -258577,9 +258726,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -258587,10 +258736,10 @@ "id": 23148, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -258598,10 +258747,10 @@ "id": 23149, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -258609,10 +258758,10 @@ "id": 23150, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -258620,10 +258769,10 @@ "id": 23151, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -258631,10 +258780,10 @@ "id": 23152, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -258642,10 +258791,10 @@ "id": 23153, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -258653,10 +258802,10 @@ "id": 23154, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -258664,10 +258813,10 @@ "id": 23155, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -258675,10 +258824,10 @@ "id": 23156, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -258686,10 +258835,10 @@ "id": 23157, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -258697,10 +258846,10 @@ "id": 23158, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -258708,10 +258857,10 @@ "id": 23159, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -258719,10 +258868,10 @@ "id": 23160, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -258730,10 +258879,10 @@ "id": 23161, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -258741,10 +258890,10 @@ "id": 23162, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -258753,9 +258902,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -258764,9 +258913,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -258775,9 +258924,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -258786,9 +258935,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -258797,9 +258946,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -258808,9 +258957,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -258819,9 +258968,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -258830,9 +258979,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -258841,9 +258990,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -258852,9 +259001,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -258863,9 +259012,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -258874,9 +259023,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -258885,9 +259034,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -258896,9 +259045,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -258907,9 +259056,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -258918,9 +259067,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -258929,9 +259078,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -258940,9 +259089,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -258951,9 +259100,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -258962,9 +259111,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -258973,9 +259122,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -258983,10 +259132,10 @@ "id": 23184, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -258994,10 +259143,10 @@ "id": 23185, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -259005,10 +259154,10 @@ "id": 23186, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -259016,10 +259165,10 @@ "id": 23187, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -259027,10 +259176,10 @@ "id": 23188, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -259038,10 +259187,10 @@ "id": 23189, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -259049,10 +259198,10 @@ "id": 23190, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -259060,10 +259209,10 @@ "id": 23191, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -259071,10 +259220,10 @@ "id": 23192, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -259082,10 +259231,10 @@ "id": 23193, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -259093,10 +259242,10 @@ "id": 23194, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -259104,10 +259253,10 @@ "id": 23195, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -259115,10 +259264,10 @@ "id": 23196, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -259126,10 +259275,10 @@ "id": 23197, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -259137,10 +259286,10 @@ "id": 23198, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -259149,9 +259298,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -259160,9 +259309,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -259171,9 +259320,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -259182,9 +259331,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -259193,9 +259342,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -259204,9 +259353,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -259215,9 +259364,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -259226,9 +259375,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -259237,9 +259386,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -259248,9 +259397,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -259259,9 +259408,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -259270,9 +259419,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -259281,9 +259430,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -259292,9 +259441,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -259303,9 +259452,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -259314,9 +259463,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -259325,9 +259474,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -259336,9 +259485,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -259347,14 +259496,179 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 23218, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23219, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23220, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23221, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23222, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23223, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23224, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23225, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23226, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23227, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23228, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23229, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23230, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23231, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23232, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23233, "properties": { "east": "low", "north": "tall", @@ -259365,7 +259679,7 @@ } }, { - "id": 23219, + "id": 23234, "properties": { "east": "low", "north": "tall", @@ -259375,179 +259689,14 @@ "west": "tall" } }, - { - "id": 23220, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23221, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23222, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23223, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23224, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23225, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23226, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23227, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23228, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23229, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23230, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23231, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23232, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23233, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23234, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 23235, "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -259556,9 +259705,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -259567,9 +259716,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -259578,9 +259727,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -259589,9 +259738,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -259600,9 +259749,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -259611,9 +259760,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -259622,9 +259771,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -259633,9 +259782,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -259644,9 +259793,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -259655,9 +259804,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -259666,9 +259815,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -259677,9 +259826,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -259688,9 +259837,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -259699,9 +259848,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -259710,9 +259859,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -259721,9 +259870,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -259732,9 +259881,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -259743,14 +259892,179 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 23254, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23255, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23256, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23257, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23258, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23259, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23260, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23261, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23262, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23263, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23264, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23265, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23266, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23267, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23268, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23269, "properties": { "east": "tall", "north": "none", @@ -259761,7 +260075,7 @@ } }, { - "id": 23255, + "id": 23270, "properties": { "east": "tall", "north": "none", @@ -259771,179 +260085,14 @@ "west": "tall" } }, - { - "id": 23256, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23257, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23258, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23259, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23260, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23261, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23262, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23263, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23264, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23265, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23266, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23267, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23268, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23269, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23270, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 23271, "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -259952,9 +260101,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -259963,9 +260112,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -259974,9 +260123,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -259985,9 +260134,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -259996,9 +260145,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -260007,9 +260156,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -260018,9 +260167,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -260029,9 +260178,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -260040,9 +260189,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -260051,9 +260200,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -260062,9 +260211,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -260073,9 +260222,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -260084,9 +260233,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -260095,9 +260244,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -260106,9 +260255,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -260117,9 +260266,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -260128,9 +260277,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -260139,14 +260288,179 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 23290, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23291, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23292, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23293, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23294, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23295, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23296, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23297, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23298, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23299, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23300, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23301, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23302, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23303, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23304, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23305, "properties": { "east": "tall", "north": "low", @@ -260157,7 +260471,7 @@ } }, { - "id": 23291, + "id": 23306, "properties": { "east": "tall", "north": "low", @@ -260167,179 +260481,14 @@ "west": "tall" } }, - { - "id": 23292, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23293, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23294, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23295, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23296, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23297, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23298, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23299, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23300, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23301, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23302, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23303, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23304, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23305, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23306, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 23307, "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -260348,9 +260497,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -260359,9 +260508,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -260370,9 +260519,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -260381,9 +260530,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -260392,9 +260541,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -260403,9 +260552,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -260414,9 +260563,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -260425,9 +260574,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -260436,9 +260585,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -260447,9 +260596,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -260458,9 +260607,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -260469,9 +260618,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -260480,9 +260629,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -260491,14 +260640,179 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, { "id": 23322, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23323, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23324, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23325, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23326, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23327, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23328, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23329, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23330, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23331, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23332, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23333, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23334, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23335, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23336, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23337, "properties": { "east": "tall", "north": "tall", @@ -260509,7 +260823,7 @@ } }, { - "id": 23323, + "id": 23338, "properties": { "east": "tall", "north": "tall", @@ -260520,7 +260834,7 @@ } }, { - "id": 23324, + "id": 23339, "properties": { "east": "tall", "north": "tall", @@ -260531,7 +260845,7 @@ } }, { - "id": 23325, + "id": 23340, "properties": { "east": "tall", "north": "tall", @@ -260542,7 +260856,7 @@ } }, { - "id": 23326, + "id": 23341, "properties": { "east": "tall", "north": "tall", @@ -260553,7 +260867,7 @@ } }, { - "id": 23327, + "id": 23342, "properties": { "east": "tall", "north": "tall", @@ -260573,7 +260887,7 @@ "states": [ { "default": true, - "id": 22917 + "id": 22932 } ] }, @@ -260595,21 +260909,21 @@ }, "states": [ { - "id": 22095, + "id": 22110, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22096, + "id": 22111, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22097, + "id": 22112, "properties": { "type": "bottom", "waterlogged": "true" @@ -260617,21 +260931,21 @@ }, { "default": true, - "id": 22098, + "id": 22113, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22099, + "id": 22114, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22100, + "id": 22115, "properties": { "type": "double", "waterlogged": "false" @@ -260672,7 +260986,7 @@ }, "states": [ { - "id": 22101, + "id": 22116, "properties": { "facing": "north", "half": "top", @@ -260681,7 +260995,7 @@ } }, { - "id": 22102, + "id": 22117, "properties": { "facing": "north", "half": "top", @@ -260690,7 +261004,7 @@ } }, { - "id": 22103, + "id": 22118, "properties": { "facing": "north", "half": "top", @@ -260699,7 +261013,7 @@ } }, { - "id": 22104, + "id": 22119, "properties": { "facing": "north", "half": "top", @@ -260708,7 +261022,7 @@ } }, { - "id": 22105, + "id": 22120, "properties": { "facing": "north", "half": "top", @@ -260717,7 +261031,7 @@ } }, { - "id": 22106, + "id": 22121, "properties": { "facing": "north", "half": "top", @@ -260726,7 +261040,7 @@ } }, { - "id": 22107, + "id": 22122, "properties": { "facing": "north", "half": "top", @@ -260735,7 +261049,7 @@ } }, { - "id": 22108, + "id": 22123, "properties": { "facing": "north", "half": "top", @@ -260744,7 +261058,7 @@ } }, { - "id": 22109, + "id": 22124, "properties": { "facing": "north", "half": "top", @@ -260753,7 +261067,7 @@ } }, { - "id": 22110, + "id": 22125, "properties": { "facing": "north", "half": "top", @@ -260762,7 +261076,7 @@ } }, { - "id": 22111, + "id": 22126, "properties": { "facing": "north", "half": "bottom", @@ -260772,250 +261086,250 @@ }, { "default": true, - "id": 22112, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22113, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22114, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22115, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22116, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22117, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22118, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22119, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22120, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22121, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22122, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22123, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22124, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22125, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22126, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { "id": 22127, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { "id": 22128, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 22129, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { "id": 22130, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 22131, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "shape": "inner_right", + "waterlogged": "false" } }, { "id": 22132, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 22133, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "shape": "outer_left", + "waterlogged": "false" } }, { "id": 22134, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "shape": "outer_right", + "waterlogged": "true" } }, { "id": 22135, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "shape": "outer_right", + "waterlogged": "false" } }, { "id": 22136, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 22137, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 22138, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 22139, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22140, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22141, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22142, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22143, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22144, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22145, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22146, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22147, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22148, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22149, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22150, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22151, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22152, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22153, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22154, "properties": { "facing": "south", "half": "bottom", @@ -261024,7 +261338,7 @@ } }, { - "id": 22140, + "id": 22155, "properties": { "facing": "south", "half": "bottom", @@ -261032,170 +261346,170 @@ "waterlogged": "false" } }, - { - "id": 22141, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22142, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22143, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22144, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22145, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22146, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22147, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22148, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22149, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22150, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22151, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22152, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22153, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22154, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22155, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 22156, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 22157, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 22158, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 22159, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22160, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22161, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22162, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22163, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22164, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22165, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22166, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22167, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22168, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22169, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22170, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22171, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22172, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22173, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22174, "properties": { "facing": "west", "half": "bottom", @@ -261204,7 +261518,7 @@ } }, { - "id": 22160, + "id": 22175, "properties": { "facing": "west", "half": "bottom", @@ -261212,152 +261526,152 @@ "waterlogged": "false" } }, - { - "id": 22161, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22162, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22163, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22164, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22165, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22166, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22167, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22168, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22169, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22170, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22171, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22172, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22173, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22174, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22175, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 22176, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 22177, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22178, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22179, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22180, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22181, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22182, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22183, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22184, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22185, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22186, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22187, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22188, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22189, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22190, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22191, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22192, "properties": { "facing": "east", "half": "bottom", @@ -261366,7 +261680,7 @@ } }, { - "id": 22178, + "id": 22193, "properties": { "facing": "east", "half": "bottom", @@ -261375,7 +261689,7 @@ } }, { - "id": 22179, + "id": 22194, "properties": { "facing": "east", "half": "bottom", @@ -261384,7 +261698,7 @@ } }, { - "id": 22180, + "id": 22195, "properties": { "facing": "east", "half": "bottom", @@ -261431,7 +261745,7 @@ }, "states": [ { - "id": 22181, + "id": 22196, "properties": { "east": "none", "north": "none", @@ -261442,7 +261756,7 @@ } }, { - "id": 22182, + "id": 22197, "properties": { "east": "none", "north": "none", @@ -261453,7 +261767,7 @@ } }, { - "id": 22183, + "id": 22198, "properties": { "east": "none", "north": "none", @@ -261465,178 +261779,13 @@ }, { "default": true, - "id": 22184, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22185, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22186, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22187, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22188, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22189, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22190, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22191, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22192, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22193, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22194, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22195, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22196, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22197, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22198, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { "id": 22199, "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -261645,9 +261794,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -261656,9 +261805,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -261667,9 +261816,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -261678,9 +261827,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -261689,9 +261838,9 @@ "properties": { "east": "none", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -261700,9 +261849,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -261711,9 +261860,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -261722,9 +261871,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -261733,9 +261882,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -261744,9 +261893,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -261755,9 +261904,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -261766,9 +261915,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -261777,9 +261926,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -261788,9 +261937,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -261799,9 +261948,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -261810,9 +261959,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -261821,9 +261970,9 @@ "properties": { "east": "none", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -261831,10 +261980,10 @@ "id": 22217, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -261842,10 +261991,10 @@ "id": 22218, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -261853,10 +262002,10 @@ "id": 22219, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -261864,10 +262013,10 @@ "id": 22220, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -261875,10 +262024,10 @@ "id": 22221, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -261886,10 +262035,10 @@ "id": 22222, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -261897,10 +262046,10 @@ "id": 22223, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -261908,10 +262057,10 @@ "id": 22224, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -261919,10 +262068,10 @@ "id": 22225, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -261930,10 +262079,10 @@ "id": 22226, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -261941,10 +262090,10 @@ "id": 22227, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -261952,10 +262101,10 @@ "id": 22228, "properties": { "east": "none", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -261963,10 +262112,10 @@ "id": 22229, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -261974,10 +262123,10 @@ "id": 22230, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -261985,10 +262134,10 @@ "id": 22231, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -261997,9 +262146,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -262008,9 +262157,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -262019,9 +262168,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -262030,9 +262179,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -262041,9 +262190,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -262052,9 +262201,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -262063,9 +262212,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -262074,9 +262223,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -262085,9 +262234,9 @@ "properties": { "east": "none", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -262096,9 +262245,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -262107,9 +262256,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -262118,9 +262267,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -262129,9 +262278,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -262140,9 +262289,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -262151,9 +262300,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -262162,9 +262311,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -262173,9 +262322,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -262184,9 +262333,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -262195,9 +262344,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -262206,9 +262355,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -262217,9 +262366,9 @@ "properties": { "east": "none", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -262227,10 +262376,10 @@ "id": 22253, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -262238,10 +262387,10 @@ "id": 22254, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -262249,10 +262398,10 @@ "id": 22255, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -262260,10 +262409,10 @@ "id": 22256, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -262271,10 +262420,10 @@ "id": 22257, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -262282,10 +262431,10 @@ "id": 22258, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -262293,10 +262442,10 @@ "id": 22259, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -262304,10 +262453,10 @@ "id": 22260, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -262315,10 +262464,10 @@ "id": 22261, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -262326,10 +262475,10 @@ "id": 22262, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -262337,10 +262486,10 @@ "id": 22263, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -262348,10 +262497,10 @@ "id": 22264, "properties": { "east": "none", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -262359,10 +262508,10 @@ "id": 22265, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -262370,10 +262519,10 @@ "id": 22266, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -262381,10 +262530,10 @@ "id": 22267, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -262393,9 +262542,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -262404,9 +262553,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -262415,9 +262564,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -262426,9 +262575,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -262437,9 +262586,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -262448,9 +262597,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -262459,9 +262608,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -262470,9 +262619,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -262481,9 +262630,9 @@ "properties": { "east": "none", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -262492,9 +262641,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -262503,9 +262652,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -262514,9 +262663,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -262525,9 +262674,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -262536,9 +262685,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -262547,9 +262696,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -262558,9 +262707,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -262569,9 +262718,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -262580,9 +262729,9 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -262591,14 +262740,179 @@ "properties": { "east": "none", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 22287, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22288, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22289, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22290, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22291, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22292, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22293, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22294, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22295, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22296, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22297, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22298, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22299, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22300, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22301, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22302, "properties": { "east": "none", "north": "tall", @@ -262609,7 +262923,7 @@ } }, { - "id": 22288, + "id": 22303, "properties": { "east": "none", "north": "tall", @@ -262619,179 +262933,14 @@ "west": "tall" } }, - { - "id": 22289, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22290, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22291, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22292, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22293, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22294, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22295, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22296, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22297, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22298, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22299, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22300, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22301, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22302, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22303, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 22304, "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -262800,9 +262949,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -262811,9 +262960,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -262822,9 +262971,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -262833,9 +262982,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -262844,9 +262993,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -262855,9 +263004,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -262866,9 +263015,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -262877,9 +263026,9 @@ "properties": { "east": "low", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -262888,9 +263037,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -262899,9 +263048,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -262910,9 +263059,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -262921,9 +263070,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -262932,9 +263081,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -262943,9 +263092,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -262954,9 +263103,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -262965,9 +263114,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -262976,9 +263125,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -262987,9 +263136,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -262998,9 +263147,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -263009,9 +263158,9 @@ "properties": { "east": "low", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -263019,10 +263168,10 @@ "id": 22325, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -263030,10 +263179,10 @@ "id": 22326, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -263041,10 +263190,10 @@ "id": 22327, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -263052,10 +263201,10 @@ "id": 22328, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -263063,10 +263212,10 @@ "id": 22329, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -263074,10 +263223,10 @@ "id": 22330, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -263085,10 +263234,10 @@ "id": 22331, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -263096,10 +263245,10 @@ "id": 22332, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -263107,10 +263256,10 @@ "id": 22333, "properties": { "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -263118,10 +263267,10 @@ "id": 22334, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -263129,10 +263278,10 @@ "id": 22335, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -263140,10 +263289,10 @@ "id": 22336, "properties": { "east": "low", - "north": "low", - "south": "none", + "north": "none", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -263151,10 +263300,10 @@ "id": 22337, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -263162,10 +263311,10 @@ "id": 22338, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -263173,10 +263322,10 @@ "id": 22339, "properties": { "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -263185,9 +263334,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -263196,9 +263345,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -263207,9 +263356,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -263218,9 +263367,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -263229,9 +263378,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -263240,9 +263389,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -263251,9 +263400,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -263262,9 +263411,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -263273,9 +263422,9 @@ "properties": { "east": "low", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -263284,9 +263433,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -263295,9 +263444,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -263306,9 +263455,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -263317,9 +263466,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -263328,9 +263477,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -263339,9 +263488,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -263350,9 +263499,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -263361,9 +263510,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -263372,9 +263521,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -263383,9 +263532,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -263394,9 +263543,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -263405,9 +263554,9 @@ "properties": { "east": "low", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -263415,10 +263564,10 @@ "id": 22361, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -263426,10 +263575,10 @@ "id": 22362, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -263437,10 +263586,10 @@ "id": 22363, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -263448,10 +263597,10 @@ "id": 22364, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -263459,10 +263608,10 @@ "id": 22365, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -263470,10 +263619,10 @@ "id": 22366, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -263481,10 +263630,10 @@ "id": 22367, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -263492,10 +263641,10 @@ "id": 22368, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -263503,10 +263652,10 @@ "id": 22369, "properties": { "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -263514,10 +263663,10 @@ "id": 22370, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -263525,10 +263674,10 @@ "id": 22371, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -263536,10 +263685,10 @@ "id": 22372, "properties": { "east": "low", - "north": "tall", - "south": "none", + "north": "low", + "south": "tall", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -263547,10 +263696,10 @@ "id": 22373, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -263558,10 +263707,10 @@ "id": 22374, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -263569,10 +263718,10 @@ "id": 22375, "properties": { "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -263581,9 +263730,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -263592,9 +263741,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -263603,9 +263752,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -263614,9 +263763,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -263625,9 +263774,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -263636,9 +263785,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -263647,9 +263796,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -263658,9 +263807,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -263669,9 +263818,9 @@ "properties": { "east": "low", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -263680,9 +263829,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -263691,9 +263840,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -263702,9 +263851,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -263713,9 +263862,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -263724,9 +263873,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -263735,9 +263884,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -263746,9 +263895,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -263757,9 +263906,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -263768,9 +263917,9 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -263779,14 +263928,179 @@ "properties": { "east": "low", "north": "tall", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 22395, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22396, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22397, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22398, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22399, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22400, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22401, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22402, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22403, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22404, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22405, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22406, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22407, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22408, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22409, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22410, "properties": { "east": "low", "north": "tall", @@ -263797,7 +264111,7 @@ } }, { - "id": 22396, + "id": 22411, "properties": { "east": "low", "north": "tall", @@ -263807,179 +264121,14 @@ "west": "tall" } }, - { - "id": 22397, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22398, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22399, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22400, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22401, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22402, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22403, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22404, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22405, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22406, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22407, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22408, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22409, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22410, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22411, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 22412, "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -263988,9 +264137,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -263999,9 +264148,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -264010,9 +264159,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -264021,9 +264170,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -264032,9 +264181,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -264043,9 +264192,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -264054,9 +264203,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -264065,9 +264214,9 @@ "properties": { "east": "tall", "north": "none", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -264076,9 +264225,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -264087,9 +264236,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -264098,9 +264247,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -264109,9 +264258,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -264120,9 +264269,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -264131,9 +264280,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -264142,9 +264291,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -264153,9 +264302,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -264164,9 +264313,9 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -264175,14 +264324,179 @@ "properties": { "east": "tall", "north": "none", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 22431, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22432, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22433, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22434, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22435, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22436, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22437, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22438, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22439, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22440, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22441, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22442, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22443, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22444, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22445, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22446, "properties": { "east": "tall", "north": "none", @@ -264193,7 +264507,7 @@ } }, { - "id": 22432, + "id": 22447, "properties": { "east": "tall", "north": "none", @@ -264203,179 +264517,14 @@ "west": "tall" } }, - { - "id": 22433, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22434, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22435, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22436, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22437, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22438, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22439, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22440, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22441, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22442, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22443, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22444, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22445, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22446, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22447, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 22448, "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -264384,9 +264533,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -264395,9 +264544,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -264406,9 +264555,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -264417,9 +264566,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -264428,9 +264577,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -264439,9 +264588,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -264450,9 +264599,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -264461,9 +264610,9 @@ "properties": { "east": "tall", "north": "low", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -264472,9 +264621,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -264483,9 +264632,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -264494,9 +264643,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -264505,9 +264654,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -264516,9 +264665,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -264527,9 +264676,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -264538,9 +264687,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -264549,9 +264698,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -264560,9 +264709,9 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -264571,14 +264720,179 @@ "properties": { "east": "tall", "north": "low", - "south": "tall", + "south": "low", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, { "id": 22467, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22468, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22469, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22470, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22471, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22472, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22473, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22474, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22475, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22476, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22477, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22478, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22479, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22480, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22481, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22482, "properties": { "east": "tall", "north": "low", @@ -264589,7 +264903,7 @@ } }, { - "id": 22468, + "id": 22483, "properties": { "east": "tall", "north": "low", @@ -264599,179 +264913,14 @@ "west": "tall" } }, - { - "id": 22469, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22470, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22471, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22472, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22473, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22474, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22475, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22476, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22477, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22478, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22479, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22480, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22481, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22482, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22483, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, { "id": 22484, "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -264780,9 +264929,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -264791,9 +264940,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -264802,9 +264951,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, @@ -264813,9 +264962,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "low" } }, @@ -264824,9 +264973,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "tall" } }, @@ -264835,9 +264984,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -264846,9 +264995,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -264857,9 +265006,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "low", + "south": "none", "up": "false", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, @@ -264868,9 +265017,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, @@ -264879,9 +265028,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "low" } }, @@ -264890,9 +265039,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "tall" } }, @@ -264901,9 +265050,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "none" } }, @@ -264912,9 +265061,9 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "low" } }, @@ -264923,14 +265072,179 @@ "properties": { "east": "tall", "north": "tall", - "south": "tall", + "south": "low", "up": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "tall" } }, { "id": 22499, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22500, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22501, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22502, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22503, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22504, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22505, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22506, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22507, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22508, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22509, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22510, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22511, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22512, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22513, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22514, "properties": { "east": "tall", "north": "tall", @@ -264941,7 +265255,7 @@ } }, { - "id": 22500, + "id": 22515, "properties": { "east": "tall", "north": "tall", @@ -264952,7 +265266,7 @@ } }, { - "id": 22501, + "id": 22516, "properties": { "east": "tall", "north": "tall", @@ -264963,7 +265277,7 @@ } }, { - "id": 22502, + "id": 22517, "properties": { "east": "tall", "north": "tall", @@ -264974,7 +265288,7 @@ } }, { - "id": 22503, + "id": 22518, "properties": { "east": "tall", "north": "tall", @@ -264985,7 +265299,7 @@ } }, { - "id": 22504, + "id": 22519, "properties": { "east": "tall", "north": "tall", @@ -265018,84 +265332,84 @@ "states": [ { "default": true, - "id": 13801, - "properties": { - "eggs": "1", - "hatch": "0" - } - }, - { - "id": 13802, - "properties": { - "eggs": "1", - "hatch": "1" - } - }, - { - "id": 13803, - "properties": { - "eggs": "1", - "hatch": "2" - } - }, - { - "id": 13804, - "properties": { - "eggs": "2", - "hatch": "0" - } - }, - { - "id": 13805, - "properties": { - "eggs": "2", - "hatch": "1" - } - }, - { - "id": 13806, - "properties": { - "eggs": "2", - "hatch": "2" - } - }, - { - "id": 13807, - "properties": { - "eggs": "3", - "hatch": "0" - } - }, - { - "id": 13808, - "properties": { - "eggs": "3", - "hatch": "1" - } - }, - { - "id": 13809, - "properties": { - "eggs": "3", - "hatch": "2" - } - }, - { - "id": 13810, - "properties": { - "eggs": "4", - "hatch": "0" - } - }, - { "id": 13811, "properties": { - "eggs": "4", - "hatch": "1" + "eggs": "1", + "hatch": "0" } }, { "id": 13812, + "properties": { + "eggs": "1", + "hatch": "1" + } + }, + { + "id": 13813, + "properties": { + "eggs": "1", + "hatch": "2" + } + }, + { + "id": 13814, + "properties": { + "eggs": "2", + "hatch": "0" + } + }, + { + "id": 13815, + "properties": { + "eggs": "2", + "hatch": "1" + } + }, + { + "id": 13816, + "properties": { + "eggs": "2", + "hatch": "2" + } + }, + { + "id": 13817, + "properties": { + "eggs": "3", + "hatch": "0" + } + }, + { + "id": 13818, + "properties": { + "eggs": "3", + "hatch": "1" + } + }, + { + "id": 13819, + "properties": { + "eggs": "3", + "hatch": "2" + } + }, + { + "id": 13820, + "properties": { + "eggs": "4", + "hatch": "0" + } + }, + { + "id": 13821, + "properties": { + "eggs": "4", + "hatch": "1" + } + }, + { + "id": 13822, "properties": { "eggs": "4", "hatch": "2" @@ -265141,157 +265455,157 @@ "states": [ { "default": true, - "id": 19651, + "id": 19661, "properties": { "age": "0" } }, { - "id": 19652, + "id": 19662, "properties": { "age": "1" } }, { - "id": 19653, + "id": 19663, "properties": { "age": "2" } }, { - "id": 19654, + "id": 19664, "properties": { "age": "3" } }, { - "id": 19655, + "id": 19665, "properties": { "age": "4" } }, { - "id": 19656, + "id": 19666, "properties": { "age": "5" } }, { - "id": 19657, + "id": 19667, "properties": { "age": "6" } }, { - "id": 19658, + "id": 19668, "properties": { "age": "7" } }, { - "id": 19659, + "id": 19669, "properties": { "age": "8" } }, { - "id": 19660, + "id": 19670, "properties": { "age": "9" } }, { - "id": 19661, + "id": 19671, "properties": { "age": "10" } }, { - "id": 19662, + "id": 19672, "properties": { "age": "11" } }, { - "id": 19663, + "id": 19673, "properties": { "age": "12" } }, { - "id": 19664, + "id": 19674, "properties": { "age": "13" } }, { - "id": 19665, + "id": 19675, "properties": { "age": "14" } }, { - "id": 19666, + "id": 19676, "properties": { "age": "15" } }, { - "id": 19667, + "id": 19677, "properties": { "age": "16" } }, { - "id": 19668, + "id": 19678, "properties": { "age": "17" } }, { - "id": 19669, + "id": 19679, "properties": { "age": "18" } }, { - "id": 19670, + "id": 19680, "properties": { "age": "19" } }, { - "id": 19671, + "id": 19681, "properties": { "age": "20" } }, { - "id": 19672, + "id": 19682, "properties": { "age": "21" } }, { - "id": 19673, + "id": 19683, "properties": { "age": "22" } }, { - "id": 19674, + "id": 19684, "properties": { "age": "23" } }, { - "id": 19675, + "id": 19685, "properties": { "age": "24" } }, { - "id": 19676, + "id": 19686, "properties": { "age": "25" } @@ -265306,7 +265620,7 @@ "states": [ { "default": true, - "id": 19677 + "id": 19687 } ] }, @@ -265335,7 +265649,7 @@ }, "states": [ { - "id": 27663, + "id": 27710, "properties": { "facing": "north", "ominous": "true", @@ -265343,7 +265657,7 @@ } }, { - "id": 27664, + "id": 27711, "properties": { "facing": "north", "ominous": "true", @@ -265351,7 +265665,7 @@ } }, { - "id": 27665, + "id": 27712, "properties": { "facing": "north", "ominous": "true", @@ -265359,7 +265673,7 @@ } }, { - "id": 27666, + "id": 27713, "properties": { "facing": "north", "ominous": "true", @@ -265368,7 +265682,7 @@ }, { "default": true, - "id": 27667, + "id": 27714, "properties": { "facing": "north", "ominous": "false", @@ -265376,7 +265690,7 @@ } }, { - "id": 27668, + "id": 27715, "properties": { "facing": "north", "ominous": "false", @@ -265384,7 +265698,7 @@ } }, { - "id": 27669, + "id": 27716, "properties": { "facing": "north", "ominous": "false", @@ -265392,7 +265706,7 @@ } }, { - "id": 27670, + "id": 27717, "properties": { "facing": "north", "ominous": "false", @@ -265400,7 +265714,7 @@ } }, { - "id": 27671, + "id": 27718, "properties": { "facing": "south", "ominous": "true", @@ -265408,7 +265722,7 @@ } }, { - "id": 27672, + "id": 27719, "properties": { "facing": "south", "ominous": "true", @@ -265416,7 +265730,7 @@ } }, { - "id": 27673, + "id": 27720, "properties": { "facing": "south", "ominous": "true", @@ -265424,7 +265738,7 @@ } }, { - "id": 27674, + "id": 27721, "properties": { "facing": "south", "ominous": "true", @@ -265432,7 +265746,7 @@ } }, { - "id": 27675, + "id": 27722, "properties": { "facing": "south", "ominous": "false", @@ -265440,7 +265754,7 @@ } }, { - "id": 27676, + "id": 27723, "properties": { "facing": "south", "ominous": "false", @@ -265448,7 +265762,7 @@ } }, { - "id": 27677, + "id": 27724, "properties": { "facing": "south", "ominous": "false", @@ -265456,7 +265770,7 @@ } }, { - "id": 27678, + "id": 27725, "properties": { "facing": "south", "ominous": "false", @@ -265464,7 +265778,7 @@ } }, { - "id": 27679, + "id": 27726, "properties": { "facing": "west", "ominous": "true", @@ -265472,7 +265786,7 @@ } }, { - "id": 27680, + "id": 27727, "properties": { "facing": "west", "ominous": "true", @@ -265480,7 +265794,7 @@ } }, { - "id": 27681, + "id": 27728, "properties": { "facing": "west", "ominous": "true", @@ -265488,7 +265802,7 @@ } }, { - "id": 27682, + "id": 27729, "properties": { "facing": "west", "ominous": "true", @@ -265496,7 +265810,7 @@ } }, { - "id": 27683, + "id": 27730, "properties": { "facing": "west", "ominous": "false", @@ -265504,7 +265818,7 @@ } }, { - "id": 27684, + "id": 27731, "properties": { "facing": "west", "ominous": "false", @@ -265512,7 +265826,7 @@ } }, { - "id": 27685, + "id": 27732, "properties": { "facing": "west", "ominous": "false", @@ -265520,7 +265834,7 @@ } }, { - "id": 27686, + "id": 27733, "properties": { "facing": "west", "ominous": "false", @@ -265528,7 +265842,7 @@ } }, { - "id": 27687, + "id": 27734, "properties": { "facing": "east", "ominous": "true", @@ -265536,7 +265850,7 @@ } }, { - "id": 27688, + "id": 27735, "properties": { "facing": "east", "ominous": "true", @@ -265544,7 +265858,7 @@ } }, { - "id": 27689, + "id": 27736, "properties": { "facing": "east", "ominous": "true", @@ -265552,7 +265866,7 @@ } }, { - "id": 27690, + "id": 27737, "properties": { "facing": "east", "ominous": "true", @@ -265560,7 +265874,7 @@ } }, { - "id": 27691, + "id": 27738, "properties": { "facing": "east", "ominous": "false", @@ -265568,7 +265882,7 @@ } }, { - "id": 27692, + "id": 27739, "properties": { "facing": "east", "ominous": "false", @@ -265576,7 +265890,7 @@ } }, { - "id": 27693, + "id": 27740, "properties": { "facing": "east", "ominous": "false", @@ -265584,7 +265898,7 @@ } }, { - "id": 27694, + "id": 27741, "properties": { "facing": "east", "ominous": "false", @@ -265607,20 +265921,20 @@ }, "states": [ { - "id": 27579, + "id": 27626, "properties": { "axis": "x" } }, { "default": true, - "id": 27580, + "id": 27627, "properties": { "axis": "y" } }, { - "id": 27581, + "id": 27628, "properties": { "axis": "z" } @@ -265655,113 +265969,13 @@ ] }, "states": [ - { - "id": 7070, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 7071, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 7072, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 7073, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 7074, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 7075, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 7076, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 7077, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 7078, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 7079, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, { "id": 7080, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, @@ -265769,9 +265983,9 @@ "id": 7081, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "false" } }, @@ -265779,9 +265993,9 @@ "id": 7082, "properties": { "east": "true", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "true" } }, @@ -265789,14 +266003,114 @@ "id": 7083, "properties": { "east": "true", - "north": "false", - "south": "false", - "up": "true", + "north": "true", + "south": "true", + "up": "false", "west": "false" } }, { "id": 7084, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7085, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7086, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7087, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7088, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7089, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7090, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7091, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7092, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7093, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7094, "properties": { "east": "true", "north": "false", @@ -265806,7 +266120,7 @@ } }, { - "id": 7085, + "id": 7095, "properties": { "east": "true", "north": "false", @@ -265815,118 +266129,118 @@ "west": "false" } }, - { - "id": 7086, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 7087, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 7088, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 7089, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 7090, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 7091, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 7092, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 7093, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 7094, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 7095, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, { "id": 7096, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "false", + "up": "true", "west": "true" } }, { "id": 7097, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7098, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7099, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7100, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7101, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7102, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7103, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7104, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7105, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7106, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7107, "properties": { "east": "false", "north": "false", @@ -265936,7 +266250,7 @@ } }, { - "id": 7098, + "id": 7108, "properties": { "east": "false", "north": "false", @@ -265946,7 +266260,7 @@ } }, { - "id": 7099, + "id": 7109, "properties": { "east": "false", "north": "false", @@ -265956,7 +266270,7 @@ } }, { - "id": 7100, + "id": 7110, "properties": { "east": "false", "north": "false", @@ -265967,7 +266281,7 @@ }, { "default": true, - "id": 7101, + "id": 7111, "properties": { "east": "false", "north": "false", @@ -265986,7 +266300,7 @@ "states": [ { "default": true, - "id": 13971 + "id": 13981 } ] }, @@ -266007,25 +266321,25 @@ "states": [ { "default": true, - "id": 2399, + "id": 2402, "properties": { "facing": "north" } }, { - "id": 2400, + "id": 2403, "properties": { "facing": "south" } }, { - "id": 2401, + "id": 2404, "properties": { "facing": "west" } }, { - "id": 2402, + "id": 2405, "properties": { "facing": "east" } @@ -266058,7 +266372,7 @@ }, "states": [ { - "id": 20137, + "id": 20147, "properties": { "face": "floor", "facing": "north", @@ -266066,7 +266380,7 @@ } }, { - "id": 20138, + "id": 20148, "properties": { "face": "floor", "facing": "north", @@ -266074,7 +266388,7 @@ } }, { - "id": 20139, + "id": 20149, "properties": { "face": "floor", "facing": "south", @@ -266082,7 +266396,7 @@ } }, { - "id": 20140, + "id": 20150, "properties": { "face": "floor", "facing": "south", @@ -266090,7 +266404,7 @@ } }, { - "id": 20141, + "id": 20151, "properties": { "face": "floor", "facing": "west", @@ -266098,7 +266412,7 @@ } }, { - "id": 20142, + "id": 20152, "properties": { "face": "floor", "facing": "west", @@ -266106,7 +266420,7 @@ } }, { - "id": 20143, + "id": 20153, "properties": { "face": "floor", "facing": "east", @@ -266114,7 +266428,7 @@ } }, { - "id": 20144, + "id": 20154, "properties": { "face": "floor", "facing": "east", @@ -266122,7 +266436,7 @@ } }, { - "id": 20145, + "id": 20155, "properties": { "face": "wall", "facing": "north", @@ -266131,95 +266445,95 @@ }, { "default": true, - "id": 20146, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 20147, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 20148, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 20149, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 20150, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 20151, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 20152, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 20153, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 20154, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 20155, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { "id": 20156, "properties": { - "face": "ceiling", - "facing": "south", + "face": "wall", + "facing": "north", "powered": "false" } }, { "id": 20157, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 20158, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 20159, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 20160, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 20161, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 20162, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 20163, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 20164, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 20165, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 20166, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 20167, "properties": { "face": "ceiling", "facing": "west", @@ -266227,7 +266541,7 @@ } }, { - "id": 20158, + "id": 20168, "properties": { "face": "ceiling", "facing": "west", @@ -266235,7 +266549,7 @@ } }, { - "id": 20159, + "id": 20169, "properties": { "face": "ceiling", "facing": "east", @@ -266243,7 +266557,7 @@ } }, { - "id": 20160, + "id": 20170, "properties": { "face": "ceiling", "facing": "east", @@ -266283,108 +266597,108 @@ ] }, "states": [ - { - "id": 20225, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 20226, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 20227, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 20228, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 20229, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 20230, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 20231, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 20232, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 20233, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 20234, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 20235, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 20236, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 20237, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 20238, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 20239, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 20240, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 20241, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 20242, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 20243, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 20244, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 20245, "properties": { "facing": "north", "half": "lower", @@ -266395,152 +266709,52 @@ }, { "default": true, - "id": 20236, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 20237, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 20238, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 20239, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 20240, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 20241, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 20242, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 20243, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 20244, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 20245, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { "id": 20246, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 20247, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 20248, "properties": { - "facing": "south", - "half": "upper", + "facing": "north", + "half": "lower", "hinge": "right", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 20249, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "true" } }, { "id": 20250, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "true", + "hinge": "right", + "open": "false", "powered": "false" } }, @@ -266548,9 +266762,9 @@ "id": 20251, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -266558,9 +266772,9 @@ "id": 20252, "properties": { "facing": "south", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -266568,9 +266782,9 @@ "id": 20253, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -266578,14 +266792,114 @@ "id": 20254, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 20255, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 20256, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 20257, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 20258, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 20259, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 20260, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 20261, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 20262, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 20263, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 20264, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 20265, "properties": { "facing": "south", "half": "lower", @@ -266595,7 +266909,7 @@ } }, { - "id": 20256, + "id": 20266, "properties": { "facing": "south", "half": "lower", @@ -266604,113 +266918,13 @@ "powered": "false" } }, - { - "id": 20257, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 20258, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 20259, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 20260, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 20261, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 20262, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 20263, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 20264, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 20265, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 20266, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 20267, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -266718,9 +266932,9 @@ "id": 20268, "properties": { "facing": "west", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, @@ -266728,9 +266942,9 @@ "id": 20269, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "true" } }, @@ -266738,14 +266952,114 @@ "id": 20270, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", + "half": "upper", + "hinge": "left", + "open": "false", "powered": "false" } }, { "id": 20271, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 20272, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 20273, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 20274, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 20275, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 20276, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 20277, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 20278, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 20279, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 20280, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 20281, "properties": { "facing": "west", "half": "lower", @@ -266755,7 +267069,7 @@ } }, { - "id": 20272, + "id": 20282, "properties": { "facing": "west", "half": "lower", @@ -266764,113 +267078,13 @@ "powered": "false" } }, - { - "id": 20273, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 20274, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 20275, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 20276, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 20277, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 20278, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 20279, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 20280, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 20281, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 20282, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, { "id": 20283, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "true" } }, @@ -266878,14 +267092,114 @@ "id": 20284, "properties": { "facing": "east", - "half": "lower", + "half": "upper", "hinge": "left", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 20285, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 20286, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 20287, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 20288, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 20289, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 20290, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 20291, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 20292, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 20293, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 20294, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 20295, "properties": { "facing": "east", "half": "lower", @@ -266895,7 +267209,7 @@ } }, { - "id": 20286, + "id": 20296, "properties": { "facing": "east", "half": "lower", @@ -266905,7 +267219,7 @@ } }, { - "id": 20287, + "id": 20297, "properties": { "facing": "east", "half": "lower", @@ -266915,7 +267229,7 @@ } }, { - "id": 20288, + "id": 20298, "properties": { "facing": "east", "half": "lower", @@ -266954,113 +267268,13 @@ ] }, "states": [ - { - "id": 19729, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 19730, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 19731, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 19732, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 19733, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 19734, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 19735, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 19736, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 19737, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 19738, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 19739, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -267068,9 +267282,9 @@ "id": 19740, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -267078,9 +267292,9 @@ "id": 19741, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -267088,14 +267302,114 @@ "id": 19742, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 19743, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 19744, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 19745, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 19746, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 19747, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 19748, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 19749, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 19750, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 19751, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 19752, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 19753, "properties": { "east": "true", "north": "false", @@ -267105,7 +267419,7 @@ } }, { - "id": 19744, + "id": 19754, "properties": { "east": "true", "north": "false", @@ -267114,118 +267428,118 @@ "west": "false" } }, - { - "id": 19745, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 19746, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 19747, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 19748, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 19749, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 19750, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 19751, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 19752, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 19753, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 19754, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 19755, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 19756, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 19757, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 19758, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 19759, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 19760, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 19761, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 19762, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 19763, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 19764, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 19765, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 19766, "properties": { "east": "false", "north": "false", @@ -267235,7 +267549,7 @@ } }, { - "id": 19757, + "id": 19767, "properties": { "east": "false", "north": "false", @@ -267245,7 +267559,7 @@ } }, { - "id": 19758, + "id": 19768, "properties": { "east": "false", "north": "false", @@ -267255,7 +267569,7 @@ } }, { - "id": 19759, + "id": 19769, "properties": { "east": "false", "north": "false", @@ -267266,7 +267580,7 @@ }, { "default": true, - "id": 19760, + "id": 19770, "properties": { "east": "false", "north": "false", @@ -267305,7 +267619,7 @@ }, "states": [ { - "id": 19921, + "id": 19931, "properties": { "facing": "north", "in_wall": "true", @@ -267314,7 +267628,7 @@ } }, { - "id": 19922, + "id": 19932, "properties": { "facing": "north", "in_wall": "true", @@ -267323,7 +267637,7 @@ } }, { - "id": 19923, + "id": 19933, "properties": { "facing": "north", "in_wall": "true", @@ -267332,7 +267646,7 @@ } }, { - "id": 19924, + "id": 19934, "properties": { "facing": "north", "in_wall": "true", @@ -267341,7 +267655,7 @@ } }, { - "id": 19925, + "id": 19935, "properties": { "facing": "north", "in_wall": "false", @@ -267350,7 +267664,7 @@ } }, { - "id": 19926, + "id": 19936, "properties": { "facing": "north", "in_wall": "false", @@ -267359,7 +267673,7 @@ } }, { - "id": 19927, + "id": 19937, "properties": { "facing": "north", "in_wall": "false", @@ -267369,7 +267683,7 @@ }, { "default": true, - "id": 19928, + "id": 19938, "properties": { "facing": "north", "in_wall": "false", @@ -267377,143 +267691,143 @@ "powered": "false" } }, - { - "id": 19929, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 19930, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 19931, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 19932, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 19933, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 19934, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 19935, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 19936, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 19937, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 19938, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, { "id": 19939, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 19940, "properties": { - "facing": "west", + "facing": "south", "in_wall": "true", - "open": "false", + "open": "true", "powered": "false" } }, { "id": 19941, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "true" } }, { "id": 19942, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", + "facing": "south", + "in_wall": "true", + "open": "false", "powered": "false" } }, { "id": 19943, "properties": { - "facing": "west", + "facing": "south", "in_wall": "false", - "open": "false", + "open": "true", "powered": "true" } }, { "id": 19944, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 19945, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 19946, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 19947, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 19948, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 19949, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 19950, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 19951, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 19952, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 19953, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 19954, "properties": { "facing": "west", "in_wall": "false", @@ -267522,7 +267836,7 @@ } }, { - "id": 19945, + "id": 19955, "properties": { "facing": "east", "in_wall": "true", @@ -267531,7 +267845,7 @@ } }, { - "id": 19946, + "id": 19956, "properties": { "facing": "east", "in_wall": "true", @@ -267540,7 +267854,7 @@ } }, { - "id": 19947, + "id": 19957, "properties": { "facing": "east", "in_wall": "true", @@ -267549,7 +267863,7 @@ } }, { - "id": 19948, + "id": 19958, "properties": { "facing": "east", "in_wall": "true", @@ -267558,7 +267872,7 @@ } }, { - "id": 19949, + "id": 19959, "properties": { "facing": "east", "in_wall": "false", @@ -267567,7 +267881,7 @@ } }, { - "id": 19950, + "id": 19960, "properties": { "facing": "east", "in_wall": "false", @@ -267576,7 +267890,7 @@ } }, { - "id": 19951, + "id": 19961, "properties": { "facing": "east", "in_wall": "false", @@ -267585,7 +267899,7 @@ } }, { - "id": 19952, + "id": 19962, "properties": { "facing": "east", "in_wall": "false", @@ -267605,7 +267919,7 @@ "states": [ { "default": true, - "id": 19605 + "id": 19615 } ] }, @@ -267644,240 +267958,240 @@ ] }, "states": [ - { - "id": 5505, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5506, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5507, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5508, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5509, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5510, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5511, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5512, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5513, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, { "id": 5514, "properties": { "attached": "true", - "rotation": "4", - "waterlogged": "false" + "rotation": "0", + "waterlogged": "true" } }, { "id": 5515, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "true" + "rotation": "0", + "waterlogged": "false" } }, { "id": 5516, "properties": { "attached": "true", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5517, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5518, "properties": { "attached": "true", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5519, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5520, "properties": { "attached": "true", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5521, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5522, "properties": { "attached": "true", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5523, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5524, "properties": { "attached": "true", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5525, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5526, "properties": { "attached": "true", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5527, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5528, "properties": { "attached": "true", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5529, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5530, "properties": { "attached": "true", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5531, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5532, "properties": { "attached": "true", - "rotation": "13", - "waterlogged": "false" + "rotation": "9", + "waterlogged": "true" } }, { "id": 5533, "properties": { "attached": "true", - "rotation": "14", - "waterlogged": "true" + "rotation": "9", + "waterlogged": "false" } }, { "id": 5534, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5535, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5536, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5537, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5538, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5539, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5540, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5541, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5542, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5543, "properties": { "attached": "true", "rotation": "14", @@ -267885,7 +268199,7 @@ } }, { - "id": 5535, + "id": 5544, "properties": { "attached": "true", "rotation": "15", @@ -267893,7 +268207,7 @@ } }, { - "id": 5536, + "id": 5545, "properties": { "attached": "true", "rotation": "15", @@ -267901,7 +268215,7 @@ } }, { - "id": 5537, + "id": 5546, "properties": { "attached": "false", "rotation": "0", @@ -267910,215 +268224,215 @@ }, { "default": true, - "id": 5538, + "id": 5547, "properties": { "attached": "false", "rotation": "0", "waterlogged": "false" } }, - { - "id": 5539, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5540, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5541, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5542, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5543, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5544, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5545, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5546, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5547, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, { "id": 5548, "properties": { "attached": "false", - "rotation": "5", - "waterlogged": "false" + "rotation": "1", + "waterlogged": "true" } }, { "id": 5549, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "true" + "rotation": "1", + "waterlogged": "false" } }, { "id": 5550, "properties": { "attached": "false", - "rotation": "6", - "waterlogged": "false" + "rotation": "2", + "waterlogged": "true" } }, { "id": 5551, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "true" + "rotation": "2", + "waterlogged": "false" } }, { "id": 5552, "properties": { "attached": "false", - "rotation": "7", - "waterlogged": "false" + "rotation": "3", + "waterlogged": "true" } }, { "id": 5553, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "true" + "rotation": "3", + "waterlogged": "false" } }, { "id": 5554, "properties": { "attached": "false", - "rotation": "8", - "waterlogged": "false" + "rotation": "4", + "waterlogged": "true" } }, { "id": 5555, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "true" + "rotation": "4", + "waterlogged": "false" } }, { "id": 5556, "properties": { "attached": "false", - "rotation": "9", - "waterlogged": "false" + "rotation": "5", + "waterlogged": "true" } }, { "id": 5557, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "true" + "rotation": "5", + "waterlogged": "false" } }, { "id": 5558, "properties": { "attached": "false", - "rotation": "10", - "waterlogged": "false" + "rotation": "6", + "waterlogged": "true" } }, { "id": 5559, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "true" + "rotation": "6", + "waterlogged": "false" } }, { "id": 5560, "properties": { "attached": "false", - "rotation": "11", - "waterlogged": "false" + "rotation": "7", + "waterlogged": "true" } }, { "id": 5561, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "true" + "rotation": "7", + "waterlogged": "false" } }, { "id": 5562, "properties": { "attached": "false", - "rotation": "12", - "waterlogged": "false" + "rotation": "8", + "waterlogged": "true" } }, { "id": 5563, "properties": { "attached": "false", - "rotation": "13", - "waterlogged": "true" + "rotation": "8", + "waterlogged": "false" } }, { "id": 5564, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5565, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5566, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5567, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5568, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5569, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5570, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5571, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5572, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5573, "properties": { "attached": "false", "rotation": "13", @@ -268126,7 +268440,7 @@ } }, { - "id": 5565, + "id": 5574, "properties": { "attached": "false", "rotation": "14", @@ -268134,7 +268448,7 @@ } }, { - "id": 5566, + "id": 5575, "properties": { "attached": "false", "rotation": "14", @@ -268142,7 +268456,7 @@ } }, { - "id": 5567, + "id": 5576, "properties": { "attached": "false", "rotation": "15", @@ -268150,7 +268464,7 @@ } }, { - "id": 5568, + "id": 5577, "properties": { "attached": "false", "rotation": "15", @@ -268173,20 +268487,20 @@ }, "states": [ { - "id": 19598, + "id": 19608, "properties": { "axis": "x" } }, { "default": true, - "id": 19599, + "id": 19609, "properties": { "axis": "y" } }, { - "id": 19600, + "id": 19610, "properties": { "axis": "z" } @@ -268201,7 +268515,7 @@ "states": [ { "default": true, - "id": 19604 + "id": 19614 } ] }, @@ -268213,7 +268527,7 @@ "states": [ { "default": true, - "id": 19680 + "id": 19690 } ] }, @@ -268231,14 +268545,14 @@ }, "states": [ { - "id": 19695, + "id": 19705, "properties": { "powered": "true" } }, { "default": true, - "id": 19696, + "id": 19706, "properties": { "powered": "false" } @@ -268253,7 +268567,7 @@ "states": [ { "default": true, - "id": 19607 + "id": 19617 } ] }, @@ -268289,7 +268603,7 @@ }, "states": [ { - "id": 20321, + "id": 20331, "properties": { "rotation": "0", "waterlogged": "true" @@ -268297,217 +268611,217 @@ }, { "default": true, - "id": 20322, + "id": 20332, "properties": { "rotation": "0", "waterlogged": "false" } }, - { - "id": 20323, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 20324, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 20325, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 20326, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 20327, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 20328, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 20329, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 20330, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 20331, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 20332, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, { "id": 20333, "properties": { - "rotation": "6", + "rotation": "1", "waterlogged": "true" } }, { "id": 20334, "properties": { - "rotation": "6", + "rotation": "1", "waterlogged": "false" } }, { "id": 20335, "properties": { - "rotation": "7", + "rotation": "2", "waterlogged": "true" } }, { "id": 20336, "properties": { - "rotation": "7", + "rotation": "2", "waterlogged": "false" } }, { "id": 20337, "properties": { - "rotation": "8", + "rotation": "3", "waterlogged": "true" } }, { "id": 20338, "properties": { - "rotation": "8", + "rotation": "3", "waterlogged": "false" } }, { "id": 20339, "properties": { - "rotation": "9", + "rotation": "4", "waterlogged": "true" } }, { "id": 20340, "properties": { - "rotation": "9", + "rotation": "4", "waterlogged": "false" } }, { "id": 20341, "properties": { - "rotation": "10", + "rotation": "5", "waterlogged": "true" } }, { "id": 20342, "properties": { - "rotation": "10", + "rotation": "5", "waterlogged": "false" } }, { "id": 20343, "properties": { - "rotation": "11", + "rotation": "6", "waterlogged": "true" } }, { "id": 20344, "properties": { - "rotation": "11", + "rotation": "6", "waterlogged": "false" } }, { "id": 20345, "properties": { - "rotation": "12", + "rotation": "7", "waterlogged": "true" } }, { "id": 20346, "properties": { - "rotation": "12", + "rotation": "7", "waterlogged": "false" } }, { "id": 20347, "properties": { - "rotation": "13", + "rotation": "8", "waterlogged": "true" } }, { "id": 20348, "properties": { - "rotation": "13", + "rotation": "8", "waterlogged": "false" } }, { "id": 20349, "properties": { - "rotation": "14", + "rotation": "9", "waterlogged": "true" } }, { "id": 20350, "properties": { - "rotation": "14", + "rotation": "9", "waterlogged": "false" } }, { "id": 20351, "properties": { - "rotation": "15", + "rotation": "10", "waterlogged": "true" } }, { "id": 20352, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 20353, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 20354, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 20355, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 20356, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 20357, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 20358, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 20359, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 20360, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 20361, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 20362, "properties": { "rotation": "15", "waterlogged": "false" @@ -268533,21 +268847,21 @@ }, "states": [ { - "id": 19687, + "id": 19697, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 19688, + "id": 19698, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 19689, + "id": 19699, "properties": { "type": "bottom", "waterlogged": "true" @@ -268555,21 +268869,21 @@ }, { "default": true, - "id": 19690, + "id": 19700, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 19691, + "id": 19701, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 19692, + "id": 19702, "properties": { "type": "double", "waterlogged": "false" @@ -268609,98 +268923,98 @@ ] }, "states": [ - { - "id": 20033, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20034, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20035, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20036, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20037, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20038, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20039, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20040, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20041, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 20042, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, { "id": 20043, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20044, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20045, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20046, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20047, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20048, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20049, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20050, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20051, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20052, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20053, "properties": { "facing": "north", "half": "bottom", @@ -268710,100 +269024,10 @@ }, { "default": true, - "id": 20044, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20045, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20046, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20047, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20048, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20049, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20050, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20051, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 20052, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 20053, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { "id": 20054, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -268811,8 +269035,8 @@ { "id": 20055, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -268820,8 +269044,8 @@ { "id": 20056, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -268829,8 +269053,8 @@ { "id": 20057, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -268838,8 +269062,8 @@ { "id": 20058, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -268847,8 +269071,8 @@ { "id": 20059, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -268856,8 +269080,8 @@ { "id": 20060, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -268865,8 +269089,8 @@ { "id": 20061, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -268874,8 +269098,8 @@ { "id": 20062, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -268884,7 +269108,7 @@ "id": 20063, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -268893,7 +269117,7 @@ "id": 20064, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -268902,7 +269126,7 @@ "id": 20065, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -268911,7 +269135,7 @@ "id": 20066, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -268920,7 +269144,7 @@ "id": 20067, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -268929,7 +269153,7 @@ "id": 20068, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -268938,7 +269162,7 @@ "id": 20069, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -268947,7 +269171,7 @@ "id": 20070, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -268956,7 +269180,7 @@ "id": 20071, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -268965,7 +269189,7 @@ "id": 20072, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -268973,8 +269197,8 @@ { "id": 20073, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -268982,8 +269206,8 @@ { "id": 20074, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -268991,8 +269215,8 @@ { "id": 20075, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -269000,8 +269224,8 @@ { "id": 20076, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -269009,8 +269233,8 @@ { "id": 20077, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -269018,8 +269242,8 @@ { "id": 20078, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -269027,8 +269251,8 @@ { "id": 20079, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -269036,8 +269260,8 @@ { "id": 20080, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -269045,8 +269269,8 @@ { "id": 20081, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -269054,8 +269278,8 @@ { "id": 20082, "properties": { - "facing": "west", - "half": "top", + "facing": "south", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -269064,7 +269288,7 @@ "id": 20083, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -269073,7 +269297,7 @@ "id": 20084, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -269082,7 +269306,7 @@ "id": 20085, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -269091,7 +269315,7 @@ "id": 20086, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -269100,7 +269324,7 @@ "id": 20087, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -269109,7 +269333,7 @@ "id": 20088, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -269118,7 +269342,7 @@ "id": 20089, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -269127,7 +269351,7 @@ "id": 20090, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -269136,7 +269360,7 @@ "id": 20091, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } @@ -269145,7 +269369,7 @@ "id": 20092, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "false" } @@ -269153,8 +269377,8 @@ { "id": 20093, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "true" } @@ -269162,8 +269386,8 @@ { "id": 20094, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "straight", "waterlogged": "false" } @@ -269171,8 +269395,8 @@ { "id": 20095, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "true" } @@ -269180,8 +269404,8 @@ { "id": 20096, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_left", "waterlogged": "false" } @@ -269189,8 +269413,8 @@ { "id": 20097, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "true" } @@ -269198,8 +269422,8 @@ { "id": 20098, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "inner_right", "waterlogged": "false" } @@ -269207,8 +269431,8 @@ { "id": 20099, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "true" } @@ -269216,8 +269440,8 @@ { "id": 20100, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_left", "waterlogged": "false" } @@ -269225,8 +269449,8 @@ { "id": 20101, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "true" } @@ -269234,8 +269458,8 @@ { "id": 20102, "properties": { - "facing": "east", - "half": "top", + "facing": "west", + "half": "bottom", "shape": "outer_right", "waterlogged": "false" } @@ -269244,7 +269468,7 @@ "id": 20103, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "true" } @@ -269253,7 +269477,7 @@ "id": 20104, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "straight", "waterlogged": "false" } @@ -269262,7 +269486,7 @@ "id": 20105, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "true" } @@ -269271,7 +269495,7 @@ "id": 20106, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_left", "waterlogged": "false" } @@ -269280,7 +269504,7 @@ "id": 20107, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "true" } @@ -269289,7 +269513,7 @@ "id": 20108, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "inner_right", "waterlogged": "false" } @@ -269298,7 +269522,7 @@ "id": 20109, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "true" } @@ -269307,7 +269531,7 @@ "id": 20110, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_left", "waterlogged": "false" } @@ -269316,13 +269540,103 @@ "id": 20111, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { "id": 20112, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20113, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20114, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20115, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20116, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20117, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20118, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20119, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20120, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20121, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20122, "properties": { "facing": "east", "half": "bottom", @@ -269346,20 +269660,20 @@ }, "states": [ { - "id": 19592, + "id": 19602, "properties": { "axis": "x" } }, { "default": true, - "id": 19593, + "id": 19603, "properties": { "axis": "y" } }, { - "id": 19594, + "id": 19604, "properties": { "axis": "z" } @@ -269397,118 +269711,118 @@ ] }, "states": [ - { - "id": 19825, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19826, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 19827, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 19828, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 19829, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19830, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 19831, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 19832, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 19833, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19834, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 19835, "properties": { "facing": "north", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, { "id": 19836, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19837, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19838, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19839, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19840, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19841, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19842, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19843, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19844, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19845, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19846, "properties": { "facing": "north", "half": "bottom", @@ -269518,7 +269832,7 @@ } }, { - "id": 19837, + "id": 19847, "properties": { "facing": "north", "half": "bottom", @@ -269528,7 +269842,7 @@ } }, { - "id": 19838, + "id": 19848, "properties": { "facing": "north", "half": "bottom", @@ -269538,7 +269852,7 @@ } }, { - "id": 19839, + "id": 19849, "properties": { "facing": "north", "half": "bottom", @@ -269549,7 +269863,7 @@ }, { "default": true, - "id": 19840, + "id": 19850, "properties": { "facing": "north", "half": "bottom", @@ -269558,113 +269872,13 @@ "waterlogged": "false" } }, - { - "id": 19841, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19842, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 19843, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 19844, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 19845, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19846, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 19847, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 19848, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 19849, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19850, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 19851, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -269672,9 +269886,9 @@ "id": 19852, "properties": { "facing": "south", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -269682,9 +269896,9 @@ "id": 19853, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -269692,14 +269906,114 @@ "id": 19854, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 19855, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19856, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19857, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19858, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19859, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19860, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19861, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19862, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19863, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19864, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19865, "properties": { "facing": "south", "half": "bottom", @@ -269709,7 +270023,7 @@ } }, { - "id": 19856, + "id": 19866, "properties": { "facing": "south", "half": "bottom", @@ -269718,113 +270032,13 @@ "waterlogged": "false" } }, - { - "id": 19857, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19858, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 19859, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 19860, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 19861, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19862, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 19863, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 19864, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 19865, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19866, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 19867, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -269832,9 +270046,9 @@ "id": 19868, "properties": { "facing": "west", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, @@ -269842,9 +270056,9 @@ "id": 19869, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, @@ -269852,14 +270066,114 @@ "id": 19870, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { "id": 19871, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19872, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19873, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19874, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19875, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19876, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19877, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19878, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19879, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19880, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19881, "properties": { "facing": "west", "half": "bottom", @@ -269869,7 +270183,7 @@ } }, { - "id": 19872, + "id": 19882, "properties": { "facing": "west", "half": "bottom", @@ -269878,113 +270192,13 @@ "waterlogged": "false" } }, - { - "id": 19873, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19874, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 19875, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 19876, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 19877, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19878, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 19879, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 19880, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 19881, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 19882, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, { "id": 19883, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "true" } }, @@ -269992,14 +270206,114 @@ "id": 19884, "properties": { "facing": "east", - "half": "bottom", + "half": "top", "open": "true", - "powered": "false", + "powered": "true", "waterlogged": "false" } }, { "id": 19885, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19886, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19887, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19888, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19889, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19890, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19891, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19892, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19893, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19894, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19895, "properties": { "facing": "east", "half": "bottom", @@ -270009,7 +270323,7 @@ } }, { - "id": 19886, + "id": 19896, "properties": { "facing": "east", "half": "bottom", @@ -270019,7 +270333,7 @@ } }, { - "id": 19887, + "id": 19897, "properties": { "facing": "east", "half": "bottom", @@ -270029,7 +270343,7 @@ } }, { - "id": 19888, + "id": 19898, "properties": { "facing": "east", "half": "bottom", @@ -270060,7 +270374,7 @@ }, "states": [ { - "id": 5777, + "id": 5786, "properties": { "facing": "north", "waterlogged": "true" @@ -270068,49 +270382,49 @@ }, { "default": true, - "id": 5778, + "id": 5787, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 5779, + "id": 5788, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 5780, + "id": 5789, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 5781, + "id": 5790, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 5782, + "id": 5791, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 5783, + "id": 5792, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 5784, + "id": 5793, "properties": { "facing": "east", "waterlogged": "false" @@ -270138,7 +270452,7 @@ }, "states": [ { - "id": 20361, + "id": 20371, "properties": { "facing": "north", "waterlogged": "true" @@ -270146,49 +270460,49 @@ }, { "default": true, - "id": 20362, + "id": 20372, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 20363, + "id": 20373, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 20364, + "id": 20374, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 20365, + "id": 20375, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 20366, + "id": 20376, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 20367, + "id": 20377, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 20368, + "id": 20378, "properties": { "facing": "east", "waterlogged": "false" @@ -270204,7 +270518,7 @@ "states": [ { "default": true, - "id": 19606 + "id": 19616 } ] }, @@ -270351,19 +270665,19 @@ "states": [ { "default": true, - "id": 8173, + "id": 8183, "properties": { "level": "1" } }, { - "id": 8174, + "id": 8184, "properties": { "level": "2" } }, { - "id": 8175, + "id": 8185, "properties": { "level": "3" } @@ -270378,7 +270692,7 @@ "states": [ { "default": true, - "id": 23968 + "id": 23983 } ] }, @@ -270390,7 +270704,7 @@ "states": [ { "default": true, - "id": 24313 + "id": 24328 } ] }, @@ -270411,21 +270725,21 @@ }, "states": [ { - "id": 25721, + "id": 25736, "properties": { "lit": "true", "powered": "true" } }, { - "id": 25722, + "id": 25737, "properties": { "lit": "true", "powered": "false" } }, { - "id": 25723, + "id": 25738, "properties": { "lit": "false", "powered": "true" @@ -270433,7 +270747,7 @@ }, { "default": true, - "id": 25724, + "id": 25739, "properties": { "lit": "false", "powered": "false" @@ -270473,7 +270787,7 @@ }, "states": [ { - "id": 24921, + "id": 24936, "properties": { "facing": "north", "half": "upper", @@ -270483,7 +270797,7 @@ } }, { - "id": 24922, + "id": 24937, "properties": { "facing": "north", "half": "upper", @@ -270493,7 +270807,7 @@ } }, { - "id": 24923, + "id": 24938, "properties": { "facing": "north", "half": "upper", @@ -270503,7 +270817,7 @@ } }, { - "id": 24924, + "id": 24939, "properties": { "facing": "north", "half": "upper", @@ -270513,7 +270827,7 @@ } }, { - "id": 24925, + "id": 24940, "properties": { "facing": "north", "half": "upper", @@ -270523,7 +270837,7 @@ } }, { - "id": 24926, + "id": 24941, "properties": { "facing": "north", "half": "upper", @@ -270533,7 +270847,7 @@ } }, { - "id": 24927, + "id": 24942, "properties": { "facing": "north", "half": "upper", @@ -270543,7 +270857,7 @@ } }, { - "id": 24928, + "id": 24943, "properties": { "facing": "north", "half": "upper", @@ -270553,7 +270867,7 @@ } }, { - "id": 24929, + "id": 24944, "properties": { "facing": "north", "half": "lower", @@ -270563,7 +270877,7 @@ } }, { - "id": 24930, + "id": 24945, "properties": { "facing": "north", "half": "lower", @@ -270573,7 +270887,7 @@ } }, { - "id": 24931, + "id": 24946, "properties": { "facing": "north", "half": "lower", @@ -270584,189 +270898,29 @@ }, { "default": true, - "id": 24932, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 24933, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24934, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 24935, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 24936, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 24937, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 24938, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 24939, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 24940, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 24941, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24942, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 24943, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 24944, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 24945, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 24946, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { "id": 24947, "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24948, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24949, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24950, - "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "right", "open": "true", @@ -270774,159 +270928,159 @@ } }, { - "id": 24951, + "id": 24950, "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true" } }, + { + "id": 24951, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { "id": 24952, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 24953, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24954, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24955, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24956, "properties": { - "facing": "west", + "facing": "south", "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24957, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24958, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24959, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24960, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 24961, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24962, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24963, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24964, "properties": { - "facing": "west", + "facing": "south", "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24965, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24966, - "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "right", "open": "true", @@ -270934,97 +271088,257 @@ } }, { - "id": 24967, + "id": 24966, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true" } }, + { + "id": 24967, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { "id": 24968, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 24969, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24970, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24971, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24972, "properties": { - "facing": "east", + "facing": "west", "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24973, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24974, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24975, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24976, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24977, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24978, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24979, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24980, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24981, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24982, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24983, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24984, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24985, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24986, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24987, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24988, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24989, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24990, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24991, "properties": { "facing": "east", "half": "upper", @@ -271034,7 +271348,7 @@ } }, { - "id": 24977, + "id": 24992, "properties": { "facing": "east", "half": "lower", @@ -271044,7 +271358,7 @@ } }, { - "id": 24978, + "id": 24993, "properties": { "facing": "east", "half": "lower", @@ -271054,7 +271368,7 @@ } }, { - "id": 24979, + "id": 24994, "properties": { "facing": "east", "half": "lower", @@ -271064,7 +271378,7 @@ } }, { - "id": 24980, + "id": 24995, "properties": { "facing": "east", "half": "lower", @@ -271074,7 +271388,7 @@ } }, { - "id": 24981, + "id": 24996, "properties": { "facing": "east", "half": "lower", @@ -271084,7 +271398,7 @@ } }, { - "id": 24982, + "id": 24997, "properties": { "facing": "east", "half": "lower", @@ -271094,7 +271408,7 @@ } }, { - "id": 24983, + "id": 24998, "properties": { "facing": "east", "half": "lower", @@ -271104,7 +271418,7 @@ } }, { - "id": 24984, + "id": 24999, "properties": { "facing": "east", "half": "lower", @@ -271128,14 +271442,14 @@ }, "states": [ { - "id": 25697, + "id": 25712, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 25698, + "id": 25713, "properties": { "waterlogged": "false" } @@ -271174,7 +271488,7 @@ }, "states": [ { - "id": 25433, + "id": 25448, "properties": { "facing": "north", "half": "top", @@ -271184,7 +271498,7 @@ } }, { - "id": 25434, + "id": 25449, "properties": { "facing": "north", "half": "top", @@ -271194,7 +271508,7 @@ } }, { - "id": 25435, + "id": 25450, "properties": { "facing": "north", "half": "top", @@ -271204,7 +271518,7 @@ } }, { - "id": 25436, + "id": 25451, "properties": { "facing": "north", "half": "top", @@ -271214,7 +271528,7 @@ } }, { - "id": 25437, + "id": 25452, "properties": { "facing": "north", "half": "top", @@ -271224,7 +271538,7 @@ } }, { - "id": 25438, + "id": 25453, "properties": { "facing": "north", "half": "top", @@ -271234,7 +271548,7 @@ } }, { - "id": 25439, + "id": 25454, "properties": { "facing": "north", "half": "top", @@ -271244,7 +271558,7 @@ } }, { - "id": 25440, + "id": 25455, "properties": { "facing": "north", "half": "top", @@ -271254,7 +271568,7 @@ } }, { - "id": 25441, + "id": 25456, "properties": { "facing": "north", "half": "bottom", @@ -271264,7 +271578,7 @@ } }, { - "id": 25442, + "id": 25457, "properties": { "facing": "north", "half": "bottom", @@ -271274,7 +271588,7 @@ } }, { - "id": 25443, + "id": 25458, "properties": { "facing": "north", "half": "bottom", @@ -271284,7 +271598,7 @@ } }, { - "id": 25444, + "id": 25459, "properties": { "facing": "north", "half": "bottom", @@ -271294,7 +271608,7 @@ } }, { - "id": 25445, + "id": 25460, "properties": { "facing": "north", "half": "bottom", @@ -271304,7 +271618,7 @@ } }, { - "id": 25446, + "id": 25461, "properties": { "facing": "north", "half": "bottom", @@ -271314,7 +271628,7 @@ } }, { - "id": 25447, + "id": 25462, "properties": { "facing": "north", "half": "bottom", @@ -271325,7 +271639,7 @@ }, { "default": true, - "id": 25448, + "id": 25463, "properties": { "facing": "north", "half": "bottom", @@ -271334,300 +271648,140 @@ "waterlogged": "false" } }, - { - "id": 25449, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25450, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25451, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25452, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25453, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25454, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25455, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25456, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25457, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25458, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25459, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25460, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25461, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25462, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25463, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, { "id": 25464, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25465, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25466, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25467, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25468, "properties": { - "facing": "west", + "facing": "south", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25469, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25470, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25471, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25472, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25473, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25474, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25475, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25476, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25477, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25478, - "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "false", "powered": "true", @@ -271635,97 +271789,257 @@ } }, { - "id": 25479, + "id": 25478, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true" } }, + { + "id": 25479, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, { "id": 25480, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25481, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25482, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25483, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25484, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25485, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25486, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25487, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25488, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25489, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25490, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25491, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25492, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25493, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25494, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25495, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25496, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25497, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25498, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25499, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25500, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25501, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25502, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25503, "properties": { "facing": "east", "half": "top", @@ -271735,7 +272049,7 @@ } }, { - "id": 25489, + "id": 25504, "properties": { "facing": "east", "half": "bottom", @@ -271745,7 +272059,7 @@ } }, { - "id": 25490, + "id": 25505, "properties": { "facing": "east", "half": "bottom", @@ -271755,7 +272069,7 @@ } }, { - "id": 25491, + "id": 25506, "properties": { "facing": "east", "half": "bottom", @@ -271765,7 +272079,7 @@ } }, { - "id": 25492, + "id": 25507, "properties": { "facing": "east", "half": "bottom", @@ -271775,7 +272089,7 @@ } }, { - "id": 25493, + "id": 25508, "properties": { "facing": "east", "half": "bottom", @@ -271785,7 +272099,7 @@ } }, { - "id": 25494, + "id": 25509, "properties": { "facing": "east", "half": "bottom", @@ -271795,7 +272109,7 @@ } }, { - "id": 25495, + "id": 25510, "properties": { "facing": "east", "half": "bottom", @@ -271805,7 +272119,7 @@ } }, { - "id": 25496, + "id": 25511, "properties": { "facing": "east", "half": "bottom", @@ -271824,7 +272138,7 @@ "states": [ { "default": true, - "id": 24320 + "id": 24335 } ] }, @@ -271846,21 +272160,21 @@ }, "states": [ { - "id": 24659, + "id": 24674, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 24660, + "id": 24675, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 24661, + "id": 24676, "properties": { "type": "bottom", "waterlogged": "true" @@ -271868,21 +272182,21 @@ }, { "default": true, - "id": 24662, + "id": 24677, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 24663, + "id": 24678, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 24664, + "id": 24679, "properties": { "type": "double", "waterlogged": "false" @@ -271923,7 +272237,7 @@ }, "states": [ { - "id": 24561, + "id": 24576, "properties": { "facing": "north", "half": "top", @@ -271932,7 +272246,7 @@ } }, { - "id": 24562, + "id": 24577, "properties": { "facing": "north", "half": "top", @@ -271941,7 +272255,7 @@ } }, { - "id": 24563, + "id": 24578, "properties": { "facing": "north", "half": "top", @@ -271950,7 +272264,7 @@ } }, { - "id": 24564, + "id": 24579, "properties": { "facing": "north", "half": "top", @@ -271959,7 +272273,7 @@ } }, { - "id": 24565, + "id": 24580, "properties": { "facing": "north", "half": "top", @@ -271968,7 +272282,7 @@ } }, { - "id": 24566, + "id": 24581, "properties": { "facing": "north", "half": "top", @@ -271977,7 +272291,7 @@ } }, { - "id": 24567, + "id": 24582, "properties": { "facing": "north", "half": "top", @@ -271986,7 +272300,7 @@ } }, { - "id": 24568, + "id": 24583, "properties": { "facing": "north", "half": "top", @@ -271995,7 +272309,7 @@ } }, { - "id": 24569, + "id": 24584, "properties": { "facing": "north", "half": "top", @@ -272004,7 +272318,7 @@ } }, { - "id": 24570, + "id": 24585, "properties": { "facing": "north", "half": "top", @@ -272013,7 +272327,7 @@ } }, { - "id": 24571, + "id": 24586, "properties": { "facing": "north", "half": "bottom", @@ -272023,250 +272337,250 @@ }, { "default": true, - "id": 24572, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24573, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24574, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24575, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24576, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24577, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24578, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24579, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24580, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24581, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24582, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24583, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24584, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24585, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24586, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { "id": 24587, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24588, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24589, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { "id": 24590, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 24591, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "shape": "inner_right", + "waterlogged": "false" } }, { "id": 24592, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 24593, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "shape": "outer_left", + "waterlogged": "false" } }, { "id": 24594, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "shape": "outer_right", + "waterlogged": "true" } }, { "id": 24595, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "shape": "outer_right", + "waterlogged": "false" } }, { "id": 24596, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24597, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24598, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24599, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24600, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24601, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24602, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24603, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24604, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24605, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24606, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24607, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24608, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24609, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24610, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24611, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24612, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24613, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24614, "properties": { "facing": "south", "half": "bottom", @@ -272275,7 +272589,7 @@ } }, { - "id": 24600, + "id": 24615, "properties": { "facing": "south", "half": "bottom", @@ -272283,170 +272597,170 @@ "waterlogged": "false" } }, - { - "id": 24601, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24602, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24603, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24604, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24605, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24606, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24607, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24608, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24609, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24610, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24611, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24612, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24613, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24614, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24615, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 24616, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24617, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24618, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24619, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24620, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24621, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24622, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24623, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24624, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24625, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24626, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24627, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24628, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24629, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24630, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24631, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24632, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24633, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24634, "properties": { "facing": "west", "half": "bottom", @@ -272455,7 +272769,7 @@ } }, { - "id": 24620, + "id": 24635, "properties": { "facing": "west", "half": "bottom", @@ -272463,152 +272777,152 @@ "waterlogged": "false" } }, - { - "id": 24621, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24622, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24623, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24624, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24625, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24626, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24627, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24628, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24629, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24630, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24631, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24632, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24633, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24634, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24635, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 24636, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24637, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24638, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24639, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24640, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24641, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24642, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24643, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24644, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24645, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24646, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24647, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24648, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24649, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24650, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24651, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24652, "properties": { "facing": "east", "half": "bottom", @@ -272617,7 +272931,7 @@ } }, { - "id": 24638, + "id": 24653, "properties": { "facing": "east", "half": "bottom", @@ -272626,7 +272940,7 @@ } }, { - "id": 24639, + "id": 24654, "properties": { "facing": "east", "half": "bottom", @@ -272635,7 +272949,7 @@ } }, { - "id": 24640, + "id": 24655, "properties": { "facing": "east", "half": "bottom", @@ -272653,7 +272967,7 @@ "states": [ { "default": true, - "id": 23967 + "id": 23982 } ] }, @@ -272665,7 +272979,7 @@ "states": [ { "default": true, - "id": 24315 + "id": 24330 } ] }, @@ -272686,21 +273000,21 @@ }, "states": [ { - "id": 25725, + "id": 25740, "properties": { "lit": "true", "powered": "true" } }, { - "id": 25726, + "id": 25741, "properties": { "lit": "true", "powered": "false" } }, { - "id": 25727, + "id": 25742, "properties": { "lit": "false", "powered": "true" @@ -272708,7 +273022,7 @@ }, { "default": true, - "id": 25728, + "id": 25743, "properties": { "lit": "false", "powered": "false" @@ -272748,7 +273062,7 @@ }, "states": [ { - "id": 24985, + "id": 25000, "properties": { "facing": "north", "half": "upper", @@ -272758,7 +273072,7 @@ } }, { - "id": 24986, + "id": 25001, "properties": { "facing": "north", "half": "upper", @@ -272768,7 +273082,7 @@ } }, { - "id": 24987, + "id": 25002, "properties": { "facing": "north", "half": "upper", @@ -272778,7 +273092,7 @@ } }, { - "id": 24988, + "id": 25003, "properties": { "facing": "north", "half": "upper", @@ -272788,7 +273102,7 @@ } }, { - "id": 24989, + "id": 25004, "properties": { "facing": "north", "half": "upper", @@ -272798,7 +273112,7 @@ } }, { - "id": 24990, + "id": 25005, "properties": { "facing": "north", "half": "upper", @@ -272808,7 +273122,7 @@ } }, { - "id": 24991, + "id": 25006, "properties": { "facing": "north", "half": "upper", @@ -272818,7 +273132,7 @@ } }, { - "id": 24992, + "id": 25007, "properties": { "facing": "north", "half": "upper", @@ -272828,7 +273142,7 @@ } }, { - "id": 24993, + "id": 25008, "properties": { "facing": "north", "half": "lower", @@ -272838,7 +273152,7 @@ } }, { - "id": 24994, + "id": 25009, "properties": { "facing": "north", "half": "lower", @@ -272848,7 +273162,7 @@ } }, { - "id": 24995, + "id": 25010, "properties": { "facing": "north", "half": "lower", @@ -272859,189 +273173,29 @@ }, { "default": true, - "id": 24996, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 24997, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24998, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 24999, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 25000, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 25001, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 25002, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 25003, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 25004, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 25005, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 25006, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 25007, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 25008, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 25009, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 25010, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { "id": 25011, "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 25012, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 25013, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 25014, - "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "right", "open": "true", @@ -273049,159 +273203,159 @@ } }, { - "id": 25015, + "id": 25014, "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true" } }, + { + "id": 25015, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { "id": 25016, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 25017, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 25018, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 25019, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 25020, "properties": { - "facing": "west", + "facing": "south", "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 25021, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 25022, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 25023, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 25024, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 25025, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 25026, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 25027, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 25028, "properties": { - "facing": "west", + "facing": "south", "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 25029, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 25030, - "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "right", "open": "true", @@ -273209,97 +273363,257 @@ } }, { - "id": 25031, + "id": 25030, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true" } }, + { + "id": 25031, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { "id": 25032, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 25033, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 25034, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 25035, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 25036, "properties": { - "facing": "east", + "facing": "west", "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 25037, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 25038, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 25039, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 25040, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 25041, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 25042, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 25043, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 25044, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 25045, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 25046, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 25047, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 25048, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 25049, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 25050, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 25051, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 25052, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 25053, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 25054, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 25055, "properties": { "facing": "east", "half": "upper", @@ -273309,7 +273623,7 @@ } }, { - "id": 25041, + "id": 25056, "properties": { "facing": "east", "half": "lower", @@ -273319,7 +273633,7 @@ } }, { - "id": 25042, + "id": 25057, "properties": { "facing": "east", "half": "lower", @@ -273329,7 +273643,7 @@ } }, { - "id": 25043, + "id": 25058, "properties": { "facing": "east", "half": "lower", @@ -273339,7 +273653,7 @@ } }, { - "id": 25044, + "id": 25059, "properties": { "facing": "east", "half": "lower", @@ -273349,7 +273663,7 @@ } }, { - "id": 25045, + "id": 25060, "properties": { "facing": "east", "half": "lower", @@ -273359,7 +273673,7 @@ } }, { - "id": 25046, + "id": 25061, "properties": { "facing": "east", "half": "lower", @@ -273369,7 +273683,7 @@ } }, { - "id": 25047, + "id": 25062, "properties": { "facing": "east", "half": "lower", @@ -273379,7 +273693,7 @@ } }, { - "id": 25048, + "id": 25063, "properties": { "facing": "east", "half": "lower", @@ -273403,14 +273717,14 @@ }, "states": [ { - "id": 25699, + "id": 25714, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 25700, + "id": 25715, "properties": { "waterlogged": "false" } @@ -273449,7 +273763,7 @@ }, "states": [ { - "id": 25497, + "id": 25512, "properties": { "facing": "north", "half": "top", @@ -273459,7 +273773,7 @@ } }, { - "id": 25498, + "id": 25513, "properties": { "facing": "north", "half": "top", @@ -273469,7 +273783,7 @@ } }, { - "id": 25499, + "id": 25514, "properties": { "facing": "north", "half": "top", @@ -273479,7 +273793,7 @@ } }, { - "id": 25500, + "id": 25515, "properties": { "facing": "north", "half": "top", @@ -273489,7 +273803,7 @@ } }, { - "id": 25501, + "id": 25516, "properties": { "facing": "north", "half": "top", @@ -273499,7 +273813,7 @@ } }, { - "id": 25502, + "id": 25517, "properties": { "facing": "north", "half": "top", @@ -273509,7 +273823,7 @@ } }, { - "id": 25503, + "id": 25518, "properties": { "facing": "north", "half": "top", @@ -273519,7 +273833,7 @@ } }, { - "id": 25504, + "id": 25519, "properties": { "facing": "north", "half": "top", @@ -273529,7 +273843,7 @@ } }, { - "id": 25505, + "id": 25520, "properties": { "facing": "north", "half": "bottom", @@ -273539,7 +273853,7 @@ } }, { - "id": 25506, + "id": 25521, "properties": { "facing": "north", "half": "bottom", @@ -273549,7 +273863,7 @@ } }, { - "id": 25507, + "id": 25522, "properties": { "facing": "north", "half": "bottom", @@ -273559,7 +273873,7 @@ } }, { - "id": 25508, + "id": 25523, "properties": { "facing": "north", "half": "bottom", @@ -273569,7 +273883,7 @@ } }, { - "id": 25509, + "id": 25524, "properties": { "facing": "north", "half": "bottom", @@ -273579,7 +273893,7 @@ } }, { - "id": 25510, + "id": 25525, "properties": { "facing": "north", "half": "bottom", @@ -273589,7 +273903,7 @@ } }, { - "id": 25511, + "id": 25526, "properties": { "facing": "north", "half": "bottom", @@ -273600,7 +273914,7 @@ }, { "default": true, - "id": 25512, + "id": 25527, "properties": { "facing": "north", "half": "bottom", @@ -273609,300 +273923,140 @@ "waterlogged": "false" } }, - { - "id": 25513, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25514, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25515, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25516, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25517, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25518, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25519, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25520, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25521, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25522, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25523, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25524, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25525, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25526, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25527, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, { "id": 25528, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25529, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25530, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25531, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25532, "properties": { - "facing": "west", + "facing": "south", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25533, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25534, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25535, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25536, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25537, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25538, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25539, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25540, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25541, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25542, - "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "false", "powered": "true", @@ -273910,97 +274064,257 @@ } }, { - "id": 25543, + "id": 25542, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true" } }, + { + "id": 25543, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, { "id": 25544, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25545, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25546, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25547, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25548, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25549, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25550, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25551, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25552, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25553, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25554, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25555, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25556, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25557, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25558, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25559, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25560, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25561, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25562, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25563, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25564, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25565, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25566, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25567, "properties": { "facing": "east", "half": "top", @@ -274010,7 +274324,7 @@ } }, { - "id": 25553, + "id": 25568, "properties": { "facing": "east", "half": "bottom", @@ -274020,7 +274334,7 @@ } }, { - "id": 25554, + "id": 25569, "properties": { "facing": "east", "half": "bottom", @@ -274030,7 +274344,7 @@ } }, { - "id": 25555, + "id": 25570, "properties": { "facing": "east", "half": "bottom", @@ -274040,7 +274354,7 @@ } }, { - "id": 25556, + "id": 25571, "properties": { "facing": "east", "half": "bottom", @@ -274050,7 +274364,7 @@ } }, { - "id": 25557, + "id": 25572, "properties": { "facing": "east", "half": "bottom", @@ -274060,7 +274374,7 @@ } }, { - "id": 25558, + "id": 25573, "properties": { "facing": "east", "half": "bottom", @@ -274070,7 +274384,7 @@ } }, { - "id": 25559, + "id": 25574, "properties": { "facing": "east", "half": "bottom", @@ -274080,7 +274394,7 @@ } }, { - "id": 25560, + "id": 25575, "properties": { "facing": "east", "half": "bottom", @@ -274099,7 +274413,7 @@ "states": [ { "default": true, - "id": 24319 + "id": 24334 } ] }, @@ -274121,21 +274435,21 @@ }, "states": [ { - "id": 24653, + "id": 24668, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 24654, + "id": 24669, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 24655, + "id": 24670, "properties": { "type": "bottom", "waterlogged": "true" @@ -274143,21 +274457,21 @@ }, { "default": true, - "id": 24656, + "id": 24671, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 24657, + "id": 24672, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 24658, + "id": 24673, "properties": { "type": "double", "waterlogged": "false" @@ -274198,7 +274512,7 @@ }, "states": [ { - "id": 24481, + "id": 24496, "properties": { "facing": "north", "half": "top", @@ -274207,7 +274521,7 @@ } }, { - "id": 24482, + "id": 24497, "properties": { "facing": "north", "half": "top", @@ -274216,7 +274530,7 @@ } }, { - "id": 24483, + "id": 24498, "properties": { "facing": "north", "half": "top", @@ -274225,7 +274539,7 @@ } }, { - "id": 24484, + "id": 24499, "properties": { "facing": "north", "half": "top", @@ -274234,7 +274548,7 @@ } }, { - "id": 24485, + "id": 24500, "properties": { "facing": "north", "half": "top", @@ -274243,7 +274557,7 @@ } }, { - "id": 24486, + "id": 24501, "properties": { "facing": "north", "half": "top", @@ -274252,7 +274566,7 @@ } }, { - "id": 24487, + "id": 24502, "properties": { "facing": "north", "half": "top", @@ -274261,7 +274575,7 @@ } }, { - "id": 24488, + "id": 24503, "properties": { "facing": "north", "half": "top", @@ -274270,7 +274584,7 @@ } }, { - "id": 24489, + "id": 24504, "properties": { "facing": "north", "half": "top", @@ -274279,7 +274593,7 @@ } }, { - "id": 24490, + "id": 24505, "properties": { "facing": "north", "half": "top", @@ -274288,7 +274602,7 @@ } }, { - "id": 24491, + "id": 24506, "properties": { "facing": "north", "half": "bottom", @@ -274298,250 +274612,250 @@ }, { "default": true, - "id": 24492, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24493, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24494, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24495, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24496, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24497, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24498, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24499, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24500, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24501, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24502, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24503, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24504, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24505, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24506, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { "id": 24507, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24508, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24509, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { "id": 24510, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 24511, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "shape": "inner_right", + "waterlogged": "false" } }, { "id": 24512, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 24513, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "shape": "outer_left", + "waterlogged": "false" } }, { "id": 24514, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "shape": "outer_right", + "waterlogged": "true" } }, { "id": 24515, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "shape": "outer_right", + "waterlogged": "false" } }, { "id": 24516, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24517, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24518, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24519, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24520, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24521, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24522, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24523, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24524, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24525, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24526, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24527, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24528, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24529, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24530, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24531, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24532, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24533, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24534, "properties": { "facing": "south", "half": "bottom", @@ -274550,7 +274864,7 @@ } }, { - "id": 24520, + "id": 24535, "properties": { "facing": "south", "half": "bottom", @@ -274558,170 +274872,170 @@ "waterlogged": "false" } }, - { - "id": 24521, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24522, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24523, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24524, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24525, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24526, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24527, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24528, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24529, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24530, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24531, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24532, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24533, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24534, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24535, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 24536, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24537, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24538, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24539, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24540, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24541, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24542, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24543, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24544, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24545, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24546, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24547, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24548, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24549, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24550, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24551, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24552, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24553, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24554, "properties": { "facing": "west", "half": "bottom", @@ -274730,7 +275044,7 @@ } }, { - "id": 24540, + "id": 24555, "properties": { "facing": "west", "half": "bottom", @@ -274738,152 +275052,152 @@ "waterlogged": "false" } }, - { - "id": 24541, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24542, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24543, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24544, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24545, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24546, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24547, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24548, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24549, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24550, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24551, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24552, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24553, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24554, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24555, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 24556, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24557, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24558, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24559, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24560, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24561, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24562, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24563, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24564, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24565, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24566, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24567, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24568, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24569, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24570, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24571, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24572, "properties": { "facing": "east", "half": "bottom", @@ -274892,7 +275206,7 @@ } }, { - "id": 24558, + "id": 24573, "properties": { "facing": "east", "half": "bottom", @@ -274901,7 +275215,7 @@ } }, { - "id": 24559, + "id": 24574, "properties": { "facing": "east", "half": "bottom", @@ -274910,7 +275224,7 @@ } }, { - "id": 24560, + "id": 24575, "properties": { "facing": "east", "half": "bottom", @@ -274928,7 +275242,7 @@ "states": [ { "default": true, - "id": 23965 + "id": 23980 } ] }, @@ -274940,7 +275254,7 @@ "states": [ { "default": true, - "id": 24316 + "id": 24331 } ] }, @@ -274961,21 +275275,21 @@ }, "states": [ { - "id": 25733, + "id": 25748, "properties": { "lit": "true", "powered": "true" } }, { - "id": 25734, + "id": 25749, "properties": { "lit": "true", "powered": "false" } }, { - "id": 25735, + "id": 25750, "properties": { "lit": "false", "powered": "true" @@ -274983,7 +275297,7 @@ }, { "default": true, - "id": 25736, + "id": 25751, "properties": { "lit": "false", "powered": "false" @@ -275023,7 +275337,7 @@ }, "states": [ { - "id": 25049, + "id": 25064, "properties": { "facing": "north", "half": "upper", @@ -275033,7 +275347,7 @@ } }, { - "id": 25050, + "id": 25065, "properties": { "facing": "north", "half": "upper", @@ -275043,7 +275357,7 @@ } }, { - "id": 25051, + "id": 25066, "properties": { "facing": "north", "half": "upper", @@ -275053,7 +275367,7 @@ } }, { - "id": 25052, + "id": 25067, "properties": { "facing": "north", "half": "upper", @@ -275063,7 +275377,7 @@ } }, { - "id": 25053, + "id": 25068, "properties": { "facing": "north", "half": "upper", @@ -275073,7 +275387,7 @@ } }, { - "id": 25054, + "id": 25069, "properties": { "facing": "north", "half": "upper", @@ -275083,7 +275397,7 @@ } }, { - "id": 25055, + "id": 25070, "properties": { "facing": "north", "half": "upper", @@ -275093,7 +275407,7 @@ } }, { - "id": 25056, + "id": 25071, "properties": { "facing": "north", "half": "upper", @@ -275103,7 +275417,7 @@ } }, { - "id": 25057, + "id": 25072, "properties": { "facing": "north", "half": "lower", @@ -275113,7 +275427,7 @@ } }, { - "id": 25058, + "id": 25073, "properties": { "facing": "north", "half": "lower", @@ -275123,7 +275437,7 @@ } }, { - "id": 25059, + "id": 25074, "properties": { "facing": "north", "half": "lower", @@ -275134,189 +275448,29 @@ }, { "default": true, - "id": 25060, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 25061, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 25062, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 25063, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 25064, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 25065, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 25066, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 25067, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 25068, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 25069, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 25070, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 25071, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 25072, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 25073, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 25074, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { "id": 25075, "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 25076, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 25077, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 25078, - "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "right", "open": "true", @@ -275324,159 +275478,159 @@ } }, { - "id": 25079, + "id": 25078, "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true" } }, + { + "id": 25079, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { "id": 25080, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 25081, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 25082, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 25083, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 25084, "properties": { - "facing": "west", + "facing": "south", "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 25085, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 25086, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 25087, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 25088, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 25089, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 25090, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 25091, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 25092, "properties": { - "facing": "west", + "facing": "south", "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 25093, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 25094, - "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "right", "open": "true", @@ -275484,97 +275638,257 @@ } }, { - "id": 25095, + "id": 25094, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true" } }, + { + "id": 25095, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { "id": 25096, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 25097, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 25098, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 25099, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 25100, "properties": { - "facing": "east", + "facing": "west", "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 25101, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 25102, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 25103, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 25104, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 25105, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 25106, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 25107, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 25108, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 25109, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 25110, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 25111, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 25112, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 25113, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 25114, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 25115, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 25116, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 25117, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 25118, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 25119, "properties": { "facing": "east", "half": "upper", @@ -275584,7 +275898,7 @@ } }, { - "id": 25105, + "id": 25120, "properties": { "facing": "east", "half": "lower", @@ -275594,7 +275908,7 @@ } }, { - "id": 25106, + "id": 25121, "properties": { "facing": "east", "half": "lower", @@ -275604,7 +275918,7 @@ } }, { - "id": 25107, + "id": 25122, "properties": { "facing": "east", "half": "lower", @@ -275614,7 +275928,7 @@ } }, { - "id": 25108, + "id": 25123, "properties": { "facing": "east", "half": "lower", @@ -275624,7 +275938,7 @@ } }, { - "id": 25109, + "id": 25124, "properties": { "facing": "east", "half": "lower", @@ -275634,7 +275948,7 @@ } }, { - "id": 25110, + "id": 25125, "properties": { "facing": "east", "half": "lower", @@ -275644,7 +275958,7 @@ } }, { - "id": 25111, + "id": 25126, "properties": { "facing": "east", "half": "lower", @@ -275654,7 +275968,7 @@ } }, { - "id": 25112, + "id": 25127, "properties": { "facing": "east", "half": "lower", @@ -275678,14 +275992,14 @@ }, "states": [ { - "id": 25703, + "id": 25718, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 25704, + "id": 25719, "properties": { "waterlogged": "false" } @@ -275724,7 +276038,7 @@ }, "states": [ { - "id": 25561, + "id": 25576, "properties": { "facing": "north", "half": "top", @@ -275734,7 +276048,7 @@ } }, { - "id": 25562, + "id": 25577, "properties": { "facing": "north", "half": "top", @@ -275744,7 +276058,7 @@ } }, { - "id": 25563, + "id": 25578, "properties": { "facing": "north", "half": "top", @@ -275754,7 +276068,7 @@ } }, { - "id": 25564, + "id": 25579, "properties": { "facing": "north", "half": "top", @@ -275764,7 +276078,7 @@ } }, { - "id": 25565, + "id": 25580, "properties": { "facing": "north", "half": "top", @@ -275774,7 +276088,7 @@ } }, { - "id": 25566, + "id": 25581, "properties": { "facing": "north", "half": "top", @@ -275784,7 +276098,7 @@ } }, { - "id": 25567, + "id": 25582, "properties": { "facing": "north", "half": "top", @@ -275794,7 +276108,7 @@ } }, { - "id": 25568, + "id": 25583, "properties": { "facing": "north", "half": "top", @@ -275804,7 +276118,7 @@ } }, { - "id": 25569, + "id": 25584, "properties": { "facing": "north", "half": "bottom", @@ -275814,7 +276128,7 @@ } }, { - "id": 25570, + "id": 25585, "properties": { "facing": "north", "half": "bottom", @@ -275824,7 +276138,7 @@ } }, { - "id": 25571, + "id": 25586, "properties": { "facing": "north", "half": "bottom", @@ -275834,7 +276148,7 @@ } }, { - "id": 25572, + "id": 25587, "properties": { "facing": "north", "half": "bottom", @@ -275844,7 +276158,7 @@ } }, { - "id": 25573, + "id": 25588, "properties": { "facing": "north", "half": "bottom", @@ -275854,7 +276168,7 @@ } }, { - "id": 25574, + "id": 25589, "properties": { "facing": "north", "half": "bottom", @@ -275864,7 +276178,7 @@ } }, { - "id": 25575, + "id": 25590, "properties": { "facing": "north", "half": "bottom", @@ -275875,7 +276189,7 @@ }, { "default": true, - "id": 25576, + "id": 25591, "properties": { "facing": "north", "half": "bottom", @@ -275884,300 +276198,140 @@ "waterlogged": "false" } }, - { - "id": 25577, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25578, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25579, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25580, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25581, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25582, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25583, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25584, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25585, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25586, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25587, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25588, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25589, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25590, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25591, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, { "id": 25592, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25593, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25594, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25595, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25596, "properties": { - "facing": "west", + "facing": "south", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25597, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25598, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25599, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25600, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25601, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25602, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25603, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25604, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25605, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25606, - "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "false", "powered": "true", @@ -276185,97 +276339,257 @@ } }, { - "id": 25607, + "id": 25606, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true" } }, + { + "id": 25607, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, { "id": 25608, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25609, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25610, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25611, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25612, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25613, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25614, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25615, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25616, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25617, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25618, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25619, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25620, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25621, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25622, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25623, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25624, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25625, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25626, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25627, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25628, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25629, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25630, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25631, "properties": { "facing": "east", "half": "top", @@ -276285,7 +276599,7 @@ } }, { - "id": 25617, + "id": 25632, "properties": { "facing": "east", "half": "bottom", @@ -276295,7 +276609,7 @@ } }, { - "id": 25618, + "id": 25633, "properties": { "facing": "east", "half": "bottom", @@ -276305,7 +276619,7 @@ } }, { - "id": 25619, + "id": 25634, "properties": { "facing": "east", "half": "bottom", @@ -276315,7 +276629,7 @@ } }, { - "id": 25620, + "id": 25635, "properties": { "facing": "east", "half": "bottom", @@ -276325,7 +276639,7 @@ } }, { - "id": 25621, + "id": 25636, "properties": { "facing": "east", "half": "bottom", @@ -276335,7 +276649,7 @@ } }, { - "id": 25622, + "id": 25637, "properties": { "facing": "east", "half": "bottom", @@ -276345,7 +276659,7 @@ } }, { - "id": 25623, + "id": 25638, "properties": { "facing": "east", "half": "bottom", @@ -276355,7 +276669,7 @@ } }, { - "id": 25624, + "id": 25639, "properties": { "facing": "east", "half": "bottom", @@ -276374,7 +276688,7 @@ "states": [ { "default": true, - "id": 24317 + "id": 24332 } ] }, @@ -276396,21 +276710,21 @@ }, "states": [ { - "id": 24641, + "id": 24656, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 24642, + "id": 24657, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 24643, + "id": 24658, "properties": { "type": "bottom", "waterlogged": "true" @@ -276418,21 +276732,21 @@ }, { "default": true, - "id": 24644, + "id": 24659, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 24645, + "id": 24660, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 24646, + "id": 24661, "properties": { "type": "double", "waterlogged": "false" @@ -276473,7 +276787,7 @@ }, "states": [ { - "id": 24321, + "id": 24336, "properties": { "facing": "north", "half": "top", @@ -276482,7 +276796,7 @@ } }, { - "id": 24322, + "id": 24337, "properties": { "facing": "north", "half": "top", @@ -276491,7 +276805,7 @@ } }, { - "id": 24323, + "id": 24338, "properties": { "facing": "north", "half": "top", @@ -276500,7 +276814,7 @@ } }, { - "id": 24324, + "id": 24339, "properties": { "facing": "north", "half": "top", @@ -276509,7 +276823,7 @@ } }, { - "id": 24325, + "id": 24340, "properties": { "facing": "north", "half": "top", @@ -276518,7 +276832,7 @@ } }, { - "id": 24326, + "id": 24341, "properties": { "facing": "north", "half": "top", @@ -276527,7 +276841,7 @@ } }, { - "id": 24327, + "id": 24342, "properties": { "facing": "north", "half": "top", @@ -276536,7 +276850,7 @@ } }, { - "id": 24328, + "id": 24343, "properties": { "facing": "north", "half": "top", @@ -276545,7 +276859,7 @@ } }, { - "id": 24329, + "id": 24344, "properties": { "facing": "north", "half": "top", @@ -276554,7 +276868,7 @@ } }, { - "id": 24330, + "id": 24345, "properties": { "facing": "north", "half": "top", @@ -276563,7 +276877,7 @@ } }, { - "id": 24331, + "id": 24346, "properties": { "facing": "north", "half": "bottom", @@ -276573,250 +276887,250 @@ }, { "default": true, - "id": 24332, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24333, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24334, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24335, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24336, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24337, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24338, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24339, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24340, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24341, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24342, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24343, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24344, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24345, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24346, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { "id": 24347, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24348, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24349, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { "id": 24350, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 24351, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "shape": "inner_right", + "waterlogged": "false" } }, { "id": 24352, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 24353, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "shape": "outer_left", + "waterlogged": "false" } }, { "id": 24354, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "shape": "outer_right", + "waterlogged": "true" } }, { "id": 24355, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "shape": "outer_right", + "waterlogged": "false" } }, { "id": 24356, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24357, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24358, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24359, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24360, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24361, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24362, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24363, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24364, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24365, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24366, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24367, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24368, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24369, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24370, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24371, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24372, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24373, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24374, "properties": { "facing": "south", "half": "bottom", @@ -276825,7 +277139,7 @@ } }, { - "id": 24360, + "id": 24375, "properties": { "facing": "south", "half": "bottom", @@ -276833,170 +277147,170 @@ "waterlogged": "false" } }, - { - "id": 24361, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24362, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24363, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24364, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24365, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24366, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24367, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24368, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24369, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24370, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24371, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24372, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24373, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24374, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24375, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 24376, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24377, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24378, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24379, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24380, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24381, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24382, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24383, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24384, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24385, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24386, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24387, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24388, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24389, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24390, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24391, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24392, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24393, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24394, "properties": { "facing": "west", "half": "bottom", @@ -277005,7 +277319,7 @@ } }, { - "id": 24380, + "id": 24395, "properties": { "facing": "west", "half": "bottom", @@ -277013,152 +277327,152 @@ "waterlogged": "false" } }, - { - "id": 24381, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24382, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24383, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24384, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24385, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24386, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24387, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24388, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24389, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24390, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24391, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24392, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24393, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24394, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24395, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 24396, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24397, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24398, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24399, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24400, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24401, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24402, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24403, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24404, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24405, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24406, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24407, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24408, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24409, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24410, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24411, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24412, "properties": { "facing": "east", "half": "bottom", @@ -277167,7 +277481,7 @@ } }, { - "id": 24398, + "id": 24413, "properties": { "facing": "east", "half": "bottom", @@ -277176,7 +277490,7 @@ } }, { - "id": 24399, + "id": 24414, "properties": { "facing": "east", "half": "bottom", @@ -277185,7 +277499,7 @@ } }, { - "id": 24400, + "id": 24415, "properties": { "facing": "east", "half": "bottom", @@ -277203,7 +277517,7 @@ "states": [ { "default": true, - "id": 23966 + "id": 23981 } ] }, @@ -277215,7 +277529,7 @@ "states": [ { "default": true, - "id": 24314 + "id": 24329 } ] }, @@ -277236,21 +277550,21 @@ }, "states": [ { - "id": 25729, + "id": 25744, "properties": { "lit": "true", "powered": "true" } }, { - "id": 25730, + "id": 25745, "properties": { "lit": "true", "powered": "false" } }, { - "id": 25731, + "id": 25746, "properties": { "lit": "false", "powered": "true" @@ -277258,7 +277572,7 @@ }, { "default": true, - "id": 25732, + "id": 25747, "properties": { "lit": "false", "powered": "false" @@ -277298,7 +277612,7 @@ }, "states": [ { - "id": 25113, + "id": 25128, "properties": { "facing": "north", "half": "upper", @@ -277308,7 +277622,7 @@ } }, { - "id": 25114, + "id": 25129, "properties": { "facing": "north", "half": "upper", @@ -277318,7 +277632,7 @@ } }, { - "id": 25115, + "id": 25130, "properties": { "facing": "north", "half": "upper", @@ -277328,7 +277642,7 @@ } }, { - "id": 25116, + "id": 25131, "properties": { "facing": "north", "half": "upper", @@ -277338,7 +277652,7 @@ } }, { - "id": 25117, + "id": 25132, "properties": { "facing": "north", "half": "upper", @@ -277348,7 +277662,7 @@ } }, { - "id": 25118, + "id": 25133, "properties": { "facing": "north", "half": "upper", @@ -277358,7 +277672,7 @@ } }, { - "id": 25119, + "id": 25134, "properties": { "facing": "north", "half": "upper", @@ -277368,7 +277682,7 @@ } }, { - "id": 25120, + "id": 25135, "properties": { "facing": "north", "half": "upper", @@ -277378,7 +277692,7 @@ } }, { - "id": 25121, + "id": 25136, "properties": { "facing": "north", "half": "lower", @@ -277388,7 +277702,7 @@ } }, { - "id": 25122, + "id": 25137, "properties": { "facing": "north", "half": "lower", @@ -277398,7 +277712,7 @@ } }, { - "id": 25123, + "id": 25138, "properties": { "facing": "north", "half": "lower", @@ -277409,189 +277723,29 @@ }, { "default": true, - "id": 25124, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 25125, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 25126, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 25127, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 25128, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 25129, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 25130, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 25131, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 25132, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 25133, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 25134, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 25135, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 25136, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 25137, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 25138, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { "id": 25139, "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 25140, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 25141, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 25142, - "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "right", "open": "true", @@ -277599,159 +277753,159 @@ } }, { - "id": 25143, + "id": 25142, "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true" } }, + { + "id": 25143, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { "id": 25144, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 25145, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 25146, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 25147, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 25148, "properties": { - "facing": "west", + "facing": "south", "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 25149, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 25150, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 25151, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 25152, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 25153, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 25154, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 25155, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 25156, "properties": { - "facing": "west", + "facing": "south", "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 25157, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 25158, - "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "right", "open": "true", @@ -277759,97 +277913,257 @@ } }, { - "id": 25159, + "id": 25158, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true" } }, + { + "id": 25159, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { "id": 25160, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 25161, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 25162, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 25163, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 25164, "properties": { - "facing": "east", + "facing": "west", "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 25165, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 25166, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 25167, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 25168, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 25169, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 25170, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 25171, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 25172, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 25173, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 25174, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 25175, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 25176, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 25177, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 25178, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 25179, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 25180, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 25181, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 25182, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 25183, "properties": { "facing": "east", "half": "upper", @@ -277859,7 +278173,7 @@ } }, { - "id": 25169, + "id": 25184, "properties": { "facing": "east", "half": "lower", @@ -277869,7 +278183,7 @@ } }, { - "id": 25170, + "id": 25185, "properties": { "facing": "east", "half": "lower", @@ -277879,7 +278193,7 @@ } }, { - "id": 25171, + "id": 25186, "properties": { "facing": "east", "half": "lower", @@ -277889,7 +278203,7 @@ } }, { - "id": 25172, + "id": 25187, "properties": { "facing": "east", "half": "lower", @@ -277899,7 +278213,7 @@ } }, { - "id": 25173, + "id": 25188, "properties": { "facing": "east", "half": "lower", @@ -277909,7 +278223,7 @@ } }, { - "id": 25174, + "id": 25189, "properties": { "facing": "east", "half": "lower", @@ -277919,7 +278233,7 @@ } }, { - "id": 25175, + "id": 25190, "properties": { "facing": "east", "half": "lower", @@ -277929,7 +278243,7 @@ } }, { - "id": 25176, + "id": 25191, "properties": { "facing": "east", "half": "lower", @@ -277953,14 +278267,14 @@ }, "states": [ { - "id": 25701, + "id": 25716, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 25702, + "id": 25717, "properties": { "waterlogged": "false" } @@ -277999,7 +278313,7 @@ }, "states": [ { - "id": 25625, + "id": 25640, "properties": { "facing": "north", "half": "top", @@ -278009,7 +278323,7 @@ } }, { - "id": 25626, + "id": 25641, "properties": { "facing": "north", "half": "top", @@ -278019,7 +278333,7 @@ } }, { - "id": 25627, + "id": 25642, "properties": { "facing": "north", "half": "top", @@ -278029,7 +278343,7 @@ } }, { - "id": 25628, + "id": 25643, "properties": { "facing": "north", "half": "top", @@ -278039,7 +278353,7 @@ } }, { - "id": 25629, + "id": 25644, "properties": { "facing": "north", "half": "top", @@ -278049,7 +278363,7 @@ } }, { - "id": 25630, + "id": 25645, "properties": { "facing": "north", "half": "top", @@ -278059,7 +278373,7 @@ } }, { - "id": 25631, + "id": 25646, "properties": { "facing": "north", "half": "top", @@ -278069,7 +278383,7 @@ } }, { - "id": 25632, + "id": 25647, "properties": { "facing": "north", "half": "top", @@ -278079,7 +278393,7 @@ } }, { - "id": 25633, + "id": 25648, "properties": { "facing": "north", "half": "bottom", @@ -278089,7 +278403,7 @@ } }, { - "id": 25634, + "id": 25649, "properties": { "facing": "north", "half": "bottom", @@ -278099,7 +278413,7 @@ } }, { - "id": 25635, + "id": 25650, "properties": { "facing": "north", "half": "bottom", @@ -278109,7 +278423,7 @@ } }, { - "id": 25636, + "id": 25651, "properties": { "facing": "north", "half": "bottom", @@ -278119,7 +278433,7 @@ } }, { - "id": 25637, + "id": 25652, "properties": { "facing": "north", "half": "bottom", @@ -278129,7 +278443,7 @@ } }, { - "id": 25638, + "id": 25653, "properties": { "facing": "north", "half": "bottom", @@ -278139,7 +278453,7 @@ } }, { - "id": 25639, + "id": 25654, "properties": { "facing": "north", "half": "bottom", @@ -278150,7 +278464,7 @@ }, { "default": true, - "id": 25640, + "id": 25655, "properties": { "facing": "north", "half": "bottom", @@ -278159,300 +278473,140 @@ "waterlogged": "false" } }, - { - "id": 25641, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25642, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25643, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25644, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25645, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25646, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25647, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25648, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25649, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25650, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25651, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25652, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25653, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25654, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25655, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, { "id": 25656, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25657, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25658, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25659, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25660, "properties": { - "facing": "west", + "facing": "south", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25661, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25662, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25663, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25664, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25665, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25666, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25667, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25668, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25669, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25670, - "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "false", "powered": "true", @@ -278460,97 +278614,257 @@ } }, { - "id": 25671, + "id": 25670, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true" } }, + { + "id": 25671, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, { "id": 25672, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25673, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25674, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25675, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25676, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25677, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25678, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25679, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25680, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25681, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25682, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25683, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25684, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25685, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25686, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25687, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25688, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25689, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25690, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25691, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25692, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25693, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25694, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25695, "properties": { "facing": "east", "half": "top", @@ -278560,7 +278874,7 @@ } }, { - "id": 25681, + "id": 25696, "properties": { "facing": "east", "half": "bottom", @@ -278570,7 +278884,7 @@ } }, { - "id": 25682, + "id": 25697, "properties": { "facing": "east", "half": "bottom", @@ -278580,7 +278894,7 @@ } }, { - "id": 25683, + "id": 25698, "properties": { "facing": "east", "half": "bottom", @@ -278590,7 +278904,7 @@ } }, { - "id": 25684, + "id": 25699, "properties": { "facing": "east", "half": "bottom", @@ -278600,7 +278914,7 @@ } }, { - "id": 25685, + "id": 25700, "properties": { "facing": "east", "half": "bottom", @@ -278610,7 +278924,7 @@ } }, { - "id": 25686, + "id": 25701, "properties": { "facing": "east", "half": "bottom", @@ -278620,7 +278934,7 @@ } }, { - "id": 25687, + "id": 25702, "properties": { "facing": "east", "half": "bottom", @@ -278630,7 +278944,7 @@ } }, { - "id": 25688, + "id": 25703, "properties": { "facing": "east", "half": "bottom", @@ -278649,7 +278963,7 @@ "states": [ { "default": true, - "id": 24318 + "id": 24333 } ] }, @@ -278671,21 +278985,21 @@ }, "states": [ { - "id": 24647, + "id": 24662, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 24648, + "id": 24663, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 24649, + "id": 24664, "properties": { "type": "bottom", "waterlogged": "true" @@ -278693,21 +279007,21 @@ }, { "default": true, - "id": 24650, + "id": 24665, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 24651, + "id": 24666, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 24652, + "id": 24667, "properties": { "type": "double", "waterlogged": "false" @@ -278748,7 +279062,7 @@ }, "states": [ { - "id": 24401, + "id": 24416, "properties": { "facing": "north", "half": "top", @@ -278757,7 +279071,7 @@ } }, { - "id": 24402, + "id": 24417, "properties": { "facing": "north", "half": "top", @@ -278766,7 +279080,7 @@ } }, { - "id": 24403, + "id": 24418, "properties": { "facing": "north", "half": "top", @@ -278775,7 +279089,7 @@ } }, { - "id": 24404, + "id": 24419, "properties": { "facing": "north", "half": "top", @@ -278784,7 +279098,7 @@ } }, { - "id": 24405, + "id": 24420, "properties": { "facing": "north", "half": "top", @@ -278793,7 +279107,7 @@ } }, { - "id": 24406, + "id": 24421, "properties": { "facing": "north", "half": "top", @@ -278802,7 +279116,7 @@ } }, { - "id": 24407, + "id": 24422, "properties": { "facing": "north", "half": "top", @@ -278811,7 +279125,7 @@ } }, { - "id": 24408, + "id": 24423, "properties": { "facing": "north", "half": "top", @@ -278820,7 +279134,7 @@ } }, { - "id": 24409, + "id": 24424, "properties": { "facing": "north", "half": "top", @@ -278829,7 +279143,7 @@ } }, { - "id": 24410, + "id": 24425, "properties": { "facing": "north", "half": "top", @@ -278838,7 +279152,7 @@ } }, { - "id": 24411, + "id": 24426, "properties": { "facing": "north", "half": "bottom", @@ -278848,250 +279162,250 @@ }, { "default": true, - "id": 24412, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24413, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24414, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24415, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24416, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24417, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24418, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24419, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24420, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24421, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24422, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24423, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24424, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24425, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24426, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { "id": 24427, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24428, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24429, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { "id": 24430, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 24431, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "shape": "inner_right", + "waterlogged": "false" } }, { "id": 24432, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 24433, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "shape": "outer_left", + "waterlogged": "false" } }, { "id": 24434, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "shape": "outer_right", + "waterlogged": "true" } }, { "id": 24435, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "shape": "outer_right", + "waterlogged": "false" } }, { "id": 24436, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24437, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24438, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24439, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24440, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24441, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24442, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24443, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24444, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24445, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24446, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24447, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24448, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24449, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24450, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24451, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24452, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24453, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24454, "properties": { "facing": "south", "half": "bottom", @@ -279100,7 +279414,7 @@ } }, { - "id": 24440, + "id": 24455, "properties": { "facing": "south", "half": "bottom", @@ -279108,170 +279422,170 @@ "waterlogged": "false" } }, - { - "id": 24441, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24442, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24443, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24444, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24445, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24446, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24447, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24448, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24449, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24450, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24451, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24452, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24453, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24454, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24455, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 24456, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24457, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24458, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24459, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24460, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24461, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24462, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24463, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24464, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24465, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24466, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24467, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24468, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24469, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24470, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24471, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24472, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24473, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24474, "properties": { "facing": "west", "half": "bottom", @@ -279280,7 +279594,7 @@ } }, { - "id": 24460, + "id": 24475, "properties": { "facing": "west", "half": "bottom", @@ -279288,152 +279602,152 @@ "waterlogged": "false" } }, - { - "id": 24461, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24462, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24463, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24464, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24465, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24466, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24467, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24468, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24469, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24470, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24471, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24472, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24473, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24474, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24475, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 24476, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24477, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24478, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24479, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24480, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24481, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24482, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24483, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24484, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24485, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24486, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24487, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24488, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24489, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24490, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24491, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24492, "properties": { "facing": "east", "half": "bottom", @@ -279442,7 +279756,7 @@ } }, { - "id": 24478, + "id": 24493, "properties": { "facing": "east", "half": "bottom", @@ -279451,7 +279765,7 @@ } }, { - "id": 24479, + "id": 24494, "properties": { "facing": "east", "half": "bottom", @@ -279460,7 +279774,7 @@ } }, { - "id": 24480, + "id": 24495, "properties": { "facing": "east", "half": "bottom", @@ -279479,7 +279793,7 @@ "states": [ { "default": true, - "id": 23962 + "id": 23977 } ] }, @@ -279492,7 +279806,7 @@ "states": [ { "default": true, - "id": 23953 + "id": 23968 } ] }, @@ -279514,21 +279828,21 @@ }, "states": [ { - "id": 25713, + "id": 25728, "properties": { "lit": "true", "powered": "true" } }, { - "id": 25714, + "id": 25729, "properties": { "lit": "true", "powered": "false" } }, { - "id": 25715, + "id": 25730, "properties": { "lit": "false", "powered": "true" @@ -279536,7 +279850,7 @@ }, { "default": true, - "id": 25716, + "id": 25731, "properties": { "lit": "false", "powered": "false" @@ -279577,7 +279891,7 @@ }, "states": [ { - "id": 24857, + "id": 24872, "properties": { "facing": "north", "half": "upper", @@ -279587,7 +279901,7 @@ } }, { - "id": 24858, + "id": 24873, "properties": { "facing": "north", "half": "upper", @@ -279597,7 +279911,7 @@ } }, { - "id": 24859, + "id": 24874, "properties": { "facing": "north", "half": "upper", @@ -279607,7 +279921,7 @@ } }, { - "id": 24860, + "id": 24875, "properties": { "facing": "north", "half": "upper", @@ -279617,7 +279931,7 @@ } }, { - "id": 24861, + "id": 24876, "properties": { "facing": "north", "half": "upper", @@ -279627,7 +279941,7 @@ } }, { - "id": 24862, + "id": 24877, "properties": { "facing": "north", "half": "upper", @@ -279637,7 +279951,7 @@ } }, { - "id": 24863, + "id": 24878, "properties": { "facing": "north", "half": "upper", @@ -279647,7 +279961,7 @@ } }, { - "id": 24864, + "id": 24879, "properties": { "facing": "north", "half": "upper", @@ -279657,7 +279971,7 @@ } }, { - "id": 24865, + "id": 24880, "properties": { "facing": "north", "half": "lower", @@ -279667,7 +279981,7 @@ } }, { - "id": 24866, + "id": 24881, "properties": { "facing": "north", "half": "lower", @@ -279677,7 +279991,7 @@ } }, { - "id": 24867, + "id": 24882, "properties": { "facing": "north", "half": "lower", @@ -279688,189 +280002,29 @@ }, { "default": true, - "id": 24868, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 24869, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24870, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 24871, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 24872, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 24873, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 24874, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 24875, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 24876, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 24877, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24878, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 24879, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 24880, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 24881, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 24882, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { "id": 24883, "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24884, "properties": { - "facing": "south", + "facing": "north", "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24885, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24886, - "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "right", "open": "true", @@ -279878,159 +280032,159 @@ } }, { - "id": 24887, + "id": 24886, "properties": { - "facing": "south", + "facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true" } }, + { + "id": 24887, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { "id": 24888, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 24889, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24890, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24891, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24892, "properties": { - "facing": "west", + "facing": "south", "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24893, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24894, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24895, "properties": { - "facing": "west", + "facing": "south", "half": "upper", "hinge": "right", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24896, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 24897, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24898, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24899, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24900, "properties": { - "facing": "west", + "facing": "south", "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24901, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 24902, - "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "right", "open": "true", @@ -280038,97 +280192,257 @@ } }, { - "id": 24903, + "id": 24902, "properties": { - "facing": "west", + "facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true" } }, + { + "id": 24903, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { "id": 24904, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { "id": 24905, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24906, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24907, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "left", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24908, "properties": { - "facing": "east", + "facing": "west", "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "hinge": "right", + "open": "true", + "powered": "true" } }, { "id": 24909, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", "open": "true", - "powered": "true" + "powered": "false" } }, { "id": 24910, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", - "open": "true", - "powered": "false" + "open": "false", + "powered": "true" } }, { "id": 24911, "properties": { - "facing": "east", + "facing": "west", "half": "upper", "hinge": "right", "open": "false", - "powered": "true" + "powered": "false" } }, { "id": 24912, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24913, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24914, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24915, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24916, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24917, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24918, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24919, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24920, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24921, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24922, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24923, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24924, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24925, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24926, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24927, "properties": { "facing": "east", "half": "upper", @@ -280138,7 +280452,7 @@ } }, { - "id": 24913, + "id": 24928, "properties": { "facing": "east", "half": "lower", @@ -280148,7 +280462,7 @@ } }, { - "id": 24914, + "id": 24929, "properties": { "facing": "east", "half": "lower", @@ -280158,7 +280472,7 @@ } }, { - "id": 24915, + "id": 24930, "properties": { "facing": "east", "half": "lower", @@ -280168,7 +280482,7 @@ } }, { - "id": 24916, + "id": 24931, "properties": { "facing": "east", "half": "lower", @@ -280178,7 +280492,7 @@ } }, { - "id": 24917, + "id": 24932, "properties": { "facing": "east", "half": "lower", @@ -280188,7 +280502,7 @@ } }, { - "id": 24918, + "id": 24933, "properties": { "facing": "east", "half": "lower", @@ -280198,7 +280512,7 @@ } }, { - "id": 24919, + "id": 24934, "properties": { "facing": "east", "half": "lower", @@ -280208,7 +280522,7 @@ } }, { - "id": 24920, + "id": 24935, "properties": { "facing": "east", "half": "lower", @@ -280233,14 +280547,14 @@ }, "states": [ { - "id": 25693, + "id": 25708, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 25694, + "id": 25709, "properties": { "waterlogged": "false" } @@ -280280,7 +280594,7 @@ }, "states": [ { - "id": 25369, + "id": 25384, "properties": { "facing": "north", "half": "top", @@ -280290,7 +280604,7 @@ } }, { - "id": 25370, + "id": 25385, "properties": { "facing": "north", "half": "top", @@ -280300,7 +280614,7 @@ } }, { - "id": 25371, + "id": 25386, "properties": { "facing": "north", "half": "top", @@ -280310,7 +280624,7 @@ } }, { - "id": 25372, + "id": 25387, "properties": { "facing": "north", "half": "top", @@ -280320,7 +280634,7 @@ } }, { - "id": 25373, + "id": 25388, "properties": { "facing": "north", "half": "top", @@ -280330,7 +280644,7 @@ } }, { - "id": 25374, + "id": 25389, "properties": { "facing": "north", "half": "top", @@ -280340,7 +280654,7 @@ } }, { - "id": 25375, + "id": 25390, "properties": { "facing": "north", "half": "top", @@ -280350,7 +280664,7 @@ } }, { - "id": 25376, + "id": 25391, "properties": { "facing": "north", "half": "top", @@ -280360,7 +280674,7 @@ } }, { - "id": 25377, + "id": 25392, "properties": { "facing": "north", "half": "bottom", @@ -280370,7 +280684,7 @@ } }, { - "id": 25378, + "id": 25393, "properties": { "facing": "north", "half": "bottom", @@ -280380,7 +280694,7 @@ } }, { - "id": 25379, + "id": 25394, "properties": { "facing": "north", "half": "bottom", @@ -280390,7 +280704,7 @@ } }, { - "id": 25380, + "id": 25395, "properties": { "facing": "north", "half": "bottom", @@ -280400,7 +280714,7 @@ } }, { - "id": 25381, + "id": 25396, "properties": { "facing": "north", "half": "bottom", @@ -280410,7 +280724,7 @@ } }, { - "id": 25382, + "id": 25397, "properties": { "facing": "north", "half": "bottom", @@ -280420,7 +280734,7 @@ } }, { - "id": 25383, + "id": 25398, "properties": { "facing": "north", "half": "bottom", @@ -280431,7 +280745,7 @@ }, { "default": true, - "id": 25384, + "id": 25399, "properties": { "facing": "north", "half": "bottom", @@ -280440,300 +280754,140 @@ "waterlogged": "false" } }, - { - "id": 25385, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25386, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25387, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25388, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25389, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25390, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25391, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25392, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25393, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25394, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25395, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 25396, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 25397, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25398, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 25399, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, { "id": 25400, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25401, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25402, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25403, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25404, "properties": { - "facing": "west", + "facing": "south", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25405, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25406, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25407, "properties": { - "facing": "west", + "facing": "south", "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25408, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25409, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25410, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25411, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25412, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25413, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 25414, - "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "false", "powered": "true", @@ -280741,97 +280895,257 @@ } }, { - "id": 25415, + "id": 25414, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true" } }, + { + "id": 25415, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, { "id": 25416, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { "id": 25417, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25418, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25419, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25420, "properties": { - "facing": "east", + "facing": "west", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 25421, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25422, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { "id": 25423, "properties": { - "facing": "east", + "facing": "west", "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 25424, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25425, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25426, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25427, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25428, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25429, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25430, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25431, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25432, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25433, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25434, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25435, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 25436, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 25437, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 25438, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 25439, "properties": { "facing": "east", "half": "top", @@ -280841,7 +281155,7 @@ } }, { - "id": 25425, + "id": 25440, "properties": { "facing": "east", "half": "bottom", @@ -280851,7 +281165,7 @@ } }, { - "id": 25426, + "id": 25441, "properties": { "facing": "east", "half": "bottom", @@ -280861,7 +281175,7 @@ } }, { - "id": 25427, + "id": 25442, "properties": { "facing": "east", "half": "bottom", @@ -280871,7 +281185,7 @@ } }, { - "id": 25428, + "id": 25443, "properties": { "facing": "east", "half": "bottom", @@ -280881,7 +281195,7 @@ } }, { - "id": 25429, + "id": 25444, "properties": { "facing": "east", "half": "bottom", @@ -280891,7 +281205,7 @@ } }, { - "id": 25430, + "id": 25445, "properties": { "facing": "east", "half": "bottom", @@ -280901,7 +281215,7 @@ } }, { - "id": 25431, + "id": 25446, "properties": { "facing": "east", "half": "bottom", @@ -280911,7 +281225,7 @@ } }, { - "id": 25432, + "id": 25447, "properties": { "facing": "east", "half": "bottom", @@ -280931,7 +281245,7 @@ "states": [ { "default": true, - "id": 23958 + "id": 23973 } ] }, @@ -280954,21 +281268,21 @@ }, "states": [ { - "id": 24295, + "id": 24310, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 24296, + "id": 24311, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 24297, + "id": 24312, "properties": { "type": "bottom", "waterlogged": "true" @@ -280976,21 +281290,21 @@ }, { "default": true, - "id": 24298, + "id": 24313, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 24299, + "id": 24314, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 24300, + "id": 24315, "properties": { "type": "double", "waterlogged": "false" @@ -281032,7 +281346,7 @@ }, "states": [ { - "id": 24049, + "id": 24064, "properties": { "facing": "north", "half": "top", @@ -281041,7 +281355,7 @@ } }, { - "id": 24050, + "id": 24065, "properties": { "facing": "north", "half": "top", @@ -281050,7 +281364,7 @@ } }, { - "id": 24051, + "id": 24066, "properties": { "facing": "north", "half": "top", @@ -281059,7 +281373,7 @@ } }, { - "id": 24052, + "id": 24067, "properties": { "facing": "north", "half": "top", @@ -281068,7 +281382,7 @@ } }, { - "id": 24053, + "id": 24068, "properties": { "facing": "north", "half": "top", @@ -281077,7 +281391,7 @@ } }, { - "id": 24054, + "id": 24069, "properties": { "facing": "north", "half": "top", @@ -281086,7 +281400,7 @@ } }, { - "id": 24055, + "id": 24070, "properties": { "facing": "north", "half": "top", @@ -281095,7 +281409,7 @@ } }, { - "id": 24056, + "id": 24071, "properties": { "facing": "north", "half": "top", @@ -281104,7 +281418,7 @@ } }, { - "id": 24057, + "id": 24072, "properties": { "facing": "north", "half": "top", @@ -281113,7 +281427,7 @@ } }, { - "id": 24058, + "id": 24073, "properties": { "facing": "north", "half": "top", @@ -281122,7 +281436,7 @@ } }, { - "id": 24059, + "id": 24074, "properties": { "facing": "north", "half": "bottom", @@ -281132,250 +281446,250 @@ }, { "default": true, - "id": 24060, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24061, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24062, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24063, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24064, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24065, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24066, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24067, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24068, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24069, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24070, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24071, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24072, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24073, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24074, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { "id": 24075, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24076, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24077, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { "id": 24078, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { "id": 24079, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "shape": "inner_right", + "waterlogged": "false" } }, { "id": 24080, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "shape": "outer_left", + "waterlogged": "true" } }, { "id": 24081, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "shape": "outer_left", + "waterlogged": "false" } }, { "id": 24082, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "shape": "outer_right", + "waterlogged": "true" } }, { "id": 24083, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "shape": "outer_right", + "waterlogged": "false" } }, { "id": 24084, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24085, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24086, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24087, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24088, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24089, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24090, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24091, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24092, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24093, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24094, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24095, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24096, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24097, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24098, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24099, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24100, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24101, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24102, "properties": { "facing": "south", "half": "bottom", @@ -281384,7 +281698,7 @@ } }, { - "id": 24088, + "id": 24103, "properties": { "facing": "south", "half": "bottom", @@ -281392,170 +281706,170 @@ "waterlogged": "false" } }, - { - "id": 24089, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24090, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24091, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24092, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24093, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24094, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24095, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24096, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24097, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24098, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24099, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24100, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24101, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24102, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24103, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 24104, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24105, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { "id": 24106, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { "id": 24107, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24108, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24109, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24110, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24111, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24112, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24113, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24114, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24115, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24116, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24117, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24118, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24119, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24120, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24121, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24122, "properties": { "facing": "west", "half": "bottom", @@ -281564,7 +281878,7 @@ } }, { - "id": 24108, + "id": 24123, "properties": { "facing": "west", "half": "bottom", @@ -281572,152 +281886,152 @@ "waterlogged": "false" } }, - { - "id": 24109, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24110, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24111, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24112, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24113, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 24114, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 24115, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 24116, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 24117, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 24118, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 24119, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 24120, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 24121, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 24122, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 24123, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, { "id": 24124, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { "id": 24125, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24126, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24127, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24128, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24129, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24130, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24131, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24132, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24133, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24134, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24135, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24136, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24137, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24138, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24139, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24140, "properties": { "facing": "east", "half": "bottom", @@ -281726,7 +282040,7 @@ } }, { - "id": 24126, + "id": 24141, "properties": { "facing": "east", "half": "bottom", @@ -281735,7 +282049,7 @@ } }, { - "id": 24127, + "id": 24142, "properties": { "facing": "east", "half": "bottom", @@ -281744,7 +282058,7 @@ } }, { - "id": 24128, + "id": 24143, "properties": { "facing": "east", "half": "bottom", @@ -281792,157 +282106,157 @@ "states": [ { "default": true, - "id": 19624, + "id": 19634, "properties": { "age": "0" } }, { - "id": 19625, + "id": 19635, "properties": { "age": "1" } }, { - "id": 19626, + "id": 19636, "properties": { "age": "2" } }, { - "id": 19627, + "id": 19637, "properties": { "age": "3" } }, { - "id": 19628, + "id": 19638, "properties": { "age": "4" } }, { - "id": 19629, + "id": 19639, "properties": { "age": "5" } }, { - "id": 19630, + "id": 19640, "properties": { "age": "6" } }, { - "id": 19631, + "id": 19641, "properties": { "age": "7" } }, { - "id": 19632, + "id": 19642, "properties": { "age": "8" } }, { - "id": 19633, + "id": 19643, "properties": { "age": "9" } }, { - "id": 19634, + "id": 19644, "properties": { "age": "10" } }, { - "id": 19635, + "id": 19645, "properties": { "age": "11" } }, { - "id": 19636, + "id": 19646, "properties": { "age": "12" } }, { - "id": 19637, + "id": 19647, "properties": { "age": "13" } }, { - "id": 19638, + "id": 19648, "properties": { "age": "14" } }, { - "id": 19639, + "id": 19649, "properties": { "age": "15" } }, { - "id": 19640, + "id": 19650, "properties": { "age": "16" } }, { - "id": 19641, + "id": 19651, "properties": { "age": "17" } }, { - "id": 19642, + "id": 19652, "properties": { "age": "18" } }, { - "id": 19643, + "id": 19653, "properties": { "age": "19" } }, { - "id": 19644, + "id": 19654, "properties": { "age": "20" } }, { - "id": 19645, + "id": 19655, "properties": { "age": "21" } }, { - "id": 19646, + "id": 19656, "properties": { "age": "22" } }, { - "id": 19647, + "id": 19657, "properties": { "age": "23" } }, { - "id": 19648, + "id": 19658, "properties": { "age": "24" } }, { - "id": 19649, + "id": 19659, "properties": { "age": "25" } @@ -281957,7 +282271,7 @@ "states": [ { "default": true, - "id": 19650 + "id": 19660 } ] }, @@ -281993,49 +282307,49 @@ "states": [ { "default": true, - "id": 4333, + "id": 4342, "properties": { "age": "0" } }, { - "id": 4334, + "id": 4343, "properties": { "age": "1" } }, { - "id": 4335, + "id": 4344, "properties": { "age": "2" } }, { - "id": 4336, + "id": 4345, "properties": { "age": "3" } }, { - "id": 4337, + "id": 4346, "properties": { "age": "4" } }, { - "id": 4338, + "id": 4347, "properties": { "age": "5" } }, { - "id": 4339, + "id": 4348, "properties": { "age": "6" } }, { - "id": 4340, + "id": 4349, "properties": { "age": "7" } @@ -282071,97 +282385,97 @@ "states": [ { "default": true, - "id": 11638, + "id": 11648, "properties": { "rotation": "0" } }, { - "id": 11639, + "id": 11649, "properties": { "rotation": "1" } }, { - "id": 11640, + "id": 11650, "properties": { "rotation": "2" } }, { - "id": 11641, + "id": 11651, "properties": { "rotation": "3" } }, { - "id": 11642, + "id": 11652, "properties": { "rotation": "4" } }, { - "id": 11643, + "id": 11653, "properties": { "rotation": "5" } }, { - "id": 11644, + "id": 11654, "properties": { "rotation": "6" } }, { - "id": 11645, + "id": 11655, "properties": { "rotation": "7" } }, { - "id": 11646, + "id": 11656, "properties": { "rotation": "8" } }, { - "id": 11647, + "id": 11657, "properties": { "rotation": "9" } }, { - "id": 11648, + "id": 11658, "properties": { "rotation": "10" } }, { - "id": 11649, + "id": 11659, "properties": { "rotation": "11" } }, { - "id": 11650, + "id": 11660, "properties": { "rotation": "12" } }, { - "id": 11651, + "id": 11661, "properties": { "rotation": "13" } }, { - "id": 11652, + "id": 11662, "properties": { "rotation": "14" } }, { - "id": 11653, + "id": 11663, "properties": { "rotation": "15" } @@ -282345,7 +282659,7 @@ }, "states": [ { - "id": 21754, + "id": 21769, "properties": { "candles": "1", "lit": "true", @@ -282353,7 +282667,7 @@ } }, { - "id": 21755, + "id": 21770, "properties": { "candles": "1", "lit": "true", @@ -282361,7 +282675,7 @@ } }, { - "id": 21756, + "id": 21771, "properties": { "candles": "1", "lit": "false", @@ -282370,7 +282684,7 @@ }, { "default": true, - "id": 21757, + "id": 21772, "properties": { "candles": "1", "lit": "false", @@ -282378,7 +282692,7 @@ } }, { - "id": 21758, + "id": 21773, "properties": { "candles": "2", "lit": "true", @@ -282386,7 +282700,7 @@ } }, { - "id": 21759, + "id": 21774, "properties": { "candles": "2", "lit": "true", @@ -282394,7 +282708,7 @@ } }, { - "id": 21760, + "id": 21775, "properties": { "candles": "2", "lit": "false", @@ -282402,7 +282716,7 @@ } }, { - "id": 21761, + "id": 21776, "properties": { "candles": "2", "lit": "false", @@ -282410,7 +282724,7 @@ } }, { - "id": 21762, + "id": 21777, "properties": { "candles": "3", "lit": "true", @@ -282418,7 +282732,7 @@ } }, { - "id": 21763, + "id": 21778, "properties": { "candles": "3", "lit": "true", @@ -282426,7 +282740,7 @@ } }, { - "id": 21764, + "id": 21779, "properties": { "candles": "3", "lit": "false", @@ -282434,7 +282748,7 @@ } }, { - "id": 21765, + "id": 21780, "properties": { "candles": "3", "lit": "false", @@ -282442,7 +282756,7 @@ } }, { - "id": 21766, + "id": 21781, "properties": { "candles": "4", "lit": "true", @@ -282450,7 +282764,7 @@ } }, { - "id": 21767, + "id": 21782, "properties": { "candles": "4", "lit": "true", @@ -282458,7 +282772,7 @@ } }, { - "id": 21768, + "id": 21783, "properties": { "candles": "4", "lit": "false", @@ -282466,7 +282780,7 @@ } }, { - "id": 21769, + "id": 21784, "properties": { "candles": "4", "lit": "false", @@ -282489,14 +282803,14 @@ }, "states": [ { - "id": 22012, + "id": 22027, "properties": { "lit": "true" } }, { "default": true, - "id": 22013, + "id": 22028, "properties": { "lit": "false" } @@ -282512,7 +282826,7 @@ "states": [ { "default": true, - "id": 11607 + "id": 11617 } ] }, @@ -282524,7 +282838,7 @@ "states": [ { "default": true, - "id": 13741 + "id": 13751 } ] }, @@ -282537,7 +282851,7 @@ "states": [ { "default": true, - "id": 13757 + "id": 13767 } ] }, @@ -282557,25 +282871,25 @@ "states": [ { "default": true, - "id": 13677, + "id": 13687, "properties": { "facing": "north" } }, { - "id": 13678, + "id": 13688, "properties": { "facing": "south" } }, { - "id": 13679, + "id": 13689, "properties": { "facing": "west" } }, { - "id": 13680, + "id": 13690, "properties": { "facing": "east" } @@ -282600,38 +282914,38 @@ }, "states": [ { - "id": 13581, + "id": 13591, "properties": { "facing": "north" } }, { - "id": 13582, + "id": 13592, "properties": { "facing": "east" } }, { - "id": 13583, + "id": 13593, "properties": { "facing": "south" } }, { - "id": 13584, + "id": 13594, "properties": { "facing": "west" } }, { "default": true, - "id": 13585, + "id": 13595, "properties": { "facing": "up" } }, { - "id": 13586, + "id": 13596, "properties": { "facing": "down" } @@ -282647,7 +282961,7 @@ "states": [ { "default": true, - "id": 6114 + "id": 6124 } ] }, @@ -282680,113 +282994,13 @@ ] }, "states": [ - { - "id": 10171, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10172, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10173, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10174, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10175, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10176, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10177, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10178, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10179, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10180, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10181, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -282794,9 +283008,9 @@ "id": 10182, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -282804,9 +283018,9 @@ "id": 10183, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -282814,14 +283028,114 @@ "id": 10184, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 10185, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10186, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10187, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10188, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10189, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10190, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10191, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10192, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10193, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10194, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10195, "properties": { "east": "true", "north": "false", @@ -282831,7 +283145,7 @@ } }, { - "id": 10186, + "id": 10196, "properties": { "east": "true", "north": "false", @@ -282840,118 +283154,118 @@ "west": "false" } }, - { - "id": 10187, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10188, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10189, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10190, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10191, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10192, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10193, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10194, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10195, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10196, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10197, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 10198, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10199, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10200, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10201, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10202, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10203, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10204, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10205, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10206, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10207, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10208, "properties": { "east": "false", "north": "false", @@ -282961,7 +283275,7 @@ } }, { - "id": 10199, + "id": 10209, "properties": { "east": "false", "north": "false", @@ -282971,7 +283285,7 @@ } }, { - "id": 10200, + "id": 10210, "properties": { "east": "false", "north": "false", @@ -282981,7 +283295,7 @@ } }, { - "id": 10201, + "id": 10211, "properties": { "east": "false", "north": "false", @@ -282992,7 +283306,7 @@ }, { "default": true, - "id": 10202, + "id": 10212, "properties": { "east": "false", "north": "false", @@ -283005,13 +283319,13 @@ }, "minecraft:white_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 10155 + "id": 10165 } ] }, @@ -283029,7 +283343,7 @@ "states": [ { "default": true, - "id": 2126 + "id": 2129 } ] }, @@ -283050,25 +283364,25 @@ "states": [ { "default": true, - "id": 11894, + "id": 11904, "properties": { "facing": "north" } }, { - "id": 11895, + "id": 11905, "properties": { "facing": "south" } }, { - "id": 11896, + "id": 11906, "properties": { "facing": "west" } }, { - "id": 11897, + "id": 11907, "properties": { "facing": "east" } @@ -283083,7 +283397,142 @@ "states": [ { "default": true, - "id": 2090 + "id": 2093 + } + ] + }, + "minecraft:wildflowers": { + "definition": { + "type": "minecraft:flower_bed", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "flower_amount": [ + "1", + "2", + "3", + "4" + ] + }, + "states": [ + { + "default": true, + "id": 25871, + "properties": { + "facing": "north", + "flower_amount": "1" + } + }, + { + "id": 25872, + "properties": { + "facing": "north", + "flower_amount": "2" + } + }, + { + "id": 25873, + "properties": { + "facing": "north", + "flower_amount": "3" + } + }, + { + "id": 25874, + "properties": { + "facing": "north", + "flower_amount": "4" + } + }, + { + "id": 25875, + "properties": { + "facing": "south", + "flower_amount": "1" + } + }, + { + "id": 25876, + "properties": { + "facing": "south", + "flower_amount": "2" + } + }, + { + "id": 25877, + "properties": { + "facing": "south", + "flower_amount": "3" + } + }, + { + "id": 25878, + "properties": { + "facing": "south", + "flower_amount": "4" + } + }, + { + "id": 25879, + "properties": { + "facing": "west", + "flower_amount": "1" + } + }, + { + "id": 25880, + "properties": { + "facing": "west", + "flower_amount": "2" + } + }, + { + "id": 25881, + "properties": { + "facing": "west", + "flower_amount": "3" + } + }, + { + "id": 25882, + "properties": { + "facing": "west", + "flower_amount": "4" + } + }, + { + "id": 25883, + "properties": { + "facing": "east", + "flower_amount": "1" + } + }, + { + "id": 25884, + "properties": { + "facing": "east", + "flower_amount": "2" + } + }, + { + "id": 25885, + "properties": { + "facing": "east", + "flower_amount": "3" + } + }, + { + "id": 25886, + "properties": { + "facing": "east", + "flower_amount": "4" + } } ] }, @@ -283101,7 +283550,7 @@ "states": [ { "default": true, - "id": 2130 + "id": 2133 } ] }, @@ -283136,112 +283585,112 @@ }, "states": [ { - "id": 9666, + "id": 9676, "properties": { "powered": "true", "rotation": "0" } }, { - "id": 9667, + "id": 9677, "properties": { "powered": "true", "rotation": "1" } }, { - "id": 9668, + "id": 9678, "properties": { "powered": "true", "rotation": "2" } }, { - "id": 9669, + "id": 9679, "properties": { "powered": "true", "rotation": "3" } }, { - "id": 9670, + "id": 9680, "properties": { "powered": "true", "rotation": "4" } }, { - "id": 9671, + "id": 9681, "properties": { "powered": "true", "rotation": "5" } }, { - "id": 9672, + "id": 9682, "properties": { "powered": "true", "rotation": "6" } }, { - "id": 9673, + "id": 9683, "properties": { "powered": "true", "rotation": "7" } }, { - "id": 9674, + "id": 9684, "properties": { "powered": "true", "rotation": "8" } }, { - "id": 9675, + "id": 9685, "properties": { "powered": "true", "rotation": "9" } }, { - "id": 9676, + "id": 9686, "properties": { "powered": "true", "rotation": "10" } }, { - "id": 9677, + "id": 9687, "properties": { "powered": "true", "rotation": "11" } }, { - "id": 9678, + "id": 9688, "properties": { "powered": "true", "rotation": "12" } }, { - "id": 9679, + "id": 9689, "properties": { "powered": "true", "rotation": "13" } }, { - "id": 9680, + "id": 9690, "properties": { "powered": "true", "rotation": "14" } }, { - "id": 9681, + "id": 9691, "properties": { "powered": "true", "rotation": "15" @@ -283249,112 +283698,112 @@ }, { "default": true, - "id": 9682, + "id": 9692, "properties": { "powered": "false", "rotation": "0" } }, { - "id": 9683, + "id": 9693, "properties": { "powered": "false", "rotation": "1" } }, { - "id": 9684, + "id": 9694, "properties": { "powered": "false", "rotation": "2" } }, { - "id": 9685, + "id": 9695, "properties": { "powered": "false", "rotation": "3" } }, { - "id": 9686, + "id": 9696, "properties": { "powered": "false", "rotation": "4" } }, { - "id": 9687, + "id": 9697, "properties": { "powered": "false", "rotation": "5" } }, { - "id": 9688, + "id": 9698, "properties": { "powered": "false", "rotation": "6" } }, { - "id": 9689, + "id": 9699, "properties": { "powered": "false", "rotation": "7" } }, { - "id": 9690, + "id": 9700, "properties": { "powered": "false", "rotation": "8" } }, { - "id": 9691, + "id": 9701, "properties": { "powered": "false", "rotation": "9" } }, { - "id": 9692, + "id": 9702, "properties": { "powered": "false", "rotation": "10" } }, { - "id": 9693, + "id": 9703, "properties": { "powered": "false", "rotation": "11" } }, { - "id": 9694, + "id": 9704, "properties": { "powered": "false", "rotation": "12" } }, { - "id": 9695, + "id": 9705, "properties": { "powered": "false", "rotation": "13" } }, { - "id": 9696, + "id": 9706, "properties": { "powered": "false", "rotation": "14" } }, { - "id": 9697, + "id": 9707, "properties": { "powered": "false", "rotation": "15" @@ -283381,7 +283830,7 @@ }, "states": [ { - "id": 9698, + "id": 9708, "properties": { "facing": "north", "powered": "true" @@ -283389,49 +283838,49 @@ }, { "default": true, - "id": 9699, + "id": 9709, "properties": { "facing": "north", "powered": "false" } }, { - "id": 9700, + "id": 9710, "properties": { "facing": "south", "powered": "true" } }, { - "id": 9701, + "id": 9711, "properties": { "facing": "south", "powered": "false" } }, { - "id": 9702, + "id": 9712, "properties": { "facing": "west", "powered": "true" } }, { - "id": 9703, + "id": 9713, "properties": { "facing": "west", "powered": "false" } }, { - "id": 9704, + "id": 9714, "properties": { "facing": "east", "powered": "true" } }, { - "id": 9705, + "id": 9715, "properties": { "facing": "east", "powered": "false" @@ -283468,97 +283917,97 @@ "states": [ { "default": true, - "id": 11702, + "id": 11712, "properties": { "rotation": "0" } }, { - "id": 11703, + "id": 11713, "properties": { "rotation": "1" } }, { - "id": 11704, + "id": 11714, "properties": { "rotation": "2" } }, { - "id": 11705, + "id": 11715, "properties": { "rotation": "3" } }, { - "id": 11706, + "id": 11716, "properties": { "rotation": "4" } }, { - "id": 11707, + "id": 11717, "properties": { "rotation": "5" } }, { - "id": 11708, + "id": 11718, "properties": { "rotation": "6" } }, { - "id": 11709, + "id": 11719, "properties": { "rotation": "7" } }, { - "id": 11710, + "id": 11720, "properties": { "rotation": "8" } }, { - "id": 11711, + "id": 11721, "properties": { "rotation": "9" } }, { - "id": 11712, + "id": 11722, "properties": { "rotation": "10" } }, { - "id": 11713, + "id": 11723, "properties": { "rotation": "11" } }, { - "id": 11714, + "id": 11724, "properties": { "rotation": "12" } }, { - "id": 11715, + "id": 11725, "properties": { "rotation": "13" } }, { - "id": 11716, + "id": 11726, "properties": { "rotation": "14" } }, { - "id": 11717, + "id": 11727, "properties": { "rotation": "15" } @@ -283742,7 +284191,7 @@ }, "states": [ { - "id": 21818, + "id": 21833, "properties": { "candles": "1", "lit": "true", @@ -283750,7 +284199,7 @@ } }, { - "id": 21819, + "id": 21834, "properties": { "candles": "1", "lit": "true", @@ -283758,7 +284207,7 @@ } }, { - "id": 21820, + "id": 21835, "properties": { "candles": "1", "lit": "false", @@ -283767,7 +284216,7 @@ }, { "default": true, - "id": 21821, + "id": 21836, "properties": { "candles": "1", "lit": "false", @@ -283775,7 +284224,7 @@ } }, { - "id": 21822, + "id": 21837, "properties": { "candles": "2", "lit": "true", @@ -283783,7 +284232,7 @@ } }, { - "id": 21823, + "id": 21838, "properties": { "candles": "2", "lit": "true", @@ -283791,7 +284240,7 @@ } }, { - "id": 21824, + "id": 21839, "properties": { "candles": "2", "lit": "false", @@ -283799,7 +284248,7 @@ } }, { - "id": 21825, + "id": 21840, "properties": { "candles": "2", "lit": "false", @@ -283807,7 +284256,7 @@ } }, { - "id": 21826, + "id": 21841, "properties": { "candles": "3", "lit": "true", @@ -283815,7 +284264,7 @@ } }, { - "id": 21827, + "id": 21842, "properties": { "candles": "3", "lit": "true", @@ -283823,7 +284272,7 @@ } }, { - "id": 21828, + "id": 21843, "properties": { "candles": "3", "lit": "false", @@ -283831,7 +284280,7 @@ } }, { - "id": 21829, + "id": 21844, "properties": { "candles": "3", "lit": "false", @@ -283839,7 +284288,7 @@ } }, { - "id": 21830, + "id": 21845, "properties": { "candles": "4", "lit": "true", @@ -283847,7 +284296,7 @@ } }, { - "id": 21831, + "id": 21846, "properties": { "candles": "4", "lit": "true", @@ -283855,7 +284304,7 @@ } }, { - "id": 21832, + "id": 21847, "properties": { "candles": "4", "lit": "false", @@ -283863,7 +284312,7 @@ } }, { - "id": 21833, + "id": 21848, "properties": { "candles": "4", "lit": "false", @@ -283886,14 +284335,14 @@ }, "states": [ { - "id": 22020, + "id": 22035, "properties": { "lit": "true" } }, { "default": true, - "id": 22021, + "id": 22036, "properties": { "lit": "false" } @@ -283909,7 +284358,7 @@ "states": [ { "default": true, - "id": 11611 + "id": 11621 } ] }, @@ -283921,7 +284370,7 @@ "states": [ { "default": true, - "id": 13745 + "id": 13755 } ] }, @@ -283934,7 +284383,7 @@ "states": [ { "default": true, - "id": 13761 + "id": 13771 } ] }, @@ -283954,25 +284403,25 @@ "states": [ { "default": true, - "id": 13693, + "id": 13703, "properties": { "facing": "north" } }, { - "id": 13694, + "id": 13704, "properties": { "facing": "south" } }, { - "id": 13695, + "id": 13705, "properties": { "facing": "west" } }, { - "id": 13696, + "id": 13706, "properties": { "facing": "east" } @@ -283997,38 +284446,38 @@ }, "states": [ { - "id": 13605, + "id": 13615, "properties": { "facing": "north" } }, { - "id": 13606, + "id": 13616, "properties": { "facing": "east" } }, { - "id": 13607, + "id": 13617, "properties": { "facing": "south" } }, { - "id": 13608, + "id": 13618, "properties": { "facing": "west" } }, { "default": true, - "id": 13609, + "id": 13619, "properties": { "facing": "up" } }, { - "id": 13610, + "id": 13620, "properties": { "facing": "down" } @@ -284044,7 +284493,7 @@ "states": [ { "default": true, - "id": 6118 + "id": 6128 } ] }, @@ -284077,113 +284526,13 @@ ] }, "states": [ - { - "id": 10299, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10300, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10301, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10302, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10303, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10304, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10305, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10306, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10307, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10308, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10309, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, @@ -284191,9 +284540,9 @@ "id": 10310, "properties": { "east": "true", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "false" } }, @@ -284201,9 +284550,9 @@ "id": 10311, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "true" } }, @@ -284211,14 +284560,114 @@ "id": 10312, "properties": { "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", + "north": "true", + "south": "true", + "waterlogged": "false", "west": "false" } }, { "id": 10313, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10314, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10315, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10316, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10317, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10318, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10319, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10320, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10321, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10322, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10323, "properties": { "east": "true", "north": "false", @@ -284228,7 +284677,7 @@ } }, { - "id": 10314, + "id": 10324, "properties": { "east": "true", "north": "false", @@ -284237,118 +284686,118 @@ "west": "false" } }, - { - "id": 10315, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10316, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10317, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10318, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10319, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10320, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 10321, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 10322, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 10323, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 10324, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, { "id": 10325, "properties": { "east": "false", - "north": "false", + "north": "true", "south": "true", - "waterlogged": "false", + "waterlogged": "true", "west": "true" } }, { "id": 10326, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10327, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10328, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10329, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10330, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10331, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10332, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 10333, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 10334, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 10335, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 10336, "properties": { "east": "false", "north": "false", @@ -284358,7 +284807,7 @@ } }, { - "id": 10327, + "id": 10337, "properties": { "east": "false", "north": "false", @@ -284368,7 +284817,7 @@ } }, { - "id": 10328, + "id": 10338, "properties": { "east": "false", "north": "false", @@ -284378,7 +284827,7 @@ } }, { - "id": 10329, + "id": 10339, "properties": { "east": "false", "north": "false", @@ -284389,7 +284838,7 @@ }, { "default": true, - "id": 10330, + "id": 10340, "properties": { "east": "false", "north": "false", @@ -284402,13 +284851,13 @@ }, "minecraft:yellow_terracotta": { "definition": { - "type": "minecraft:block", + "type": "minecraft:terracotta", "properties": {} }, "states": [ { "default": true, - "id": 10159 + "id": 10169 } ] }, @@ -284429,25 +284878,25 @@ "states": [ { "default": true, - "id": 11910, + "id": 11920, "properties": { "facing": "north" } }, { - "id": 11911, + "id": 11921, "properties": { "facing": "south" } }, { - "id": 11912, + "id": 11922, "properties": { "facing": "west" } }, { - "id": 11913, + "id": 11923, "properties": { "facing": "east" } @@ -284462,7 +284911,7 @@ "states": [ { "default": true, - "id": 2094 + "id": 2097 } ] }, @@ -284498,112 +284947,112 @@ }, "states": [ { - "id": 9706, + "id": 9716, "properties": { "powered": "true", "rotation": "0" } }, { - "id": 9707, + "id": 9717, "properties": { "powered": "true", "rotation": "1" } }, { - "id": 9708, + "id": 9718, "properties": { "powered": "true", "rotation": "2" } }, { - "id": 9709, + "id": 9719, "properties": { "powered": "true", "rotation": "3" } }, { - "id": 9710, + "id": 9720, "properties": { "powered": "true", "rotation": "4" } }, { - "id": 9711, + "id": 9721, "properties": { "powered": "true", "rotation": "5" } }, { - "id": 9712, + "id": 9722, "properties": { "powered": "true", "rotation": "6" } }, { - "id": 9713, + "id": 9723, "properties": { "powered": "true", "rotation": "7" } }, { - "id": 9714, + "id": 9724, "properties": { "powered": "true", "rotation": "8" } }, { - "id": 9715, + "id": 9725, "properties": { "powered": "true", "rotation": "9" } }, { - "id": 9716, + "id": 9726, "properties": { "powered": "true", "rotation": "10" } }, { - "id": 9717, + "id": 9727, "properties": { "powered": "true", "rotation": "11" } }, { - "id": 9718, + "id": 9728, "properties": { "powered": "true", "rotation": "12" } }, { - "id": 9719, + "id": 9729, "properties": { "powered": "true", "rotation": "13" } }, { - "id": 9720, + "id": 9730, "properties": { "powered": "true", "rotation": "14" } }, { - "id": 9721, + "id": 9731, "properties": { "powered": "true", "rotation": "15" @@ -284611,112 +285060,112 @@ }, { "default": true, - "id": 9722, + "id": 9732, "properties": { "powered": "false", "rotation": "0" } }, { - "id": 9723, + "id": 9733, "properties": { "powered": "false", "rotation": "1" } }, { - "id": 9724, + "id": 9734, "properties": { "powered": "false", "rotation": "2" } }, { - "id": 9725, + "id": 9735, "properties": { "powered": "false", "rotation": "3" } }, { - "id": 9726, + "id": 9736, "properties": { "powered": "false", "rotation": "4" } }, { - "id": 9727, + "id": 9737, "properties": { "powered": "false", "rotation": "5" } }, { - "id": 9728, + "id": 9738, "properties": { "powered": "false", "rotation": "6" } }, { - "id": 9729, + "id": 9739, "properties": { "powered": "false", "rotation": "7" } }, { - "id": 9730, + "id": 9740, "properties": { "powered": "false", "rotation": "8" } }, { - "id": 9731, + "id": 9741, "properties": { "powered": "false", "rotation": "9" } }, { - "id": 9732, + "id": 9742, "properties": { "powered": "false", "rotation": "10" } }, { - "id": 9733, + "id": 9743, "properties": { "powered": "false", "rotation": "11" } }, { - "id": 9734, + "id": 9744, "properties": { "powered": "false", "rotation": "12" } }, { - "id": 9735, + "id": 9745, "properties": { "powered": "false", "rotation": "13" } }, { - "id": 9736, + "id": 9746, "properties": { "powered": "false", "rotation": "14" } }, { - "id": 9737, + "id": 9747, "properties": { "powered": "false", "rotation": "15" @@ -284744,7 +285193,7 @@ }, "states": [ { - "id": 9738, + "id": 9748, "properties": { "facing": "north", "powered": "true" @@ -284752,49 +285201,49 @@ }, { "default": true, - "id": 9739, + "id": 9749, "properties": { "facing": "north", "powered": "false" } }, { - "id": 9740, + "id": 9750, "properties": { "facing": "south", "powered": "true" } }, { - "id": 9741, + "id": 9751, "properties": { "facing": "south", "powered": "false" } }, { - "id": 9742, + "id": 9752, "properties": { "facing": "west", "powered": "true" } }, { - "id": 9743, + "id": 9753, "properties": { "facing": "west", "powered": "false" } }, { - "id": 9744, + "id": 9754, "properties": { "facing": "east", "powered": "true" } }, { - "id": 9745, + "id": 9755, "properties": { "facing": "east", "powered": "false" diff --git a/src/main/resources/reports/packets.json b/src/main/resources/reports/packets.json index 0c39708..e867acd 100644 --- a/src/main/resources/reports/packets.json +++ b/src/main/resources/reports/packets.json @@ -131,370 +131,370 @@ "minecraft:add_entity": { "protocol_id": 1 }, - "minecraft:add_experience_orb": { + "minecraft:animate": { "protocol_id": 2 }, - "minecraft:animate": { + "minecraft:award_stats": { "protocol_id": 3 }, - "minecraft:award_stats": { + "minecraft:block_changed_ack": { "protocol_id": 4 }, - "minecraft:block_changed_ack": { + "minecraft:block_destruction": { "protocol_id": 5 }, - "minecraft:block_destruction": { + "minecraft:block_entity_data": { "protocol_id": 6 }, - "minecraft:block_entity_data": { + "minecraft:block_event": { "protocol_id": 7 }, - "minecraft:block_event": { + "minecraft:block_update": { "protocol_id": 8 }, - "minecraft:block_update": { - "protocol_id": 9 - }, "minecraft:boss_event": { - "protocol_id": 10 + "protocol_id": 9 }, "minecraft:bundle_delimiter": { "protocol_id": 0 }, "minecraft:change_difficulty": { - "protocol_id": 11 + "protocol_id": 10 }, "minecraft:chunk_batch_finished": { - "protocol_id": 12 + "protocol_id": 11 }, "minecraft:chunk_batch_start": { - "protocol_id": 13 + "protocol_id": 12 }, "minecraft:chunks_biomes": { - "protocol_id": 14 + "protocol_id": 13 }, "minecraft:clear_titles": { - "protocol_id": 15 + "protocol_id": 14 }, "minecraft:command_suggestions": { - "protocol_id": 16 + "protocol_id": 15 }, "minecraft:commands": { - "protocol_id": 17 + "protocol_id": 16 }, "minecraft:container_close": { - "protocol_id": 18 + "protocol_id": 17 }, "minecraft:container_set_content": { - "protocol_id": 19 + "protocol_id": 18 }, "minecraft:container_set_data": { - "protocol_id": 20 + "protocol_id": 19 }, "minecraft:container_set_slot": { - "protocol_id": 21 + "protocol_id": 20 }, "minecraft:cookie_request": { - "protocol_id": 22 + "protocol_id": 21 }, "minecraft:cooldown": { - "protocol_id": 23 + "protocol_id": 22 }, "minecraft:custom_chat_completions": { - "protocol_id": 24 + "protocol_id": 23 }, "minecraft:custom_payload": { - "protocol_id": 25 + "protocol_id": 24 }, "minecraft:custom_report_details": { "protocol_id": 129 }, "minecraft:damage_event": { - "protocol_id": 26 + "protocol_id": 25 }, "minecraft:debug_sample": { - "protocol_id": 27 + "protocol_id": 26 }, "minecraft:delete_chat": { - "protocol_id": 28 + "protocol_id": 27 }, "minecraft:disconnect": { - "protocol_id": 29 + "protocol_id": 28 }, "minecraft:disguised_chat": { - "protocol_id": 30 + "protocol_id": 29 }, "minecraft:entity_event": { - "protocol_id": 31 + "protocol_id": 30 }, "minecraft:entity_position_sync": { - "protocol_id": 32 + "protocol_id": 31 }, "minecraft:explode": { - "protocol_id": 33 + "protocol_id": 32 }, "minecraft:forget_level_chunk": { - "protocol_id": 34 + "protocol_id": 33 }, "minecraft:game_event": { - "protocol_id": 35 + "protocol_id": 34 }, "minecraft:horse_screen_open": { - "protocol_id": 36 + "protocol_id": 35 }, "minecraft:hurt_animation": { - "protocol_id": 37 + "protocol_id": 36 }, "minecraft:initialize_border": { - "protocol_id": 38 + "protocol_id": 37 }, "minecraft:keep_alive": { - "protocol_id": 39 + "protocol_id": 38 }, "minecraft:level_chunk_with_light": { - "protocol_id": 40 + "protocol_id": 39 }, "minecraft:level_event": { - "protocol_id": 41 + "protocol_id": 40 }, "minecraft:level_particles": { - "protocol_id": 42 + "protocol_id": 41 }, "minecraft:light_update": { - "protocol_id": 43 + "protocol_id": 42 }, "minecraft:login": { - "protocol_id": 44 + "protocol_id": 43 }, "minecraft:map_item_data": { - "protocol_id": 45 + "protocol_id": 44 }, "minecraft:merchant_offers": { - "protocol_id": 46 + "protocol_id": 45 }, "minecraft:move_entity_pos": { - "protocol_id": 47 + "protocol_id": 46 }, "minecraft:move_entity_pos_rot": { - "protocol_id": 48 + "protocol_id": 47 }, "minecraft:move_entity_rot": { - "protocol_id": 50 - }, - "minecraft:move_minecart_along_track": { "protocol_id": 49 }, + "minecraft:move_minecart_along_track": { + "protocol_id": 48 + }, "minecraft:move_vehicle": { - "protocol_id": 51 + "protocol_id": 50 }, "minecraft:open_book": { - "protocol_id": 52 + "protocol_id": 51 }, "minecraft:open_screen": { - "protocol_id": 53 + "protocol_id": 52 }, "minecraft:open_sign_editor": { - "protocol_id": 54 + "protocol_id": 53 }, "minecraft:ping": { - "protocol_id": 55 + "protocol_id": 54 }, "minecraft:place_ghost_recipe": { - "protocol_id": 57 + "protocol_id": 56 }, "minecraft:player_abilities": { - "protocol_id": 58 + "protocol_id": 57 }, "minecraft:player_chat": { - "protocol_id": 59 + "protocol_id": 58 }, "minecraft:player_combat_end": { - "protocol_id": 60 + "protocol_id": 59 }, "minecraft:player_combat_enter": { - "protocol_id": 61 + "protocol_id": 60 }, "minecraft:player_combat_kill": { - "protocol_id": 62 + "protocol_id": 61 }, "minecraft:player_info_remove": { - "protocol_id": 63 + "protocol_id": 62 }, "minecraft:player_info_update": { - "protocol_id": 64 + "protocol_id": 63 }, "minecraft:player_look_at": { - "protocol_id": 65 + "protocol_id": 64 }, "minecraft:player_position": { - "protocol_id": 66 + "protocol_id": 65 }, "minecraft:player_rotation": { - "protocol_id": 67 + "protocol_id": 66 }, "minecraft:pong_response": { - "protocol_id": 56 + "protocol_id": 55 }, "minecraft:projectile_power": { "protocol_id": 128 }, "minecraft:recipe_book_add": { - "protocol_id": 68 + "protocol_id": 67 }, "minecraft:recipe_book_remove": { - "protocol_id": 69 + "protocol_id": 68 }, "minecraft:recipe_book_settings": { - "protocol_id": 70 + "protocol_id": 69 }, "minecraft:remove_entities": { - "protocol_id": 71 + "protocol_id": 70 }, "minecraft:remove_mob_effect": { - "protocol_id": 72 + "protocol_id": 71 }, "minecraft:reset_score": { - "protocol_id": 73 + "protocol_id": 72 }, "minecraft:resource_pack_pop": { - "protocol_id": 74 + "protocol_id": 73 }, "minecraft:resource_pack_push": { - "protocol_id": 75 + "protocol_id": 74 }, "minecraft:respawn": { - "protocol_id": 76 + "protocol_id": 75 }, "minecraft:rotate_head": { - "protocol_id": 77 + "protocol_id": 76 }, "minecraft:section_blocks_update": { - "protocol_id": 78 + "protocol_id": 77 }, "minecraft:select_advancements_tab": { - "protocol_id": 79 + "protocol_id": 78 }, "minecraft:server_data": { - "protocol_id": 80 + "protocol_id": 79 }, "minecraft:server_links": { "protocol_id": 130 }, "minecraft:set_action_bar_text": { - "protocol_id": 81 + "protocol_id": 80 }, "minecraft:set_border_center": { - "protocol_id": 82 + "protocol_id": 81 }, "minecraft:set_border_lerp_size": { - "protocol_id": 83 + "protocol_id": 82 }, "minecraft:set_border_size": { - "protocol_id": 84 + "protocol_id": 83 }, "minecraft:set_border_warning_delay": { - "protocol_id": 85 + "protocol_id": 84 }, "minecraft:set_border_warning_distance": { - "protocol_id": 86 + "protocol_id": 85 }, "minecraft:set_camera": { - "protocol_id": 87 + "protocol_id": 86 }, "minecraft:set_chunk_cache_center": { - "protocol_id": 88 + "protocol_id": 87 }, "minecraft:set_chunk_cache_radius": { - "protocol_id": 89 + "protocol_id": 88 }, "minecraft:set_cursor_item": { - "protocol_id": 90 + "protocol_id": 89 }, "minecraft:set_default_spawn_position": { - "protocol_id": 91 + "protocol_id": 90 }, "minecraft:set_display_objective": { - "protocol_id": 92 + "protocol_id": 91 }, "minecraft:set_entity_data": { - "protocol_id": 93 + "protocol_id": 92 }, "minecraft:set_entity_link": { - "protocol_id": 94 + "protocol_id": 93 }, "minecraft:set_entity_motion": { - "protocol_id": 95 + "protocol_id": 94 }, "minecraft:set_equipment": { - "protocol_id": 96 + "protocol_id": 95 }, "minecraft:set_experience": { - "protocol_id": 97 + "protocol_id": 96 }, "minecraft:set_health": { - "protocol_id": 98 + "protocol_id": 97 }, "minecraft:set_held_slot": { - "protocol_id": 99 + "protocol_id": 98 }, "minecraft:set_objective": { - "protocol_id": 100 + "protocol_id": 99 }, "minecraft:set_passengers": { - "protocol_id": 101 + "protocol_id": 100 }, "minecraft:set_player_inventory": { - "protocol_id": 102 + "protocol_id": 101 }, "minecraft:set_player_team": { - "protocol_id": 103 + "protocol_id": 102 }, "minecraft:set_score": { - "protocol_id": 104 + "protocol_id": 103 }, "minecraft:set_simulation_distance": { - "protocol_id": 105 + "protocol_id": 104 }, "minecraft:set_subtitle_text": { - "protocol_id": 106 + "protocol_id": 105 }, "minecraft:set_time": { - "protocol_id": 107 + "protocol_id": 106 }, "minecraft:set_title_text": { - "protocol_id": 108 + "protocol_id": 107 }, "minecraft:set_titles_animation": { - "protocol_id": 109 + "protocol_id": 108 }, "minecraft:sound": { - "protocol_id": 111 - }, - "minecraft:sound_entity": { "protocol_id": 110 }, + "minecraft:sound_entity": { + "protocol_id": 109 + }, "minecraft:start_configuration": { - "protocol_id": 112 + "protocol_id": 111 }, "minecraft:stop_sound": { - "protocol_id": 113 + "protocol_id": 112 }, "minecraft:store_cookie": { - "protocol_id": 114 + "protocol_id": 113 }, "minecraft:system_chat": { - "protocol_id": 115 + "protocol_id": 114 }, "minecraft:tab_list": { - "protocol_id": 116 + "protocol_id": 115 }, "minecraft:tag_query": { - "protocol_id": 117 + "protocol_id": 116 }, "minecraft:take_item_entity": { - "protocol_id": 118 + "protocol_id": 117 }, "minecraft:teleport_entity": { + "protocol_id": 118 + }, + "minecraft:test_instance_block_status": { "protocol_id": 119 }, "minecraft:ticking_state": { @@ -694,20 +694,26 @@ "minecraft:set_structure_block": { "protocol_id": 56 }, - "minecraft:sign_update": { + "minecraft:set_test_block": { "protocol_id": 57 }, - "minecraft:swing": { + "minecraft:sign_update": { "protocol_id": 58 }, - "minecraft:teleport_to_entity": { + "minecraft:swing": { "protocol_id": 59 }, - "minecraft:use_item": { + "minecraft:teleport_to_entity": { + "protocol_id": 60 + }, + "minecraft:test_instance_block_action": { "protocol_id": 61 }, + "minecraft:use_item": { + "protocol_id": 63 + }, "minecraft:use_item_on": { - "protocol_id": 60 + "protocol_id": 62 } } }, diff --git a/src/main/resources/reports/registries.json b/src/main/resources/reports/registries.json index c7c9889..501a60f 100644 --- a/src/main/resources/reports/registries.json +++ b/src/main/resources/reports/registries.json @@ -187,19 +187,19 @@ "default": "minecraft:air", "entries": { "minecraft:acacia_button": { - "protocol_id": 411 + "protocol_id": 415 }, "minecraft:acacia_door": { - "protocol_id": 613 + "protocol_id": 617 }, "minecraft:acacia_fence": { - "protocol_id": 604 + "protocol_id": 608 }, "minecraft:acacia_fence_gate": { - "protocol_id": 595 + "protocol_id": 599 }, "minecraft:acacia_hanging_sign": { - "protocol_id": 221 + "protocol_id": 224 }, "minecraft:acacia_leaves": { "protocol_id": 92 @@ -211,184 +211,184 @@ "protocol_id": 17 }, "minecraft:acacia_pressure_plate": { - "protocol_id": 249 + "protocol_id": 252 }, "minecraft:acacia_sapling": { "protocol_id": 29 }, "minecraft:acacia_sign": { - "protocol_id": 197 + "protocol_id": 200 }, "minecraft:acacia_slab": { - "protocol_id": 567 + "protocol_id": 571 }, "minecraft:acacia_stairs": { - "protocol_id": 480 + "protocol_id": 484 }, "minecraft:acacia_trapdoor": { - "protocol_id": 301 + "protocol_id": 305 }, "minecraft:acacia_wall_hanging_sign": { - "protocol_id": 233 + "protocol_id": 236 }, "minecraft:acacia_wall_sign": { - "protocol_id": 211 + "protocol_id": 214 }, "minecraft:acacia_wood": { "protocol_id": 75 }, "minecraft:activator_rail": { - "protocol_id": 446 + "protocol_id": 450 }, "minecraft:air": { "protocol_id": 0 }, "minecraft:allium": { - "protocol_id": 158 + "protocol_id": 161 }, "minecraft:amethyst_block": { - "protocol_id": 931 + "protocol_id": 937 }, "minecraft:amethyst_cluster": { - "protocol_id": 933 + "protocol_id": 939 }, "minecraft:ancient_debris": { - "protocol_id": 869 + "protocol_id": 875 }, "minecraft:andesite": { "protocol_id": 6 }, "minecraft:andesite_slab": { - "protocol_id": 783 + "protocol_id": 787 }, "minecraft:andesite_stairs": { - "protocol_id": 770 + "protocol_id": 774 }, "minecraft:andesite_wall": { - "protocol_id": 795 + "protocol_id": 799 }, "minecraft:anvil": { - "protocol_id": 431 + "protocol_id": 435 }, "minecraft:attached_melon_stem": { - "protocol_id": 328 + "protocol_id": 332 }, "minecraft:attached_pumpkin_stem": { - "protocol_id": 327 + "protocol_id": 331 }, "minecraft:azalea": { - "protocol_id": 1040 + "protocol_id": 1046 }, "minecraft:azalea_leaves": { "protocol_id": 97 }, "minecraft:azure_bluet": { - "protocol_id": 159 + "protocol_id": 162 }, "minecraft:bamboo": { - "protocol_id": 755 + "protocol_id": 759 }, "minecraft:bamboo_block": { "protocol_id": 60 }, "minecraft:bamboo_button": { - "protocol_id": 416 + "protocol_id": 420 }, "minecraft:bamboo_door": { - "protocol_id": 618 + "protocol_id": 622 }, "minecraft:bamboo_fence": { - "protocol_id": 609 + "protocol_id": 613 }, "minecraft:bamboo_fence_gate": { - "protocol_id": 600 + "protocol_id": 604 }, "minecraft:bamboo_hanging_sign": { - "protocol_id": 229 + "protocol_id": 232 }, "minecraft:bamboo_mosaic": { "protocol_id": 24 }, "minecraft:bamboo_mosaic_slab": { - "protocol_id": 573 + "protocol_id": 577 }, "minecraft:bamboo_mosaic_stairs": { - "protocol_id": 486 + "protocol_id": 490 }, "minecraft:bamboo_planks": { "protocol_id": 23 }, "minecraft:bamboo_pressure_plate": { - "protocol_id": 254 + "protocol_id": 257 }, "minecraft:bamboo_sapling": { - "protocol_id": 754 + "protocol_id": 758 }, "minecraft:bamboo_sign": { - "protocol_id": 203 + "protocol_id": 206 }, "minecraft:bamboo_slab": { - "protocol_id": 572 + "protocol_id": 576 }, "minecraft:bamboo_stairs": { - "protocol_id": 485 + "protocol_id": 489 }, "minecraft:bamboo_trapdoor": { - "protocol_id": 306 + "protocol_id": 310 }, "minecraft:bamboo_wall_hanging_sign": { - "protocol_id": 241 + "protocol_id": 244 }, "minecraft:bamboo_wall_sign": { - "protocol_id": 217 + "protocol_id": 220 }, "minecraft:barrel": { - "protocol_id": 802 + "protocol_id": 806 }, "minecraft:barrier": { - "protocol_id": 488 + "protocol_id": 492 }, "minecraft:basalt": { - "protocol_id": 271 + "protocol_id": 275 }, "minecraft:beacon": { - "protocol_id": 373 + "protocol_id": 377 }, "minecraft:bedrock": { "protocol_id": 34 }, "minecraft:bee_nest": { - "protocol_id": 864 + "protocol_id": 870 }, "minecraft:beehive": { - "protocol_id": 865 + "protocol_id": 871 }, "minecraft:beetroots": { - "protocol_id": 629 + "protocol_id": 633 }, "minecraft:bell": { - "protocol_id": 811 + "protocol_id": 815 }, "minecraft:big_dripleaf": { - "protocol_id": 1045 + "protocol_id": 1053 }, "minecraft:big_dripleaf_stem": { - "protocol_id": 1046 + "protocol_id": 1054 }, "minecraft:birch_button": { - "protocol_id": 409 + "protocol_id": 413 }, "minecraft:birch_door": { - "protocol_id": 611 + "protocol_id": 615 }, "minecraft:birch_fence": { - "protocol_id": 602 + "protocol_id": 606 }, "minecraft:birch_fence_gate": { - "protocol_id": 593 + "protocol_id": 597 }, "minecraft:birch_hanging_sign": { - "protocol_id": 220 + "protocol_id": 223 }, "minecraft:birch_leaves": { "protocol_id": 90 @@ -400,298 +400,304 @@ "protocol_id": 15 }, "minecraft:birch_pressure_plate": { - "protocol_id": 247 + "protocol_id": 250 }, "minecraft:birch_sapling": { "protocol_id": 27 }, "minecraft:birch_sign": { - "protocol_id": 196 + "protocol_id": 199 }, "minecraft:birch_slab": { - "protocol_id": 565 + "protocol_id": 569 }, "minecraft:birch_stairs": { - "protocol_id": 370 + "protocol_id": 374 }, "minecraft:birch_trapdoor": { - "protocol_id": 299 + "protocol_id": 303 }, "minecraft:birch_wall_hanging_sign": { - "protocol_id": 232 + "protocol_id": 235 }, "minecraft:birch_wall_sign": { - "protocol_id": 210 + "protocol_id": 213 }, "minecraft:birch_wood": { "protocol_id": 73 }, "minecraft:black_banner": { - "protocol_id": 542 + "protocol_id": 546 }, "minecraft:black_bed": { "protocol_id": 125 }, "minecraft:black_candle": { - "protocol_id": 913 + "protocol_id": 919 }, "minecraft:black_candle_cake": { - "protocol_id": 930 + "protocol_id": 936 }, "minecraft:black_carpet": { - "protocol_id": 517 + "protocol_id": 521 }, "minecraft:black_concrete": { - "protocol_id": 689 + "protocol_id": 693 }, "minecraft:black_concrete_powder": { - "protocol_id": 705 + "protocol_id": 709 }, "minecraft:black_glazed_terracotta": { - "protocol_id": 673 + "protocol_id": 677 }, "minecraft:black_shulker_box": { - "protocol_id": 657 + "protocol_id": 661 }, "minecraft:black_stained_glass": { - "protocol_id": 296 + "protocol_id": 300 }, "minecraft:black_stained_glass_pane": { - "protocol_id": 479 + "protocol_id": 483 }, "minecraft:black_terracotta": { - "protocol_id": 463 + "protocol_id": 467 }, "minecraft:black_wall_banner": { - "protocol_id": 558 + "protocol_id": 562 }, "minecraft:black_wool": { - "protocol_id": 152 + "protocol_id": 155 }, "minecraft:blackstone": { - "protocol_id": 877 + "protocol_id": 883 }, "minecraft:blackstone_slab": { - "protocol_id": 880 + "protocol_id": 886 }, "minecraft:blackstone_stairs": { - "protocol_id": 878 + "protocol_id": 884 }, "minecraft:blackstone_wall": { - "protocol_id": 879 + "protocol_id": 885 }, "minecraft:blast_furnace": { - "protocol_id": 804 + "protocol_id": 808 }, "minecraft:blue_banner": { - "protocol_id": 538 + "protocol_id": 542 }, "minecraft:blue_bed": { "protocol_id": 121 }, "minecraft:blue_candle": { - "protocol_id": 909 + "protocol_id": 915 }, "minecraft:blue_candle_cake": { - "protocol_id": 926 + "protocol_id": 932 }, "minecraft:blue_carpet": { - "protocol_id": 513 + "protocol_id": 517 }, "minecraft:blue_concrete": { - "protocol_id": 685 + "protocol_id": 689 }, "minecraft:blue_concrete_powder": { - "protocol_id": 701 + "protocol_id": 705 }, "minecraft:blue_glazed_terracotta": { - "protocol_id": 669 + "protocol_id": 673 }, "minecraft:blue_ice": { - "protocol_id": 752 + "protocol_id": 756 }, "minecraft:blue_orchid": { - "protocol_id": 157 + "protocol_id": 160 }, "minecraft:blue_shulker_box": { - "protocol_id": 653 + "protocol_id": 657 }, "minecraft:blue_stained_glass": { - "protocol_id": 292 + "protocol_id": 296 }, "minecraft:blue_stained_glass_pane": { - "protocol_id": 475 + "protocol_id": 479 }, "minecraft:blue_terracotta": { - "protocol_id": 459 + "protocol_id": 463 }, "minecraft:blue_wall_banner": { - "protocol_id": 554 + "protocol_id": 558 }, "minecraft:blue_wool": { - "protocol_id": 148 + "protocol_id": 151 }, "minecraft:bone_block": { - "protocol_id": 638 + "protocol_id": 642 }, "minecraft:bookshelf": { - "protocol_id": 174 + "protocol_id": 177 }, "minecraft:brain_coral": { - "protocol_id": 727 + "protocol_id": 731 }, "minecraft:brain_coral_block": { - "protocol_id": 717 + "protocol_id": 721 }, "minecraft:brain_coral_fan": { - "protocol_id": 737 + "protocol_id": 741 }, "minecraft:brain_coral_wall_fan": { - "protocol_id": 747 + "protocol_id": 751 }, "minecraft:brewing_stand": { - "protocol_id": 351 + "protocol_id": 355 }, "minecraft:brick_slab": { - "protocol_id": 580 + "protocol_id": 584 }, "minecraft:brick_stairs": { - "protocol_id": 335 + "protocol_id": 339 }, "minecraft:brick_wall": { - "protocol_id": 787 + "protocol_id": 791 }, "minecraft:bricks": { - "protocol_id": 172 + "protocol_id": 175 }, "minecraft:brown_banner": { - "protocol_id": 539 + "protocol_id": 543 }, "minecraft:brown_bed": { "protocol_id": 122 }, "minecraft:brown_candle": { - "protocol_id": 910 + "protocol_id": 916 }, "minecraft:brown_candle_cake": { - "protocol_id": 927 + "protocol_id": 933 }, "minecraft:brown_carpet": { - "protocol_id": 514 + "protocol_id": 518 }, "minecraft:brown_concrete": { - "protocol_id": 686 + "protocol_id": 690 }, "minecraft:brown_concrete_powder": { - "protocol_id": 702 + "protocol_id": 706 }, "minecraft:brown_glazed_terracotta": { - "protocol_id": 670 + "protocol_id": 674 }, "minecraft:brown_mushroom": { - "protocol_id": 168 + "protocol_id": 171 }, "minecraft:brown_mushroom_block": { - "protocol_id": 319 - }, - "minecraft:brown_shulker_box": { - "protocol_id": 654 - }, - "minecraft:brown_stained_glass": { - "protocol_id": 293 - }, - "minecraft:brown_stained_glass_pane": { - "protocol_id": 476 - }, - "minecraft:brown_terracotta": { - "protocol_id": 460 - }, - "minecraft:brown_wall_banner": { - "protocol_id": 555 - }, - "minecraft:brown_wool": { - "protocol_id": 149 - }, - "minecraft:bubble_column": { - "protocol_id": 759 - }, - "minecraft:bubble_coral": { - "protocol_id": 728 - }, - "minecraft:bubble_coral_block": { - "protocol_id": 718 - }, - "minecraft:bubble_coral_fan": { - "protocol_id": 738 - }, - "minecraft:bubble_coral_wall_fan": { - "protocol_id": 748 - }, - "minecraft:budding_amethyst": { - "protocol_id": 932 - }, - "minecraft:cactus": { - "protocol_id": 263 - }, - "minecraft:cake": { - "protocol_id": 279 - }, - "minecraft:calcite": { - "protocol_id": 951 - }, - "minecraft:calibrated_sculk_sensor": { - "protocol_id": 955 - }, - "minecraft:campfire": { - "protocol_id": 814 - }, - "minecraft:candle": { - "protocol_id": 897 - }, - "minecraft:candle_cake": { - "protocol_id": 914 - }, - "minecraft:carrots": { - "protocol_id": 405 - }, - "minecraft:cartography_table": { - "protocol_id": 805 - }, - "minecraft:carved_pumpkin": { - "protocol_id": 277 - }, - "minecraft:cauldron": { - "protocol_id": 352 - }, - "minecraft:cave_air": { - "protocol_id": 758 - }, - "minecraft:cave_vines": { - "protocol_id": 1037 - }, - "minecraft:cave_vines_plant": { - "protocol_id": 1038 - }, - "minecraft:chain": { "protocol_id": 323 }, + "minecraft:brown_shulker_box": { + "protocol_id": 658 + }, + "minecraft:brown_stained_glass": { + "protocol_id": 297 + }, + "minecraft:brown_stained_glass_pane": { + "protocol_id": 480 + }, + "minecraft:brown_terracotta": { + "protocol_id": 464 + }, + "minecraft:brown_wall_banner": { + "protocol_id": 559 + }, + "minecraft:brown_wool": { + "protocol_id": 152 + }, + "minecraft:bubble_column": { + "protocol_id": 763 + }, + "minecraft:bubble_coral": { + "protocol_id": 732 + }, + "minecraft:bubble_coral_block": { + "protocol_id": 722 + }, + "minecraft:bubble_coral_fan": { + "protocol_id": 742 + }, + "minecraft:bubble_coral_wall_fan": { + "protocol_id": 752 + }, + "minecraft:budding_amethyst": { + "protocol_id": 938 + }, + "minecraft:bush": { + "protocol_id": 133 + }, + "minecraft:cactus": { + "protocol_id": 266 + }, + "minecraft:cactus_flower": { + "protocol_id": 267 + }, + "minecraft:cake": { + "protocol_id": 283 + }, + "minecraft:calcite": { + "protocol_id": 957 + }, + "minecraft:calibrated_sculk_sensor": { + "protocol_id": 961 + }, + "minecraft:campfire": { + "protocol_id": 818 + }, + "minecraft:candle": { + "protocol_id": 903 + }, + "minecraft:candle_cake": { + "protocol_id": 920 + }, + "minecraft:carrots": { + "protocol_id": 409 + }, + "minecraft:cartography_table": { + "protocol_id": 809 + }, + "minecraft:carved_pumpkin": { + "protocol_id": 281 + }, + "minecraft:cauldron": { + "protocol_id": 356 + }, + "minecraft:cave_air": { + "protocol_id": 762 + }, + "minecraft:cave_vines": { + "protocol_id": 1043 + }, + "minecraft:cave_vines_plant": { + "protocol_id": 1044 + }, + "minecraft:chain": { + "protocol_id": 327 + }, "minecraft:chain_command_block": { - "protocol_id": 633 + "protocol_id": 637 }, "minecraft:cherry_button": { - "protocol_id": 412 + "protocol_id": 416 }, "minecraft:cherry_door": { - "protocol_id": 614 + "protocol_id": 618 }, "minecraft:cherry_fence": { - "protocol_id": 605 + "protocol_id": 609 }, "minecraft:cherry_fence_gate": { - "protocol_id": 596 + "protocol_id": 600 }, "minecraft:cherry_hanging_sign": { - "protocol_id": 222 + "protocol_id": 225 }, "minecraft:cherry_leaves": { "protocol_id": 93 @@ -703,88 +709,88 @@ "protocol_id": 18 }, "minecraft:cherry_pressure_plate": { - "protocol_id": 250 + "protocol_id": 253 }, "minecraft:cherry_sapling": { "protocol_id": 30 }, "minecraft:cherry_sign": { - "protocol_id": 198 + "protocol_id": 201 }, "minecraft:cherry_slab": { - "protocol_id": 568 + "protocol_id": 572 }, "minecraft:cherry_stairs": { - "protocol_id": 481 + "protocol_id": 485 }, "minecraft:cherry_trapdoor": { - "protocol_id": 302 + "protocol_id": 306 }, "minecraft:cherry_wall_hanging_sign": { - "protocol_id": 234 + "protocol_id": 237 }, "minecraft:cherry_wall_sign": { - "protocol_id": 212 + "protocol_id": 215 }, "minecraft:cherry_wood": { "protocol_id": 76 }, "minecraft:chest": { - "protocol_id": 185 + "protocol_id": 188 }, "minecraft:chipped_anvil": { - "protocol_id": 432 + "protocol_id": 436 }, "minecraft:chiseled_bookshelf": { - "protocol_id": 175 + "protocol_id": 178 }, "minecraft:chiseled_copper": { - "protocol_id": 973 + "protocol_id": 979 }, "minecraft:chiseled_deepslate": { - "protocol_id": 1068 + "protocol_id": 1076 }, "minecraft:chiseled_nether_bricks": { - "protocol_id": 894 + "protocol_id": 900 }, "minecraft:chiseled_polished_blackstone": { - "protocol_id": 884 + "protocol_id": 890 }, "minecraft:chiseled_quartz_block": { - "protocol_id": 443 + "protocol_id": 447 }, "minecraft:chiseled_red_sandstone": { - "protocol_id": 560 + "protocol_id": 564 }, "minecraft:chiseled_resin_bricks": { - "protocol_id": 345 + "protocol_id": 349 }, "minecraft:chiseled_sandstone": { "protocol_id": 107 }, "minecraft:chiseled_stone_bricks": { - "protocol_id": 310 + "protocol_id": 314 }, "minecraft:chiseled_tuff": { - "protocol_id": 945 + "protocol_id": 951 }, "minecraft:chiseled_tuff_bricks": { - "protocol_id": 950 + "protocol_id": 956 }, "minecraft:chorus_flower": { - "protocol_id": 621 + "protocol_id": 625 }, "minecraft:chorus_plant": { - "protocol_id": 620 + "protocol_id": 624 }, "minecraft:clay": { - "protocol_id": 264 + "protocol_id": 268 }, "minecraft:closed_eyeblossom": { - "protocol_id": 1092 + "protocol_id": 1100 }, "minecraft:coal_block": { - "protocol_id": 519 + "protocol_id": 523 }, "minecraft:coal_ore": { "protocol_id": 46 @@ -793,238 +799,238 @@ "protocol_id": 10 }, "minecraft:cobbled_deepslate": { - "protocol_id": 1052 + "protocol_id": 1060 }, "minecraft:cobbled_deepslate_slab": { - "protocol_id": 1054 + "protocol_id": 1062 }, "minecraft:cobbled_deepslate_stairs": { - "protocol_id": 1053 + "protocol_id": 1061 }, "minecraft:cobbled_deepslate_wall": { - "protocol_id": 1055 + "protocol_id": 1063 }, "minecraft:cobblestone": { "protocol_id": 12 }, "minecraft:cobblestone_slab": { - "protocol_id": 579 + "protocol_id": 583 }, "minecraft:cobblestone_stairs": { - "protocol_id": 207 + "protocol_id": 210 }, "minecraft:cobblestone_wall": { - "protocol_id": 374 + "protocol_id": 378 }, "minecraft:cobweb": { "protocol_id": 129 }, "minecraft:cocoa": { - "protocol_id": 361 + "protocol_id": 365 }, "minecraft:command_block": { - "protocol_id": 372 + "protocol_id": 376 }, "minecraft:comparator": { - "protocol_id": 437 + "protocol_id": 441 }, "minecraft:composter": { - "protocol_id": 862 + "protocol_id": 868 }, "minecraft:conduit": { - "protocol_id": 753 + "protocol_id": 757 }, "minecraft:copper_block": { - "protocol_id": 960 + "protocol_id": 966 }, "minecraft:copper_bulb": { - "protocol_id": 1026 + "protocol_id": 1032 }, "minecraft:copper_door": { - "protocol_id": 1002 + "protocol_id": 1008 }, "minecraft:copper_grate": { - "protocol_id": 1018 + "protocol_id": 1024 }, "minecraft:copper_ore": { - "protocol_id": 964 + "protocol_id": 970 }, "minecraft:copper_trapdoor": { - "protocol_id": 1010 + "protocol_id": 1016 }, "minecraft:cornflower": { - "protocol_id": 165 + "protocol_id": 168 }, "minecraft:cracked_deepslate_bricks": { - "protocol_id": 1069 + "protocol_id": 1077 }, "minecraft:cracked_deepslate_tiles": { - "protocol_id": 1070 + "protocol_id": 1078 }, "minecraft:cracked_nether_bricks": { - "protocol_id": 895 + "protocol_id": 901 }, "minecraft:cracked_polished_blackstone_bricks": { - "protocol_id": 883 + "protocol_id": 889 }, "minecraft:cracked_stone_bricks": { - "protocol_id": 309 + "protocol_id": 313 }, "minecraft:crafter": { - "protocol_id": 1084 + "protocol_id": 1092 }, "minecraft:crafting_table": { - "protocol_id": 190 + "protocol_id": 193 }, "minecraft:creaking_heart": { - "protocol_id": 183 + "protocol_id": 186 }, "minecraft:creeper_head": { - "protocol_id": 425 + "protocol_id": 429 }, "minecraft:creeper_wall_head": { - "protocol_id": 426 + "protocol_id": 430 }, "minecraft:crimson_button": { - "protocol_id": 852 - }, - "minecraft:crimson_door": { - "protocol_id": 854 - }, - "minecraft:crimson_fence": { - "protocol_id": 844 - }, - "minecraft:crimson_fence_gate": { - "protocol_id": 848 - }, - "minecraft:crimson_fungus": { - "protocol_id": 831 - }, - "minecraft:crimson_hanging_sign": { - "protocol_id": 226 - }, - "minecraft:crimson_hyphae": { - "protocol_id": 828 - }, - "minecraft:crimson_nylium": { - "protocol_id": 830 - }, - "minecraft:crimson_planks": { - "protocol_id": 838 - }, - "minecraft:crimson_pressure_plate": { - "protocol_id": 842 - }, - "minecraft:crimson_roots": { - "protocol_id": 837 - }, - "minecraft:crimson_sign": { "protocol_id": 856 }, - "minecraft:crimson_slab": { - "protocol_id": 840 - }, - "minecraft:crimson_stairs": { - "protocol_id": 850 - }, - "minecraft:crimson_stem": { - "protocol_id": 826 - }, - "minecraft:crimson_trapdoor": { - "protocol_id": 846 - }, - "minecraft:crimson_wall_hanging_sign": { - "protocol_id": 239 - }, - "minecraft:crimson_wall_sign": { + "minecraft:crimson_door": { "protocol_id": 858 }, + "minecraft:crimson_fence": { + "protocol_id": 848 + }, + "minecraft:crimson_fence_gate": { + "protocol_id": 852 + }, + "minecraft:crimson_fungus": { + "protocol_id": 835 + }, + "minecraft:crimson_hanging_sign": { + "protocol_id": 229 + }, + "minecraft:crimson_hyphae": { + "protocol_id": 832 + }, + "minecraft:crimson_nylium": { + "protocol_id": 834 + }, + "minecraft:crimson_planks": { + "protocol_id": 842 + }, + "minecraft:crimson_pressure_plate": { + "protocol_id": 846 + }, + "minecraft:crimson_roots": { + "protocol_id": 841 + }, + "minecraft:crimson_sign": { + "protocol_id": 860 + }, + "minecraft:crimson_slab": { + "protocol_id": 844 + }, + "minecraft:crimson_stairs": { + "protocol_id": 854 + }, + "minecraft:crimson_stem": { + "protocol_id": 830 + }, + "minecraft:crimson_trapdoor": { + "protocol_id": 850 + }, + "minecraft:crimson_wall_hanging_sign": { + "protocol_id": 242 + }, + "minecraft:crimson_wall_sign": { + "protocol_id": 862 + }, "minecraft:crying_obsidian": { - "protocol_id": 870 + "protocol_id": 876 }, "minecraft:cut_copper": { - "protocol_id": 969 + "protocol_id": 975 }, "minecraft:cut_copper_slab": { - "protocol_id": 985 + "protocol_id": 991 }, "minecraft:cut_copper_stairs": { - "protocol_id": 981 + "protocol_id": 987 }, "minecraft:cut_red_sandstone": { - "protocol_id": 561 + "protocol_id": 565 }, "minecraft:cut_red_sandstone_slab": { - "protocol_id": 586 + "protocol_id": 590 }, "minecraft:cut_sandstone": { "protocol_id": 108 }, "minecraft:cut_sandstone_slab": { - "protocol_id": 577 + "protocol_id": 581 }, "minecraft:cyan_banner": { - "protocol_id": 536 + "protocol_id": 540 }, "minecraft:cyan_bed": { "protocol_id": 119 }, "minecraft:cyan_candle": { - "protocol_id": 907 + "protocol_id": 913 }, "minecraft:cyan_candle_cake": { - "protocol_id": 924 + "protocol_id": 930 }, "minecraft:cyan_carpet": { - "protocol_id": 511 + "protocol_id": 515 }, "minecraft:cyan_concrete": { - "protocol_id": 683 + "protocol_id": 687 }, "minecraft:cyan_concrete_powder": { - "protocol_id": 699 + "protocol_id": 703 }, "minecraft:cyan_glazed_terracotta": { - "protocol_id": 667 + "protocol_id": 671 }, "minecraft:cyan_shulker_box": { - "protocol_id": 651 + "protocol_id": 655 }, "minecraft:cyan_stained_glass": { - "protocol_id": 290 + "protocol_id": 294 }, "minecraft:cyan_stained_glass_pane": { - "protocol_id": 473 + "protocol_id": 477 }, "minecraft:cyan_terracotta": { - "protocol_id": 457 + "protocol_id": 461 }, "minecraft:cyan_wall_banner": { - "protocol_id": 552 + "protocol_id": 556 }, "minecraft:cyan_wool": { - "protocol_id": 146 + "protocol_id": 149 }, "minecraft:damaged_anvil": { - "protocol_id": 433 + "protocol_id": 437 }, "minecraft:dandelion": { - "protocol_id": 154 + "protocol_id": 157 }, "minecraft:dark_oak_button": { - "protocol_id": 413 + "protocol_id": 417 }, "minecraft:dark_oak_door": { - "protocol_id": 615 + "protocol_id": 619 }, "minecraft:dark_oak_fence": { - "protocol_id": 606 + "protocol_id": 610 }, "minecraft:dark_oak_fence_gate": { - "protocol_id": 597 + "protocol_id": 601 }, "minecraft:dark_oak_hanging_sign": { - "protocol_id": 224 + "protocol_id": 227 }, "minecraft:dark_oak_leaves": { "protocol_id": 94 @@ -1036,136 +1042,136 @@ "protocol_id": 19 }, "minecraft:dark_oak_pressure_plate": { - "protocol_id": 251 + "protocol_id": 254 }, "minecraft:dark_oak_sapling": { "protocol_id": 31 }, "minecraft:dark_oak_sign": { - "protocol_id": 200 + "protocol_id": 203 }, "minecraft:dark_oak_slab": { - "protocol_id": 569 + "protocol_id": 573 }, "minecraft:dark_oak_stairs": { - "protocol_id": 482 + "protocol_id": 486 }, "minecraft:dark_oak_trapdoor": { - "protocol_id": 303 + "protocol_id": 307 }, "minecraft:dark_oak_wall_hanging_sign": { - "protocol_id": 236 + "protocol_id": 239 }, "minecraft:dark_oak_wall_sign": { - "protocol_id": 214 + "protocol_id": 217 }, "minecraft:dark_oak_wood": { "protocol_id": 77 }, "minecraft:dark_prismarine": { - "protocol_id": 493 + "protocol_id": 497 }, "minecraft:dark_prismarine_slab": { - "protocol_id": 499 + "protocol_id": 503 }, "minecraft:dark_prismarine_stairs": { - "protocol_id": 496 + "protocol_id": 500 }, "minecraft:daylight_detector": { - "protocol_id": 438 + "protocol_id": 442 }, "minecraft:dead_brain_coral": { - "protocol_id": 722 + "protocol_id": 726 }, "minecraft:dead_brain_coral_block": { - "protocol_id": 712 + "protocol_id": 716 }, "minecraft:dead_brain_coral_fan": { - "protocol_id": 732 + "protocol_id": 736 }, "minecraft:dead_brain_coral_wall_fan": { - "protocol_id": 742 + "protocol_id": 746 }, "minecraft:dead_bubble_coral": { - "protocol_id": 723 + "protocol_id": 727 }, "minecraft:dead_bubble_coral_block": { - "protocol_id": 713 + "protocol_id": 717 }, "minecraft:dead_bubble_coral_fan": { - "protocol_id": 733 + "protocol_id": 737 }, "minecraft:dead_bubble_coral_wall_fan": { - "protocol_id": 743 + "protocol_id": 747 }, "minecraft:dead_bush": { "protocol_id": 132 }, "minecraft:dead_fire_coral": { - "protocol_id": 724 + "protocol_id": 728 }, "minecraft:dead_fire_coral_block": { - "protocol_id": 714 + "protocol_id": 718 }, "minecraft:dead_fire_coral_fan": { - "protocol_id": 734 + "protocol_id": 738 }, "minecraft:dead_fire_coral_wall_fan": { - "protocol_id": 744 + "protocol_id": 748 }, "minecraft:dead_horn_coral": { - "protocol_id": 725 + "protocol_id": 729 }, "minecraft:dead_horn_coral_block": { - "protocol_id": 715 + "protocol_id": 719 }, "minecraft:dead_horn_coral_fan": { - "protocol_id": 735 + "protocol_id": 739 }, "minecraft:dead_horn_coral_wall_fan": { - "protocol_id": 745 + "protocol_id": 749 }, "minecraft:dead_tube_coral": { - "protocol_id": 721 + "protocol_id": 725 }, "minecraft:dead_tube_coral_block": { - "protocol_id": 711 + "protocol_id": 715 }, "minecraft:dead_tube_coral_fan": { - "protocol_id": 731 + "protocol_id": 735 }, "minecraft:dead_tube_coral_wall_fan": { - "protocol_id": 741 + "protocol_id": 745 }, "minecraft:decorated_pot": { - "protocol_id": 1083 + "protocol_id": 1091 }, "minecraft:deepslate": { - "protocol_id": 1051 + "protocol_id": 1059 }, "minecraft:deepslate_brick_slab": { - "protocol_id": 1066 + "protocol_id": 1074 }, "minecraft:deepslate_brick_stairs": { - "protocol_id": 1065 + "protocol_id": 1073 }, "minecraft:deepslate_brick_wall": { - "protocol_id": 1067 + "protocol_id": 1075 }, "minecraft:deepslate_bricks": { - "protocol_id": 1064 + "protocol_id": 1072 }, "minecraft:deepslate_coal_ore": { "protocol_id": 47 }, "minecraft:deepslate_copper_ore": { - "protocol_id": 965 + "protocol_id": 971 }, "minecraft:deepslate_diamond_ore": { - "protocol_id": 188 + "protocol_id": 191 }, "minecraft:deepslate_emerald_ore": { - "protocol_id": 364 + "protocol_id": 368 }, "minecraft:deepslate_gold_ore": { "protocol_id": 43 @@ -1177,193 +1183,196 @@ "protocol_id": 103 }, "minecraft:deepslate_redstone_ore": { - "protocol_id": 256 + "protocol_id": 259 }, "minecraft:deepslate_tile_slab": { - "protocol_id": 1062 + "protocol_id": 1070 }, "minecraft:deepslate_tile_stairs": { - "protocol_id": 1061 + "protocol_id": 1069 }, "minecraft:deepslate_tile_wall": { - "protocol_id": 1063 + "protocol_id": 1071 }, "minecraft:deepslate_tiles": { - "protocol_id": 1060 + "protocol_id": 1068 }, "minecraft:detector_rail": { "protocol_id": 127 }, "minecraft:diamond_block": { - "protocol_id": 189 + "protocol_id": 192 }, "minecraft:diamond_ore": { - "protocol_id": 187 + "protocol_id": 190 }, "minecraft:diorite": { "protocol_id": 4 }, "minecraft:diorite_slab": { - "protocol_id": 786 + "protocol_id": 790 }, "minecraft:diorite_stairs": { - "protocol_id": 773 + "protocol_id": 777 }, "minecraft:diorite_wall": { - "protocol_id": 799 + "protocol_id": 803 }, "minecraft:dirt": { "protocol_id": 9 }, "minecraft:dirt_path": { - "protocol_id": 630 + "protocol_id": 634 }, "minecraft:dispenser": { "protocol_id": 105 }, "minecraft:dragon_egg": { - "protocol_id": 359 - }, - "minecraft:dragon_head": { - "protocol_id": 427 - }, - "minecraft:dragon_wall_head": { - "protocol_id": 428 - }, - "minecraft:dried_kelp_block": { - "protocol_id": 708 - }, - "minecraft:dripstone_block": { - "protocol_id": 1036 - }, - "minecraft:dropper": { - "protocol_id": 447 - }, - "minecraft:emerald_block": { - "protocol_id": 368 - }, - "minecraft:emerald_ore": { "protocol_id": 363 }, + "minecraft:dragon_head": { + "protocol_id": 431 + }, + "minecraft:dragon_wall_head": { + "protocol_id": 432 + }, + "minecraft:dried_kelp_block": { + "protocol_id": 712 + }, + "minecraft:dripstone_block": { + "protocol_id": 1042 + }, + "minecraft:dropper": { + "protocol_id": 451 + }, + "minecraft:emerald_block": { + "protocol_id": 372 + }, + "minecraft:emerald_ore": { + "protocol_id": 367 + }, "minecraft:enchanting_table": { - "protocol_id": 350 + "protocol_id": 354 }, "minecraft:end_gateway": { - "protocol_id": 631 + "protocol_id": 635 }, "minecraft:end_portal": { - "protocol_id": 356 + "protocol_id": 360 }, "minecraft:end_portal_frame": { - "protocol_id": 357 + "protocol_id": 361 }, "minecraft:end_rod": { - "protocol_id": 619 + "protocol_id": 623 }, "minecraft:end_stone": { - "protocol_id": 358 + "protocol_id": 362 }, "minecraft:end_stone_brick_slab": { - "protocol_id": 779 + "protocol_id": 783 }, "minecraft:end_stone_brick_stairs": { - "protocol_id": 765 + "protocol_id": 769 }, "minecraft:end_stone_brick_wall": { - "protocol_id": 798 + "protocol_id": 802 }, "minecraft:end_stone_bricks": { - "protocol_id": 625 + "protocol_id": 629 }, "minecraft:ender_chest": { - "protocol_id": 365 + "protocol_id": 369 }, "minecraft:exposed_chiseled_copper": { - "protocol_id": 972 + "protocol_id": 978 }, "minecraft:exposed_copper": { - "protocol_id": 961 + "protocol_id": 967 }, "minecraft:exposed_copper_bulb": { - "protocol_id": 1027 + "protocol_id": 1033 }, "minecraft:exposed_copper_door": { - "protocol_id": 1003 + "protocol_id": 1009 }, "minecraft:exposed_copper_grate": { - "protocol_id": 1019 + "protocol_id": 1025 }, "minecraft:exposed_copper_trapdoor": { - "protocol_id": 1011 + "protocol_id": 1017 }, "minecraft:exposed_cut_copper": { - "protocol_id": 968 + "protocol_id": 974 }, "minecraft:exposed_cut_copper_slab": { - "protocol_id": 984 + "protocol_id": 990 }, "minecraft:exposed_cut_copper_stairs": { - "protocol_id": 980 + "protocol_id": 986 }, "minecraft:farmland": { - "protocol_id": 192 + "protocol_id": 195 }, "minecraft:fern": { "protocol_id": 131 }, "minecraft:fire": { - "protocol_id": 180 + "protocol_id": 183 }, "minecraft:fire_coral": { - "protocol_id": 729 + "protocol_id": 733 }, "minecraft:fire_coral_block": { - "protocol_id": 719 + "protocol_id": 723 }, "minecraft:fire_coral_fan": { - "protocol_id": 739 + "protocol_id": 743 }, "minecraft:fire_coral_wall_fan": { - "protocol_id": 749 + "protocol_id": 753 + }, + "minecraft:firefly_bush": { + "protocol_id": 1103 }, "minecraft:fletching_table": { - "protocol_id": 806 + "protocol_id": 810 }, "minecraft:flower_pot": { - "protocol_id": 376 + "protocol_id": 380 }, "minecraft:flowering_azalea": { - "protocol_id": 1041 + "protocol_id": 1047 }, "minecraft:flowering_azalea_leaves": { "protocol_id": 98 }, "minecraft:frogspawn": { - "protocol_id": 1081 + "protocol_id": 1089 }, "minecraft:frosted_ice": { - "protocol_id": 634 + "protocol_id": 638 }, "minecraft:furnace": { - "protocol_id": 193 + "protocol_id": 196 }, "minecraft:gilded_blackstone": { - "protocol_id": 888 + "protocol_id": 894 }, "minecraft:glass": { "protocol_id": 101 }, "minecraft:glass_pane": { - "protocol_id": 324 + "protocol_id": 328 }, "minecraft:glow_lichen": { - "protocol_id": 332 + "protocol_id": 336 }, "minecraft:glowstone": { - "protocol_id": 275 + "protocol_id": 279 }, "minecraft:gold_block": { - "protocol_id": 170 + "protocol_id": 173 }, "minecraft:gold_ore": { "protocol_id": 42 @@ -1372,13 +1381,13 @@ "protocol_id": 2 }, "minecraft:granite_slab": { - "protocol_id": 782 + "protocol_id": 786 }, "minecraft:granite_stairs": { - "protocol_id": 769 + "protocol_id": 773 }, "minecraft:granite_wall": { - "protocol_id": 791 + "protocol_id": 795 }, "minecraft:grass_block": { "protocol_id": 8 @@ -1387,187 +1396,187 @@ "protocol_id": 40 }, "minecraft:gray_banner": { - "protocol_id": 534 + "protocol_id": 538 }, "minecraft:gray_bed": { "protocol_id": 117 }, "minecraft:gray_candle": { - "protocol_id": 905 + "protocol_id": 911 }, "minecraft:gray_candle_cake": { - "protocol_id": 922 + "protocol_id": 928 }, "minecraft:gray_carpet": { - "protocol_id": 509 + "protocol_id": 513 }, "minecraft:gray_concrete": { - "protocol_id": 681 + "protocol_id": 685 }, "minecraft:gray_concrete_powder": { - "protocol_id": 697 + "protocol_id": 701 }, "minecraft:gray_glazed_terracotta": { - "protocol_id": 665 + "protocol_id": 669 }, "minecraft:gray_shulker_box": { - "protocol_id": 649 + "protocol_id": 653 }, "minecraft:gray_stained_glass": { - "protocol_id": 288 + "protocol_id": 292 }, "minecraft:gray_stained_glass_pane": { - "protocol_id": 471 + "protocol_id": 475 }, "minecraft:gray_terracotta": { - "protocol_id": 455 + "protocol_id": 459 }, "minecraft:gray_wall_banner": { - "protocol_id": 550 + "protocol_id": 554 }, "minecraft:gray_wool": { - "protocol_id": 144 + "protocol_id": 147 }, "minecraft:green_banner": { - "protocol_id": 540 + "protocol_id": 544 }, "minecraft:green_bed": { "protocol_id": 123 }, "minecraft:green_candle": { - "protocol_id": 911 + "protocol_id": 917 }, "minecraft:green_candle_cake": { - "protocol_id": 928 + "protocol_id": 934 }, "minecraft:green_carpet": { - "protocol_id": 515 + "protocol_id": 519 }, "minecraft:green_concrete": { - "protocol_id": 687 + "protocol_id": 691 }, "minecraft:green_concrete_powder": { - "protocol_id": 703 + "protocol_id": 707 }, "minecraft:green_glazed_terracotta": { - "protocol_id": 671 + "protocol_id": 675 }, "minecraft:green_shulker_box": { - "protocol_id": 655 + "protocol_id": 659 }, "minecraft:green_stained_glass": { - "protocol_id": 294 + "protocol_id": 298 }, "minecraft:green_stained_glass_pane": { - "protocol_id": 477 + "protocol_id": 481 }, "minecraft:green_terracotta": { - "protocol_id": 461 + "protocol_id": 465 }, "minecraft:green_wall_banner": { - "protocol_id": 556 + "protocol_id": 560 }, "minecraft:green_wool": { - "protocol_id": 150 + "protocol_id": 153 }, "minecraft:grindstone": { - "protocol_id": 807 + "protocol_id": 811 }, "minecraft:hanging_roots": { - "protocol_id": 1048 + "protocol_id": 1056 }, "minecraft:hay_block": { - "protocol_id": 501 + "protocol_id": 505 }, "minecraft:heavy_core": { - "protocol_id": 1087 + "protocol_id": 1095 }, "minecraft:heavy_weighted_pressure_plate": { - "protocol_id": 436 + "protocol_id": 440 }, "minecraft:honey_block": { - "protocol_id": 866 + "protocol_id": 872 }, "minecraft:honeycomb_block": { - "protocol_id": 867 + "protocol_id": 873 }, "minecraft:hopper": { - "protocol_id": 441 + "protocol_id": 445 }, "minecraft:horn_coral": { - "protocol_id": 730 + "protocol_id": 734 }, "minecraft:horn_coral_block": { - "protocol_id": 720 + "protocol_id": 724 }, "minecraft:horn_coral_fan": { - "protocol_id": 740 + "protocol_id": 744 }, "minecraft:horn_coral_wall_fan": { - "protocol_id": 750 + "protocol_id": 754 }, "minecraft:ice": { - "protocol_id": 261 + "protocol_id": 264 }, "minecraft:infested_chiseled_stone_bricks": { - "protocol_id": 318 - }, - "minecraft:infested_cobblestone": { - "protocol_id": 314 - }, - "minecraft:infested_cracked_stone_bricks": { - "protocol_id": 317 - }, - "minecraft:infested_deepslate": { - "protocol_id": 1071 - }, - "minecraft:infested_mossy_stone_bricks": { - "protocol_id": 316 - }, - "minecraft:infested_stone": { - "protocol_id": 313 - }, - "minecraft:infested_stone_bricks": { - "protocol_id": 315 - }, - "minecraft:iron_bars": { "protocol_id": 322 }, + "minecraft:infested_cobblestone": { + "protocol_id": 318 + }, + "minecraft:infested_cracked_stone_bricks": { + "protocol_id": 321 + }, + "minecraft:infested_deepslate": { + "protocol_id": 1079 + }, + "minecraft:infested_mossy_stone_bricks": { + "protocol_id": 320 + }, + "minecraft:infested_stone": { + "protocol_id": 317 + }, + "minecraft:infested_stone_bricks": { + "protocol_id": 319 + }, + "minecraft:iron_bars": { + "protocol_id": 326 + }, "minecraft:iron_block": { - "protocol_id": 171 + "protocol_id": 174 }, "minecraft:iron_door": { - "protocol_id": 244 + "protocol_id": 247 }, "minecraft:iron_ore": { "protocol_id": 44 }, "minecraft:iron_trapdoor": { - "protocol_id": 490 + "protocol_id": 494 }, "minecraft:jack_o_lantern": { - "protocol_id": 278 + "protocol_id": 282 }, "minecraft:jigsaw": { - "protocol_id": 861 + "protocol_id": 865 }, "minecraft:jukebox": { - "protocol_id": 266 + "protocol_id": 270 }, "minecraft:jungle_button": { - "protocol_id": 410 + "protocol_id": 414 }, "minecraft:jungle_door": { - "protocol_id": 612 + "protocol_id": 616 }, "minecraft:jungle_fence": { - "protocol_id": 603 + "protocol_id": 607 }, "minecraft:jungle_fence_gate": { - "protocol_id": 594 + "protocol_id": 598 }, "minecraft:jungle_hanging_sign": { - "protocol_id": 223 + "protocol_id": 226 }, "minecraft:jungle_leaves": { "protocol_id": 91 @@ -1579,43 +1588,43 @@ "protocol_id": 16 }, "minecraft:jungle_pressure_plate": { - "protocol_id": 248 + "protocol_id": 251 }, "minecraft:jungle_sapling": { "protocol_id": 28 }, "minecraft:jungle_sign": { - "protocol_id": 199 + "protocol_id": 202 }, "minecraft:jungle_slab": { - "protocol_id": 566 + "protocol_id": 570 }, "minecraft:jungle_stairs": { - "protocol_id": 371 + "protocol_id": 375 }, "minecraft:jungle_trapdoor": { - "protocol_id": 300 + "protocol_id": 304 }, "minecraft:jungle_wall_hanging_sign": { - "protocol_id": 235 + "protocol_id": 238 }, "minecraft:jungle_wall_sign": { - "protocol_id": 213 + "protocol_id": 216 }, "minecraft:jungle_wood": { "protocol_id": 74 }, "minecraft:kelp": { - "protocol_id": 706 + "protocol_id": 710 }, "minecraft:kelp_plant": { - "protocol_id": 707 + "protocol_id": 711 }, "minecraft:ladder": { - "protocol_id": 205 + "protocol_id": 208 }, "minecraft:lantern": { - "protocol_id": 812 + "protocol_id": 816 }, "minecraft:lapis_block": { "protocol_id": 104 @@ -1624,232 +1633,235 @@ "protocol_id": 102 }, "minecraft:large_amethyst_bud": { - "protocol_id": 934 + "protocol_id": 940 }, "minecraft:large_fern": { - "protocol_id": 526 + "protocol_id": 530 }, "minecraft:lava": { "protocol_id": 36 }, "minecraft:lava_cauldron": { - "protocol_id": 354 + "protocol_id": 358 + }, + "minecraft:leaf_litter": { + "protocol_id": 1051 }, "minecraft:lectern": { - "protocol_id": 808 + "protocol_id": 812 }, "minecraft:lever": { - "protocol_id": 242 + "protocol_id": 245 }, "minecraft:light": { - "protocol_id": 489 + "protocol_id": 493 }, "minecraft:light_blue_banner": { - "protocol_id": 530 + "protocol_id": 534 }, "minecraft:light_blue_bed": { "protocol_id": 113 }, "minecraft:light_blue_candle": { - "protocol_id": 901 + "protocol_id": 907 }, "minecraft:light_blue_candle_cake": { - "protocol_id": 918 + "protocol_id": 924 }, "minecraft:light_blue_carpet": { - "protocol_id": 505 + "protocol_id": 509 }, "minecraft:light_blue_concrete": { - "protocol_id": 677 + "protocol_id": 681 }, "minecraft:light_blue_concrete_powder": { - "protocol_id": 693 + "protocol_id": 697 }, "minecraft:light_blue_glazed_terracotta": { - "protocol_id": 661 + "protocol_id": 665 }, "minecraft:light_blue_shulker_box": { - "protocol_id": 645 + "protocol_id": 649 }, "minecraft:light_blue_stained_glass": { - "protocol_id": 284 + "protocol_id": 288 }, "minecraft:light_blue_stained_glass_pane": { - "protocol_id": 467 + "protocol_id": 471 }, "minecraft:light_blue_terracotta": { - "protocol_id": 451 + "protocol_id": 455 }, "minecraft:light_blue_wall_banner": { - "protocol_id": 546 + "protocol_id": 550 }, "minecraft:light_blue_wool": { - "protocol_id": 140 + "protocol_id": 143 }, "minecraft:light_gray_banner": { - "protocol_id": 535 + "protocol_id": 539 }, "minecraft:light_gray_bed": { "protocol_id": 118 }, "minecraft:light_gray_candle": { - "protocol_id": 906 + "protocol_id": 912 }, "minecraft:light_gray_candle_cake": { - "protocol_id": 923 + "protocol_id": 929 }, "minecraft:light_gray_carpet": { - "protocol_id": 510 + "protocol_id": 514 }, "minecraft:light_gray_concrete": { - "protocol_id": 682 + "protocol_id": 686 }, "minecraft:light_gray_concrete_powder": { - "protocol_id": 698 + "protocol_id": 702 }, "minecraft:light_gray_glazed_terracotta": { - "protocol_id": 666 + "protocol_id": 670 }, "minecraft:light_gray_shulker_box": { - "protocol_id": 650 + "protocol_id": 654 }, "minecraft:light_gray_stained_glass": { - "protocol_id": 289 + "protocol_id": 293 }, "minecraft:light_gray_stained_glass_pane": { - "protocol_id": 472 + "protocol_id": 476 }, "minecraft:light_gray_terracotta": { - "protocol_id": 456 + "protocol_id": 460 }, "minecraft:light_gray_wall_banner": { - "protocol_id": 551 + "protocol_id": 555 }, "minecraft:light_gray_wool": { - "protocol_id": 145 + "protocol_id": 148 }, "minecraft:light_weighted_pressure_plate": { - "protocol_id": 435 + "protocol_id": 439 }, "minecraft:lightning_rod": { - "protocol_id": 1034 + "protocol_id": 1040 }, "minecraft:lilac": { - "protocol_id": 522 + "protocol_id": 526 }, "minecraft:lily_of_the_valley": { - "protocol_id": 167 + "protocol_id": 170 }, "minecraft:lily_pad": { - "protocol_id": 339 + "protocol_id": 343 }, "minecraft:lime_banner": { - "protocol_id": 532 + "protocol_id": 536 }, "minecraft:lime_bed": { "protocol_id": 115 }, "minecraft:lime_candle": { - "protocol_id": 903 + "protocol_id": 909 }, "minecraft:lime_candle_cake": { - "protocol_id": 920 + "protocol_id": 926 }, "minecraft:lime_carpet": { - "protocol_id": 507 + "protocol_id": 511 }, "minecraft:lime_concrete": { - "protocol_id": 679 + "protocol_id": 683 }, "minecraft:lime_concrete_powder": { - "protocol_id": 695 + "protocol_id": 699 }, "minecraft:lime_glazed_terracotta": { - "protocol_id": 663 + "protocol_id": 667 }, "minecraft:lime_shulker_box": { - "protocol_id": 647 + "protocol_id": 651 }, "minecraft:lime_stained_glass": { - "protocol_id": 286 + "protocol_id": 290 }, "minecraft:lime_stained_glass_pane": { - "protocol_id": 469 + "protocol_id": 473 }, "minecraft:lime_terracotta": { - "protocol_id": 453 + "protocol_id": 457 }, "minecraft:lime_wall_banner": { - "protocol_id": 548 + "protocol_id": 552 }, "minecraft:lime_wool": { - "protocol_id": 142 + "protocol_id": 145 }, "minecraft:lodestone": { - "protocol_id": 876 + "protocol_id": 882 }, "minecraft:loom": { - "protocol_id": 801 + "protocol_id": 805 }, "minecraft:magenta_banner": { - "protocol_id": 529 + "protocol_id": 533 }, "minecraft:magenta_bed": { "protocol_id": 112 }, "minecraft:magenta_candle": { - "protocol_id": 900 + "protocol_id": 906 }, "minecraft:magenta_candle_cake": { - "protocol_id": 917 + "protocol_id": 923 }, "minecraft:magenta_carpet": { - "protocol_id": 504 + "protocol_id": 508 }, "minecraft:magenta_concrete": { - "protocol_id": 676 + "protocol_id": 680 }, "minecraft:magenta_concrete_powder": { - "protocol_id": 692 + "protocol_id": 696 }, "minecraft:magenta_glazed_terracotta": { - "protocol_id": 660 + "protocol_id": 664 }, "minecraft:magenta_shulker_box": { - "protocol_id": 644 + "protocol_id": 648 }, "minecraft:magenta_stained_glass": { - "protocol_id": 283 + "protocol_id": 287 }, "minecraft:magenta_stained_glass_pane": { - "protocol_id": 466 + "protocol_id": 470 }, "minecraft:magenta_terracotta": { - "protocol_id": 450 + "protocol_id": 454 }, "minecraft:magenta_wall_banner": { - "protocol_id": 545 + "protocol_id": 549 }, "minecraft:magenta_wool": { - "protocol_id": 139 + "protocol_id": 142 }, "minecraft:magma_block": { - "protocol_id": 635 + "protocol_id": 639 }, "minecraft:mangrove_button": { - "protocol_id": 415 + "protocol_id": 419 }, "minecraft:mangrove_door": { - "protocol_id": 617 + "protocol_id": 621 }, "minecraft:mangrove_fence": { - "protocol_id": 608 + "protocol_id": 612 }, "minecraft:mangrove_fence_gate": { - "protocol_id": 599 + "protocol_id": 603 }, "minecraft:mangrove_hanging_sign": { - "protocol_id": 228 + "protocol_id": 231 }, "minecraft:mangrove_leaves": { "protocol_id": 96 @@ -1861,7 +1873,7 @@ "protocol_id": 22 }, "minecraft:mangrove_pressure_plate": { - "protocol_id": 253 + "protocol_id": 256 }, "minecraft:mangrove_propagule": { "protocol_id": 33 @@ -1870,148 +1882,148 @@ "protocol_id": 58 }, "minecraft:mangrove_sign": { - "protocol_id": 202 + "protocol_id": 205 }, "minecraft:mangrove_slab": { - "protocol_id": 571 + "protocol_id": 575 }, "minecraft:mangrove_stairs": { - "protocol_id": 484 + "protocol_id": 488 }, "minecraft:mangrove_trapdoor": { - "protocol_id": 305 + "protocol_id": 309 }, "minecraft:mangrove_wall_hanging_sign": { - "protocol_id": 238 + "protocol_id": 241 }, "minecraft:mangrove_wall_sign": { - "protocol_id": 216 + "protocol_id": 219 }, "minecraft:mangrove_wood": { "protocol_id": 78 }, "minecraft:medium_amethyst_bud": { - "protocol_id": 935 + "protocol_id": 941 }, "minecraft:melon": { - "protocol_id": 326 - }, - "minecraft:melon_stem": { "protocol_id": 330 }, + "minecraft:melon_stem": { + "protocol_id": 334 + }, "minecraft:moss_block": { - "protocol_id": 1044 + "protocol_id": 1052 }, "minecraft:moss_carpet": { - "protocol_id": 1042 + "protocol_id": 1048 }, "minecraft:mossy_cobblestone": { - "protocol_id": 176 + "protocol_id": 179 }, "minecraft:mossy_cobblestone_slab": { - "protocol_id": 778 + "protocol_id": 782 }, "minecraft:mossy_cobblestone_stairs": { - "protocol_id": 764 + "protocol_id": 768 }, "minecraft:mossy_cobblestone_wall": { - "protocol_id": 375 + "protocol_id": 379 }, "minecraft:mossy_stone_brick_slab": { - "protocol_id": 776 + "protocol_id": 780 }, "minecraft:mossy_stone_brick_stairs": { - "protocol_id": 762 + "protocol_id": 766 }, "minecraft:mossy_stone_brick_wall": { - "protocol_id": 790 + "protocol_id": 794 }, "minecraft:mossy_stone_bricks": { - "protocol_id": 308 + "protocol_id": 312 }, "minecraft:moving_piston": { - "protocol_id": 153 + "protocol_id": 156 }, "minecraft:mud": { - "protocol_id": 1050 + "protocol_id": 1058 }, "minecraft:mud_brick_slab": { - "protocol_id": 582 + "protocol_id": 586 }, "minecraft:mud_brick_stairs": { - "protocol_id": 337 + "protocol_id": 341 }, "minecraft:mud_brick_wall": { - "protocol_id": 793 + "protocol_id": 797 }, "minecraft:mud_bricks": { - "protocol_id": 312 + "protocol_id": 316 }, "minecraft:muddy_mangrove_roots": { "protocol_id": 59 }, "minecraft:mushroom_stem": { - "protocol_id": 321 + "protocol_id": 325 }, "minecraft:mycelium": { - "protocol_id": 338 + "protocol_id": 342 }, "minecraft:nether_brick_fence": { - "protocol_id": 347 + "protocol_id": 351 }, "minecraft:nether_brick_slab": { - "protocol_id": 583 + "protocol_id": 587 }, "minecraft:nether_brick_stairs": { - "protocol_id": 348 + "protocol_id": 352 }, "minecraft:nether_brick_wall": { - "protocol_id": 794 + "protocol_id": 798 }, "minecraft:nether_bricks": { - "protocol_id": 346 + "protocol_id": 350 }, "minecraft:nether_gold_ore": { "protocol_id": 48 }, "minecraft:nether_portal": { - "protocol_id": 276 + "protocol_id": 280 }, "minecraft:nether_quartz_ore": { - "protocol_id": 440 + "protocol_id": 444 }, "minecraft:nether_sprouts": { - "protocol_id": 825 + "protocol_id": 829 }, "minecraft:nether_wart": { - "protocol_id": 349 + "protocol_id": 353 }, "minecraft:nether_wart_block": { - "protocol_id": 636 + "protocol_id": 640 }, "minecraft:netherite_block": { - "protocol_id": 868 + "protocol_id": 874 }, "minecraft:netherrack": { - "protocol_id": 268 + "protocol_id": 272 }, "minecraft:note_block": { "protocol_id": 109 }, "minecraft:oak_button": { - "protocol_id": 407 + "protocol_id": 411 }, "minecraft:oak_door": { - "protocol_id": 204 + "protocol_id": 207 }, "minecraft:oak_fence": { - "protocol_id": 267 + "protocol_id": 271 }, "minecraft:oak_fence_gate": { - "protocol_id": 334 + "protocol_id": 338 }, "minecraft:oak_hanging_sign": { - "protocol_id": 218 + "protocol_id": 221 }, "minecraft:oak_leaves": { "protocol_id": 88 @@ -2023,148 +2035,148 @@ "protocol_id": 13 }, "minecraft:oak_pressure_plate": { - "protocol_id": 245 + "protocol_id": 248 }, "minecraft:oak_sapling": { "protocol_id": 25 }, "minecraft:oak_sign": { - "protocol_id": 194 + "protocol_id": 197 }, "minecraft:oak_slab": { - "protocol_id": 563 + "protocol_id": 567 }, "minecraft:oak_stairs": { - "protocol_id": 184 + "protocol_id": 187 }, "minecraft:oak_trapdoor": { - "protocol_id": 297 + "protocol_id": 301 }, "minecraft:oak_wall_hanging_sign": { - "protocol_id": 230 + "protocol_id": 233 }, "minecraft:oak_wall_sign": { - "protocol_id": 208 + "protocol_id": 211 }, "minecraft:oak_wood": { "protocol_id": 71 }, "minecraft:observer": { - "protocol_id": 640 + "protocol_id": 644 }, "minecraft:obsidian": { - "protocol_id": 177 + "protocol_id": 180 }, "minecraft:ochre_froglight": { - "protocol_id": 1078 + "protocol_id": 1086 }, "minecraft:open_eyeblossom": { - "protocol_id": 1091 + "protocol_id": 1099 }, "minecraft:orange_banner": { - "protocol_id": 528 + "protocol_id": 532 }, "minecraft:orange_bed": { "protocol_id": 111 }, "minecraft:orange_candle": { - "protocol_id": 899 + "protocol_id": 905 }, "minecraft:orange_candle_cake": { - "protocol_id": 916 + "protocol_id": 922 }, "minecraft:orange_carpet": { - "protocol_id": 503 + "protocol_id": 507 }, "minecraft:orange_concrete": { - "protocol_id": 675 + "protocol_id": 679 }, "minecraft:orange_concrete_powder": { - "protocol_id": 691 + "protocol_id": 695 }, "minecraft:orange_glazed_terracotta": { - "protocol_id": 659 + "protocol_id": 663 }, "minecraft:orange_shulker_box": { - "protocol_id": 643 + "protocol_id": 647 }, "minecraft:orange_stained_glass": { - "protocol_id": 282 + "protocol_id": 286 }, "minecraft:orange_stained_glass_pane": { - "protocol_id": 465 + "protocol_id": 469 }, "minecraft:orange_terracotta": { - "protocol_id": 449 + "protocol_id": 453 }, "minecraft:orange_tulip": { - "protocol_id": 161 - }, - "minecraft:orange_wall_banner": { - "protocol_id": 544 - }, - "minecraft:orange_wool": { - "protocol_id": 138 - }, - "minecraft:oxeye_daisy": { "protocol_id": 164 }, + "minecraft:orange_wall_banner": { + "protocol_id": 548 + }, + "minecraft:orange_wool": { + "protocol_id": 141 + }, + "minecraft:oxeye_daisy": { + "protocol_id": 167 + }, "minecraft:oxidized_chiseled_copper": { - "protocol_id": 970 + "protocol_id": 976 }, "minecraft:oxidized_copper": { - "protocol_id": 963 + "protocol_id": 969 }, "minecraft:oxidized_copper_bulb": { - "protocol_id": 1029 + "protocol_id": 1035 }, "minecraft:oxidized_copper_door": { - "protocol_id": 1004 + "protocol_id": 1010 }, "minecraft:oxidized_copper_grate": { - "protocol_id": 1021 + "protocol_id": 1027 }, "minecraft:oxidized_copper_trapdoor": { - "protocol_id": 1012 + "protocol_id": 1018 }, "minecraft:oxidized_cut_copper": { - "protocol_id": 966 + "protocol_id": 972 }, "minecraft:oxidized_cut_copper_slab": { - "protocol_id": 982 + "protocol_id": 988 }, "minecraft:oxidized_cut_copper_stairs": { - "protocol_id": 978 + "protocol_id": 984 }, "minecraft:packed_ice": { - "protocol_id": 520 + "protocol_id": 524 }, "minecraft:packed_mud": { - "protocol_id": 311 + "protocol_id": 315 }, "minecraft:pale_hanging_moss": { - "protocol_id": 1090 + "protocol_id": 1098 }, "minecraft:pale_moss_block": { - "protocol_id": 1088 + "protocol_id": 1096 }, "minecraft:pale_moss_carpet": { - "protocol_id": 1089 + "protocol_id": 1097 }, "minecraft:pale_oak_button": { - "protocol_id": 414 + "protocol_id": 418 }, "minecraft:pale_oak_door": { - "protocol_id": 616 + "protocol_id": 620 }, "minecraft:pale_oak_fence": { - "protocol_id": 607 + "protocol_id": 611 }, "minecraft:pale_oak_fence_gate": { - "protocol_id": 598 + "protocol_id": 602 }, "minecraft:pale_oak_hanging_sign": { - "protocol_id": 225 + "protocol_id": 228 }, "minecraft:pale_oak_leaves": { "protocol_id": 95 @@ -2176,568 +2188,568 @@ "protocol_id": 21 }, "minecraft:pale_oak_pressure_plate": { - "protocol_id": 252 + "protocol_id": 255 }, "minecraft:pale_oak_sapling": { "protocol_id": 32 }, "minecraft:pale_oak_sign": { - "protocol_id": 201 + "protocol_id": 204 }, "minecraft:pale_oak_slab": { - "protocol_id": 570 + "protocol_id": 574 }, "minecraft:pale_oak_stairs": { - "protocol_id": 483 + "protocol_id": 487 }, "minecraft:pale_oak_trapdoor": { - "protocol_id": 304 + "protocol_id": 308 }, "minecraft:pale_oak_wall_hanging_sign": { - "protocol_id": 237 + "protocol_id": 240 }, "minecraft:pale_oak_wall_sign": { - "protocol_id": 215 + "protocol_id": 218 }, "minecraft:pale_oak_wood": { "protocol_id": 20 }, "minecraft:pearlescent_froglight": { - "protocol_id": 1080 + "protocol_id": 1088 }, "minecraft:peony": { - "protocol_id": 524 + "protocol_id": 528 }, "minecraft:petrified_oak_slab": { - "protocol_id": 578 + "protocol_id": 582 }, "minecraft:piglin_head": { - "protocol_id": 429 + "protocol_id": 433 }, "minecraft:piglin_wall_head": { - "protocol_id": 430 + "protocol_id": 434 }, "minecraft:pink_banner": { - "protocol_id": 533 + "protocol_id": 537 }, "minecraft:pink_bed": { "protocol_id": 116 }, "minecraft:pink_candle": { - "protocol_id": 904 + "protocol_id": 910 }, "minecraft:pink_candle_cake": { - "protocol_id": 921 + "protocol_id": 927 }, "minecraft:pink_carpet": { - "protocol_id": 508 + "protocol_id": 512 }, "minecraft:pink_concrete": { - "protocol_id": 680 + "protocol_id": 684 }, "minecraft:pink_concrete_powder": { - "protocol_id": 696 + "protocol_id": 700 }, "minecraft:pink_glazed_terracotta": { - "protocol_id": 664 + "protocol_id": 668 }, "minecraft:pink_petals": { - "protocol_id": 1043 + "protocol_id": 1049 }, "minecraft:pink_shulker_box": { - "protocol_id": 648 + "protocol_id": 652 }, "minecraft:pink_stained_glass": { - "protocol_id": 287 + "protocol_id": 291 }, "minecraft:pink_stained_glass_pane": { - "protocol_id": 470 + "protocol_id": 474 }, "minecraft:pink_terracotta": { - "protocol_id": 454 + "protocol_id": 458 }, "minecraft:pink_tulip": { - "protocol_id": 163 + "protocol_id": 166 }, "minecraft:pink_wall_banner": { - "protocol_id": 549 + "protocol_id": 553 }, "minecraft:pink_wool": { - "protocol_id": 143 + "protocol_id": 146 }, "minecraft:piston": { - "protocol_id": 135 + "protocol_id": 138 }, "minecraft:piston_head": { - "protocol_id": 136 + "protocol_id": 139 }, "minecraft:pitcher_crop": { - "protocol_id": 627 + "protocol_id": 631 }, "minecraft:pitcher_plant": { - "protocol_id": 628 + "protocol_id": 632 }, "minecraft:player_head": { - "protocol_id": 423 + "protocol_id": 427 }, "minecraft:player_wall_head": { - "protocol_id": 424 + "protocol_id": 428 }, "minecraft:podzol": { "protocol_id": 11 }, "minecraft:pointed_dripstone": { - "protocol_id": 1035 + "protocol_id": 1041 }, "minecraft:polished_andesite": { "protocol_id": 7 }, "minecraft:polished_andesite_slab": { - "protocol_id": 785 + "protocol_id": 789 }, "minecraft:polished_andesite_stairs": { - "protocol_id": 772 + "protocol_id": 776 }, "minecraft:polished_basalt": { - "protocol_id": 272 + "protocol_id": 276 }, "minecraft:polished_blackstone": { - "protocol_id": 881 - }, - "minecraft:polished_blackstone_brick_slab": { - "protocol_id": 885 - }, - "minecraft:polished_blackstone_brick_stairs": { - "protocol_id": 886 - }, - "minecraft:polished_blackstone_brick_wall": { "protocol_id": 887 }, - "minecraft:polished_blackstone_bricks": { - "protocol_id": 882 - }, - "minecraft:polished_blackstone_button": { - "protocol_id": 892 - }, - "minecraft:polished_blackstone_pressure_plate": { + "minecraft:polished_blackstone_brick_slab": { "protocol_id": 891 }, - "minecraft:polished_blackstone_slab": { - "protocol_id": 890 + "minecraft:polished_blackstone_brick_stairs": { + "protocol_id": 892 }, - "minecraft:polished_blackstone_stairs": { - "protocol_id": 889 - }, - "minecraft:polished_blackstone_wall": { + "minecraft:polished_blackstone_brick_wall": { "protocol_id": 893 }, + "minecraft:polished_blackstone_bricks": { + "protocol_id": 888 + }, + "minecraft:polished_blackstone_button": { + "protocol_id": 898 + }, + "minecraft:polished_blackstone_pressure_plate": { + "protocol_id": 897 + }, + "minecraft:polished_blackstone_slab": { + "protocol_id": 896 + }, + "minecraft:polished_blackstone_stairs": { + "protocol_id": 895 + }, + "minecraft:polished_blackstone_wall": { + "protocol_id": 899 + }, "minecraft:polished_deepslate": { - "protocol_id": 1056 + "protocol_id": 1064 }, "minecraft:polished_deepslate_slab": { - "protocol_id": 1058 + "protocol_id": 1066 }, "minecraft:polished_deepslate_stairs": { - "protocol_id": 1057 + "protocol_id": 1065 }, "minecraft:polished_deepslate_wall": { - "protocol_id": 1059 + "protocol_id": 1067 }, "minecraft:polished_diorite": { "protocol_id": 5 }, "minecraft:polished_diorite_slab": { - "protocol_id": 777 + "protocol_id": 781 }, "minecraft:polished_diorite_stairs": { - "protocol_id": 763 + "protocol_id": 767 }, "minecraft:polished_granite": { "protocol_id": 3 }, "minecraft:polished_granite_slab": { - "protocol_id": 774 + "protocol_id": 778 }, "minecraft:polished_granite_stairs": { - "protocol_id": 760 + "protocol_id": 764 }, "minecraft:polished_tuff": { - "protocol_id": 941 + "protocol_id": 947 }, "minecraft:polished_tuff_slab": { - "protocol_id": 942 + "protocol_id": 948 }, "minecraft:polished_tuff_stairs": { - "protocol_id": 943 + "protocol_id": 949 }, "minecraft:polished_tuff_wall": { - "protocol_id": 944 + "protocol_id": 950 }, "minecraft:poppy": { - "protocol_id": 156 + "protocol_id": 159 }, "minecraft:potatoes": { - "protocol_id": 406 + "protocol_id": 410 }, "minecraft:potted_acacia_sapling": { - "protocol_id": 382 - }, - "minecraft:potted_allium": { - "protocol_id": 391 - }, - "minecraft:potted_azalea_bush": { - "protocol_id": 1076 - }, - "minecraft:potted_azure_bluet": { - "protocol_id": 392 - }, - "minecraft:potted_bamboo": { - "protocol_id": 756 - }, - "minecraft:potted_birch_sapling": { - "protocol_id": 380 - }, - "minecraft:potted_blue_orchid": { - "protocol_id": 390 - }, - "minecraft:potted_brown_mushroom": { - "protocol_id": 402 - }, - "minecraft:potted_cactus": { - "protocol_id": 404 - }, - "minecraft:potted_cherry_sapling": { - "protocol_id": 383 - }, - "minecraft:potted_closed_eyeblossom": { - "protocol_id": 1094 - }, - "minecraft:potted_cornflower": { - "protocol_id": 398 - }, - "minecraft:potted_crimson_fungus": { - "protocol_id": 872 - }, - "minecraft:potted_crimson_roots": { - "protocol_id": 874 - }, - "minecraft:potted_dandelion": { - "protocol_id": 388 - }, - "minecraft:potted_dark_oak_sapling": { - "protocol_id": 384 - }, - "minecraft:potted_dead_bush": { - "protocol_id": 403 - }, - "minecraft:potted_fern": { - "protocol_id": 387 - }, - "minecraft:potted_flowering_azalea_bush": { - "protocol_id": 1077 - }, - "minecraft:potted_jungle_sapling": { - "protocol_id": 381 - }, - "minecraft:potted_lily_of_the_valley": { - "protocol_id": 399 - }, - "minecraft:potted_mangrove_propagule": { "protocol_id": 386 }, - "minecraft:potted_oak_sapling": { - "protocol_id": 378 - }, - "minecraft:potted_open_eyeblossom": { - "protocol_id": 1093 - }, - "minecraft:potted_orange_tulip": { - "protocol_id": 394 - }, - "minecraft:potted_oxeye_daisy": { - "protocol_id": 397 - }, - "minecraft:potted_pale_oak_sapling": { - "protocol_id": 385 - }, - "minecraft:potted_pink_tulip": { - "protocol_id": 396 - }, - "minecraft:potted_poppy": { - "protocol_id": 389 - }, - "minecraft:potted_red_mushroom": { - "protocol_id": 401 - }, - "minecraft:potted_red_tulip": { - "protocol_id": 393 - }, - "minecraft:potted_spruce_sapling": { - "protocol_id": 379 - }, - "minecraft:potted_torchflower": { - "protocol_id": 377 - }, - "minecraft:potted_warped_fungus": { - "protocol_id": 873 - }, - "minecraft:potted_warped_roots": { - "protocol_id": 875 - }, - "minecraft:potted_white_tulip": { + "minecraft:potted_allium": { "protocol_id": 395 }, - "minecraft:potted_wither_rose": { + "minecraft:potted_azalea_bush": { + "protocol_id": 1084 + }, + "minecraft:potted_azure_bluet": { + "protocol_id": 396 + }, + "minecraft:potted_bamboo": { + "protocol_id": 760 + }, + "minecraft:potted_birch_sapling": { + "protocol_id": 384 + }, + "minecraft:potted_blue_orchid": { + "protocol_id": 394 + }, + "minecraft:potted_brown_mushroom": { + "protocol_id": 406 + }, + "minecraft:potted_cactus": { + "protocol_id": 408 + }, + "minecraft:potted_cherry_sapling": { + "protocol_id": 387 + }, + "minecraft:potted_closed_eyeblossom": { + "protocol_id": 1102 + }, + "minecraft:potted_cornflower": { + "protocol_id": 402 + }, + "minecraft:potted_crimson_fungus": { + "protocol_id": 878 + }, + "minecraft:potted_crimson_roots": { + "protocol_id": 880 + }, + "minecraft:potted_dandelion": { + "protocol_id": 392 + }, + "minecraft:potted_dark_oak_sapling": { + "protocol_id": 388 + }, + "minecraft:potted_dead_bush": { + "protocol_id": 407 + }, + "minecraft:potted_fern": { + "protocol_id": 391 + }, + "minecraft:potted_flowering_azalea_bush": { + "protocol_id": 1085 + }, + "minecraft:potted_jungle_sapling": { + "protocol_id": 385 + }, + "minecraft:potted_lily_of_the_valley": { + "protocol_id": 403 + }, + "minecraft:potted_mangrove_propagule": { + "protocol_id": 390 + }, + "minecraft:potted_oak_sapling": { + "protocol_id": 382 + }, + "minecraft:potted_open_eyeblossom": { + "protocol_id": 1101 + }, + "minecraft:potted_orange_tulip": { + "protocol_id": 398 + }, + "minecraft:potted_oxeye_daisy": { + "protocol_id": 401 + }, + "minecraft:potted_pale_oak_sapling": { + "protocol_id": 389 + }, + "minecraft:potted_pink_tulip": { "protocol_id": 400 }, + "minecraft:potted_poppy": { + "protocol_id": 393 + }, + "minecraft:potted_red_mushroom": { + "protocol_id": 405 + }, + "minecraft:potted_red_tulip": { + "protocol_id": 397 + }, + "minecraft:potted_spruce_sapling": { + "protocol_id": 383 + }, + "minecraft:potted_torchflower": { + "protocol_id": 381 + }, + "minecraft:potted_warped_fungus": { + "protocol_id": 879 + }, + "minecraft:potted_warped_roots": { + "protocol_id": 881 + }, + "minecraft:potted_white_tulip": { + "protocol_id": 399 + }, + "minecraft:potted_wither_rose": { + "protocol_id": 404 + }, "minecraft:powder_snow": { - "protocol_id": 953 + "protocol_id": 959 }, "minecraft:powder_snow_cauldron": { - "protocol_id": 355 + "protocol_id": 359 }, "minecraft:powered_rail": { "protocol_id": 126 }, "minecraft:prismarine": { - "protocol_id": 491 - }, - "minecraft:prismarine_brick_slab": { - "protocol_id": 498 - }, - "minecraft:prismarine_brick_stairs": { "protocol_id": 495 }, + "minecraft:prismarine_brick_slab": { + "protocol_id": 502 + }, + "minecraft:prismarine_brick_stairs": { + "protocol_id": 499 + }, "minecraft:prismarine_bricks": { - "protocol_id": 492 + "protocol_id": 496 }, "minecraft:prismarine_slab": { - "protocol_id": 497 + "protocol_id": 501 }, "minecraft:prismarine_stairs": { - "protocol_id": 494 + "protocol_id": 498 }, "minecraft:prismarine_wall": { - "protocol_id": 788 + "protocol_id": 792 }, "minecraft:pumpkin": { - "protocol_id": 325 - }, - "minecraft:pumpkin_stem": { "protocol_id": 329 }, + "minecraft:pumpkin_stem": { + "protocol_id": 333 + }, "minecraft:purple_banner": { - "protocol_id": 537 + "protocol_id": 541 }, "minecraft:purple_bed": { "protocol_id": 120 }, "minecraft:purple_candle": { - "protocol_id": 908 + "protocol_id": 914 }, "minecraft:purple_candle_cake": { - "protocol_id": 925 + "protocol_id": 931 }, "minecraft:purple_carpet": { - "protocol_id": 512 + "protocol_id": 516 }, "minecraft:purple_concrete": { - "protocol_id": 684 + "protocol_id": 688 }, "minecraft:purple_concrete_powder": { - "protocol_id": 700 + "protocol_id": 704 }, "minecraft:purple_glazed_terracotta": { - "protocol_id": 668 + "protocol_id": 672 }, "minecraft:purple_shulker_box": { - "protocol_id": 652 + "protocol_id": 656 }, "minecraft:purple_stained_glass": { - "protocol_id": 291 + "protocol_id": 295 }, "minecraft:purple_stained_glass_pane": { - "protocol_id": 474 + "protocol_id": 478 }, "minecraft:purple_terracotta": { - "protocol_id": 458 + "protocol_id": 462 }, "minecraft:purple_wall_banner": { - "protocol_id": 553 + "protocol_id": 557 }, "minecraft:purple_wool": { - "protocol_id": 147 + "protocol_id": 150 }, "minecraft:purpur_block": { - "protocol_id": 622 + "protocol_id": 626 }, "minecraft:purpur_pillar": { - "protocol_id": 623 + "protocol_id": 627 }, "minecraft:purpur_slab": { - "protocol_id": 587 + "protocol_id": 591 }, "minecraft:purpur_stairs": { - "protocol_id": 624 + "protocol_id": 628 }, "minecraft:quartz_block": { - "protocol_id": 442 + "protocol_id": 446 }, "minecraft:quartz_bricks": { - "protocol_id": 896 + "protocol_id": 902 }, "minecraft:quartz_pillar": { - "protocol_id": 444 + "protocol_id": 448 }, "minecraft:quartz_slab": { - "protocol_id": 584 + "protocol_id": 588 }, "minecraft:quartz_stairs": { - "protocol_id": 445 + "protocol_id": 449 }, "minecraft:rail": { - "protocol_id": 206 + "protocol_id": 209 }, "minecraft:raw_copper_block": { - "protocol_id": 1074 + "protocol_id": 1082 }, "minecraft:raw_gold_block": { - "protocol_id": 1075 + "protocol_id": 1083 }, "minecraft:raw_iron_block": { - "protocol_id": 1073 + "protocol_id": 1081 }, "minecraft:red_banner": { - "protocol_id": 541 + "protocol_id": 545 }, "minecraft:red_bed": { "protocol_id": 124 }, "minecraft:red_candle": { - "protocol_id": 912 + "protocol_id": 918 }, "minecraft:red_candle_cake": { - "protocol_id": 929 + "protocol_id": 935 }, "minecraft:red_carpet": { - "protocol_id": 516 + "protocol_id": 520 }, "minecraft:red_concrete": { - "protocol_id": 688 + "protocol_id": 692 }, "minecraft:red_concrete_powder": { - "protocol_id": 704 + "protocol_id": 708 }, "minecraft:red_glazed_terracotta": { - "protocol_id": 672 + "protocol_id": 676 }, "minecraft:red_mushroom": { - "protocol_id": 169 + "protocol_id": 172 }, "minecraft:red_mushroom_block": { - "protocol_id": 320 + "protocol_id": 324 }, "minecraft:red_nether_brick_slab": { - "protocol_id": 784 + "protocol_id": 788 }, "minecraft:red_nether_brick_stairs": { - "protocol_id": 771 + "protocol_id": 775 }, "minecraft:red_nether_brick_wall": { - "protocol_id": 796 + "protocol_id": 800 }, "minecraft:red_nether_bricks": { - "protocol_id": 637 + "protocol_id": 641 }, "minecraft:red_sand": { "protocol_id": 39 }, "minecraft:red_sandstone": { - "protocol_id": 559 + "protocol_id": 563 }, "minecraft:red_sandstone_slab": { - "protocol_id": 585 + "protocol_id": 589 }, "minecraft:red_sandstone_stairs": { - "protocol_id": 562 + "protocol_id": 566 }, "minecraft:red_sandstone_wall": { - "protocol_id": 789 + "protocol_id": 793 }, "minecraft:red_shulker_box": { - "protocol_id": 656 + "protocol_id": 660 }, "minecraft:red_stained_glass": { - "protocol_id": 295 + "protocol_id": 299 }, "minecraft:red_stained_glass_pane": { - "protocol_id": 478 + "protocol_id": 482 }, "minecraft:red_terracotta": { - "protocol_id": 462 + "protocol_id": 466 }, "minecraft:red_tulip": { - "protocol_id": 160 + "protocol_id": 163 }, "minecraft:red_wall_banner": { - "protocol_id": 557 + "protocol_id": 561 }, "minecraft:red_wool": { - "protocol_id": 151 + "protocol_id": 154 }, "minecraft:redstone_block": { - "protocol_id": 439 + "protocol_id": 443 }, "minecraft:redstone_lamp": { - "protocol_id": 360 + "protocol_id": 364 }, "minecraft:redstone_ore": { - "protocol_id": 255 - }, - "minecraft:redstone_torch": { - "protocol_id": 257 - }, - "minecraft:redstone_wall_torch": { "protocol_id": 258 }, + "minecraft:redstone_torch": { + "protocol_id": 260 + }, + "minecraft:redstone_wall_torch": { + "protocol_id": 261 + }, "minecraft:redstone_wire": { - "protocol_id": 186 + "protocol_id": 189 }, "minecraft:reinforced_deepslate": { - "protocol_id": 1082 + "protocol_id": 1090 }, "minecraft:repeater": { - "protocol_id": 280 + "protocol_id": 284 }, "minecraft:repeating_command_block": { - "protocol_id": 632 + "protocol_id": 636 }, "minecraft:resin_block": { - "protocol_id": 340 - }, - "minecraft:resin_brick_slab": { - "protocol_id": 343 - }, - "minecraft:resin_brick_stairs": { - "protocol_id": 342 - }, - "minecraft:resin_brick_wall": { "protocol_id": 344 }, + "minecraft:resin_brick_slab": { + "protocol_id": 347 + }, + "minecraft:resin_brick_stairs": { + "protocol_id": 346 + }, + "minecraft:resin_brick_wall": { + "protocol_id": 348 + }, "minecraft:resin_bricks": { - "protocol_id": 341 + "protocol_id": 345 }, "minecraft:resin_clump": { - "protocol_id": 333 + "protocol_id": 337 }, "minecraft:respawn_anchor": { - "protocol_id": 871 + "protocol_id": 877 }, "minecraft:rooted_dirt": { - "protocol_id": 1049 + "protocol_id": 1057 }, "minecraft:rose_bush": { - "protocol_id": 523 + "protocol_id": 527 }, "minecraft:sand": { "protocol_id": 37 @@ -2746,160 +2758,163 @@ "protocol_id": 106 }, "minecraft:sandstone_slab": { - "protocol_id": 576 + "protocol_id": 580 }, "minecraft:sandstone_stairs": { - "protocol_id": 362 + "protocol_id": 366 }, "minecraft:sandstone_wall": { - "protocol_id": 797 + "protocol_id": 801 }, "minecraft:scaffolding": { - "protocol_id": 800 + "protocol_id": 804 }, "minecraft:sculk": { - "protocol_id": 956 + "protocol_id": 962 }, "minecraft:sculk_catalyst": { - "protocol_id": 958 + "protocol_id": 964 }, "minecraft:sculk_sensor": { - "protocol_id": 954 + "protocol_id": 960 }, "minecraft:sculk_shrieker": { - "protocol_id": 959 + "protocol_id": 965 }, "minecraft:sculk_vein": { - "protocol_id": 957 + "protocol_id": 963 }, "minecraft:sea_lantern": { - "protocol_id": 500 + "protocol_id": 504 }, "minecraft:sea_pickle": { - "protocol_id": 751 + "protocol_id": 755 }, "minecraft:seagrass": { - "protocol_id": 133 + "protocol_id": 136 + }, + "minecraft:short_dry_grass": { + "protocol_id": 134 }, "minecraft:short_grass": { "protocol_id": 130 }, "minecraft:shroomlight": { - "protocol_id": 832 + "protocol_id": 836 }, "minecraft:shulker_box": { - "protocol_id": 641 + "protocol_id": 645 }, "minecraft:skeleton_skull": { - "protocol_id": 417 + "protocol_id": 421 }, "minecraft:skeleton_wall_skull": { - "protocol_id": 418 + "protocol_id": 422 }, "minecraft:slime_block": { - "protocol_id": 487 + "protocol_id": 491 }, "minecraft:small_amethyst_bud": { - "protocol_id": 936 + "protocol_id": 942 }, "minecraft:small_dripleaf": { - "protocol_id": 1047 + "protocol_id": 1055 }, "minecraft:smithing_table": { - "protocol_id": 809 - }, - "minecraft:smoker": { - "protocol_id": 803 - }, - "minecraft:smooth_basalt": { - "protocol_id": 1072 - }, - "minecraft:smooth_quartz": { - "protocol_id": 590 - }, - "minecraft:smooth_quartz_slab": { - "protocol_id": 781 - }, - "minecraft:smooth_quartz_stairs": { - "protocol_id": 768 - }, - "minecraft:smooth_red_sandstone": { - "protocol_id": 591 - }, - "minecraft:smooth_red_sandstone_slab": { - "protocol_id": 775 - }, - "minecraft:smooth_red_sandstone_stairs": { - "protocol_id": 761 - }, - "minecraft:smooth_sandstone": { - "protocol_id": 589 - }, - "minecraft:smooth_sandstone_slab": { - "protocol_id": 780 - }, - "minecraft:smooth_sandstone_stairs": { - "protocol_id": 767 - }, - "minecraft:smooth_stone": { - "protocol_id": 588 - }, - "minecraft:smooth_stone_slab": { - "protocol_id": 575 - }, - "minecraft:sniffer_egg": { - "protocol_id": 710 - }, - "minecraft:snow": { - "protocol_id": 260 - }, - "minecraft:snow_block": { - "protocol_id": 262 - }, - "minecraft:soul_campfire": { - "protocol_id": 815 - }, - "minecraft:soul_fire": { - "protocol_id": 181 - }, - "minecraft:soul_lantern": { "protocol_id": 813 }, + "minecraft:smoker": { + "protocol_id": 807 + }, + "minecraft:smooth_basalt": { + "protocol_id": 1080 + }, + "minecraft:smooth_quartz": { + "protocol_id": 594 + }, + "minecraft:smooth_quartz_slab": { + "protocol_id": 785 + }, + "minecraft:smooth_quartz_stairs": { + "protocol_id": 772 + }, + "minecraft:smooth_red_sandstone": { + "protocol_id": 595 + }, + "minecraft:smooth_red_sandstone_slab": { + "protocol_id": 779 + }, + "minecraft:smooth_red_sandstone_stairs": { + "protocol_id": 765 + }, + "minecraft:smooth_sandstone": { + "protocol_id": 593 + }, + "minecraft:smooth_sandstone_slab": { + "protocol_id": 784 + }, + "minecraft:smooth_sandstone_stairs": { + "protocol_id": 771 + }, + "minecraft:smooth_stone": { + "protocol_id": 592 + }, + "minecraft:smooth_stone_slab": { + "protocol_id": 579 + }, + "minecraft:sniffer_egg": { + "protocol_id": 714 + }, + "minecraft:snow": { + "protocol_id": 263 + }, + "minecraft:snow_block": { + "protocol_id": 265 + }, + "minecraft:soul_campfire": { + "protocol_id": 819 + }, + "minecraft:soul_fire": { + "protocol_id": 184 + }, + "minecraft:soul_lantern": { + "protocol_id": 817 + }, "minecraft:soul_sand": { - "protocol_id": 269 - }, - "minecraft:soul_soil": { - "protocol_id": 270 - }, - "minecraft:soul_torch": { "protocol_id": 273 }, - "minecraft:soul_wall_torch": { + "minecraft:soul_soil": { "protocol_id": 274 }, + "minecraft:soul_torch": { + "protocol_id": 277 + }, + "minecraft:soul_wall_torch": { + "protocol_id": 278 + }, "minecraft:spawner": { - "protocol_id": 182 + "protocol_id": 185 }, "minecraft:sponge": { "protocol_id": 99 }, "minecraft:spore_blossom": { - "protocol_id": 1039 + "protocol_id": 1045 }, "minecraft:spruce_button": { - "protocol_id": 408 + "protocol_id": 412 }, "minecraft:spruce_door": { - "protocol_id": 610 + "protocol_id": 614 }, "minecraft:spruce_fence": { - "protocol_id": 601 + "protocol_id": 605 }, "minecraft:spruce_fence_gate": { - "protocol_id": 592 + "protocol_id": 596 }, "minecraft:spruce_hanging_sign": { - "protocol_id": 219 + "protocol_id": 222 }, "minecraft:spruce_leaves": { "protocol_id": 89 @@ -2911,28 +2926,28 @@ "protocol_id": 14 }, "minecraft:spruce_pressure_plate": { - "protocol_id": 246 + "protocol_id": 249 }, "minecraft:spruce_sapling": { "protocol_id": 26 }, "minecraft:spruce_sign": { - "protocol_id": 195 + "protocol_id": 198 }, "minecraft:spruce_slab": { - "protocol_id": 564 + "protocol_id": 568 }, "minecraft:spruce_stairs": { - "protocol_id": 369 + "protocol_id": 373 }, "minecraft:spruce_trapdoor": { - "protocol_id": 298 + "protocol_id": 302 }, "minecraft:spruce_wall_hanging_sign": { - "protocol_id": 231 + "protocol_id": 234 }, "minecraft:spruce_wall_sign": { - "protocol_id": 209 + "protocol_id": 212 }, "minecraft:spruce_wood": { "protocol_id": 72 @@ -2944,31 +2959,31 @@ "protocol_id": 1 }, "minecraft:stone_brick_slab": { - "protocol_id": 581 + "protocol_id": 585 }, "minecraft:stone_brick_stairs": { - "protocol_id": 336 + "protocol_id": 340 }, "minecraft:stone_brick_wall": { - "protocol_id": 792 + "protocol_id": 796 }, "minecraft:stone_bricks": { - "protocol_id": 307 + "protocol_id": 311 }, "minecraft:stone_button": { - "protocol_id": 259 + "protocol_id": 262 }, "minecraft:stone_pressure_plate": { - "protocol_id": 243 + "protocol_id": 246 }, "minecraft:stone_slab": { - "protocol_id": 574 + "protocol_id": 578 }, "minecraft:stone_stairs": { - "protocol_id": 766 + "protocol_id": 770 }, "minecraft:stonecutter": { - "protocol_id": 810 + "protocol_id": 814 }, "minecraft:stripped_acacia_log": { "protocol_id": 64 @@ -2992,10 +3007,10 @@ "protocol_id": 84 }, "minecraft:stripped_crimson_hyphae": { - "protocol_id": 829 + "protocol_id": 833 }, "minecraft:stripped_crimson_stem": { - "protocol_id": 827 + "protocol_id": 831 }, "minecraft:stripped_dark_oak_log": { "protocol_id": 66 @@ -3034,22 +3049,22 @@ "protocol_id": 80 }, "minecraft:stripped_warped_hyphae": { - "protocol_id": 820 + "protocol_id": 824 }, "minecraft:stripped_warped_stem": { - "protocol_id": 818 + "protocol_id": 822 }, "minecraft:structure_block": { - "protocol_id": 860 + "protocol_id": 864 }, "minecraft:structure_void": { - "protocol_id": 639 + "protocol_id": 643 }, "minecraft:sugar_cane": { - "protocol_id": 265 + "protocol_id": 269 }, "minecraft:sunflower": { - "protocol_id": 521 + "protocol_id": 525 }, "minecraft:suspicious_gravel": { "protocol_id": 41 @@ -3058,418 +3073,430 @@ "protocol_id": 38 }, "minecraft:sweet_berry_bush": { - "protocol_id": 816 + "protocol_id": 820 + }, + "minecraft:tall_dry_grass": { + "protocol_id": 135 }, "minecraft:tall_grass": { - "protocol_id": 525 + "protocol_id": 529 }, "minecraft:tall_seagrass": { - "protocol_id": 134 + "protocol_id": 137 }, "minecraft:target": { - "protocol_id": 863 + "protocol_id": 869 }, "minecraft:terracotta": { - "protocol_id": 518 + "protocol_id": 522 + }, + "minecraft:test_block": { + "protocol_id": 866 + }, + "minecraft:test_instance_block": { + "protocol_id": 867 }, "minecraft:tinted_glass": { - "protocol_id": 952 + "protocol_id": 958 }, "minecraft:tnt": { - "protocol_id": 173 + "protocol_id": 176 }, "minecraft:torch": { - "protocol_id": 178 + "protocol_id": 181 }, "minecraft:torchflower": { - "protocol_id": 155 + "protocol_id": 158 }, "minecraft:torchflower_crop": { - "protocol_id": 626 + "protocol_id": 630 }, "minecraft:trapped_chest": { - "protocol_id": 434 + "protocol_id": 438 }, "minecraft:trial_spawner": { - "protocol_id": 1085 + "protocol_id": 1093 }, "minecraft:tripwire": { - "protocol_id": 367 + "protocol_id": 371 }, "minecraft:tripwire_hook": { - "protocol_id": 366 + "protocol_id": 370 }, "minecraft:tube_coral": { - "protocol_id": 726 + "protocol_id": 730 }, "minecraft:tube_coral_block": { - "protocol_id": 716 + "protocol_id": 720 }, "minecraft:tube_coral_fan": { - "protocol_id": 736 + "protocol_id": 740 }, "minecraft:tube_coral_wall_fan": { - "protocol_id": 746 + "protocol_id": 750 }, "minecraft:tuff": { - "protocol_id": 937 + "protocol_id": 943 }, "minecraft:tuff_brick_slab": { - "protocol_id": 947 + "protocol_id": 953 }, "minecraft:tuff_brick_stairs": { - "protocol_id": 948 + "protocol_id": 954 }, "minecraft:tuff_brick_wall": { - "protocol_id": 949 + "protocol_id": 955 }, "minecraft:tuff_bricks": { - "protocol_id": 946 + "protocol_id": 952 }, "minecraft:tuff_slab": { - "protocol_id": 938 + "protocol_id": 944 }, "minecraft:tuff_stairs": { - "protocol_id": 939 + "protocol_id": 945 }, "minecraft:tuff_wall": { - "protocol_id": 940 + "protocol_id": 946 }, "minecraft:turtle_egg": { - "protocol_id": 709 + "protocol_id": 713 }, "minecraft:twisting_vines": { - "protocol_id": 835 - }, - "minecraft:twisting_vines_plant": { - "protocol_id": 836 - }, - "minecraft:vault": { - "protocol_id": 1086 - }, - "minecraft:verdant_froglight": { - "protocol_id": 1079 - }, - "minecraft:vine": { - "protocol_id": 331 - }, - "minecraft:void_air": { - "protocol_id": 757 - }, - "minecraft:wall_torch": { - "protocol_id": 179 - }, - "minecraft:warped_button": { - "protocol_id": 853 - }, - "minecraft:warped_door": { - "protocol_id": 855 - }, - "minecraft:warped_fence": { - "protocol_id": 845 - }, - "minecraft:warped_fence_gate": { - "protocol_id": 849 - }, - "minecraft:warped_fungus": { - "protocol_id": 822 - }, - "minecraft:warped_hanging_sign": { - "protocol_id": 227 - }, - "minecraft:warped_hyphae": { - "protocol_id": 819 - }, - "minecraft:warped_nylium": { - "protocol_id": 821 - }, - "minecraft:warped_planks": { "protocol_id": 839 }, - "minecraft:warped_pressure_plate": { - "protocol_id": 843 + "minecraft:twisting_vines_plant": { + "protocol_id": 840 }, - "minecraft:warped_roots": { - "protocol_id": 824 + "minecraft:vault": { + "protocol_id": 1094 }, - "minecraft:warped_sign": { + "minecraft:verdant_froglight": { + "protocol_id": 1087 + }, + "minecraft:vine": { + "protocol_id": 335 + }, + "minecraft:void_air": { + "protocol_id": 761 + }, + "minecraft:wall_torch": { + "protocol_id": 182 + }, + "minecraft:warped_button": { "protocol_id": 857 }, - "minecraft:warped_slab": { - "protocol_id": 841 - }, - "minecraft:warped_stairs": { - "protocol_id": 851 - }, - "minecraft:warped_stem": { - "protocol_id": 817 - }, - "minecraft:warped_trapdoor": { - "protocol_id": 847 - }, - "minecraft:warped_wall_hanging_sign": { - "protocol_id": 240 - }, - "minecraft:warped_wall_sign": { + "minecraft:warped_door": { "protocol_id": 859 }, - "minecraft:warped_wart_block": { + "minecraft:warped_fence": { + "protocol_id": 849 + }, + "minecraft:warped_fence_gate": { + "protocol_id": 853 + }, + "minecraft:warped_fungus": { + "protocol_id": 826 + }, + "minecraft:warped_hanging_sign": { + "protocol_id": 230 + }, + "minecraft:warped_hyphae": { "protocol_id": 823 }, + "minecraft:warped_nylium": { + "protocol_id": 825 + }, + "minecraft:warped_planks": { + "protocol_id": 843 + }, + "minecraft:warped_pressure_plate": { + "protocol_id": 847 + }, + "minecraft:warped_roots": { + "protocol_id": 828 + }, + "minecraft:warped_sign": { + "protocol_id": 861 + }, + "minecraft:warped_slab": { + "protocol_id": 845 + }, + "minecraft:warped_stairs": { + "protocol_id": 855 + }, + "minecraft:warped_stem": { + "protocol_id": 821 + }, + "minecraft:warped_trapdoor": { + "protocol_id": 851 + }, + "minecraft:warped_wall_hanging_sign": { + "protocol_id": 243 + }, + "minecraft:warped_wall_sign": { + "protocol_id": 863 + }, + "minecraft:warped_wart_block": { + "protocol_id": 827 + }, "minecraft:water": { "protocol_id": 35 }, "minecraft:water_cauldron": { - "protocol_id": 353 + "protocol_id": 357 }, "minecraft:waxed_chiseled_copper": { - "protocol_id": 977 - }, - "minecraft:waxed_copper_block": { - "protocol_id": 986 - }, - "minecraft:waxed_copper_bulb": { - "protocol_id": 1030 - }, - "minecraft:waxed_copper_door": { - "protocol_id": 1006 - }, - "minecraft:waxed_copper_grate": { - "protocol_id": 1022 - }, - "minecraft:waxed_copper_trapdoor": { - "protocol_id": 1014 - }, - "minecraft:waxed_cut_copper": { - "protocol_id": 993 - }, - "minecraft:waxed_cut_copper_slab": { - "protocol_id": 1001 - }, - "minecraft:waxed_cut_copper_stairs": { - "protocol_id": 997 - }, - "minecraft:waxed_exposed_chiseled_copper": { - "protocol_id": 976 - }, - "minecraft:waxed_exposed_copper": { - "protocol_id": 988 - }, - "minecraft:waxed_exposed_copper_bulb": { - "protocol_id": 1031 - }, - "minecraft:waxed_exposed_copper_door": { - "protocol_id": 1007 - }, - "minecraft:waxed_exposed_copper_grate": { - "protocol_id": 1023 - }, - "minecraft:waxed_exposed_copper_trapdoor": { - "protocol_id": 1015 - }, - "minecraft:waxed_exposed_cut_copper": { - "protocol_id": 992 - }, - "minecraft:waxed_exposed_cut_copper_slab": { - "protocol_id": 1000 - }, - "minecraft:waxed_exposed_cut_copper_stairs": { - "protocol_id": 996 - }, - "minecraft:waxed_oxidized_chiseled_copper": { - "protocol_id": 974 - }, - "minecraft:waxed_oxidized_copper": { - "protocol_id": 989 - }, - "minecraft:waxed_oxidized_copper_bulb": { - "protocol_id": 1033 - }, - "minecraft:waxed_oxidized_copper_door": { - "protocol_id": 1008 - }, - "minecraft:waxed_oxidized_copper_grate": { - "protocol_id": 1025 - }, - "minecraft:waxed_oxidized_copper_trapdoor": { - "protocol_id": 1016 - }, - "minecraft:waxed_oxidized_cut_copper": { - "protocol_id": 990 - }, - "minecraft:waxed_oxidized_cut_copper_slab": { - "protocol_id": 998 - }, - "minecraft:waxed_oxidized_cut_copper_stairs": { - "protocol_id": 994 - }, - "minecraft:waxed_weathered_chiseled_copper": { - "protocol_id": 975 - }, - "minecraft:waxed_weathered_copper": { - "protocol_id": 987 - }, - "minecraft:waxed_weathered_copper_bulb": { - "protocol_id": 1032 - }, - "minecraft:waxed_weathered_copper_door": { - "protocol_id": 1009 - }, - "minecraft:waxed_weathered_copper_grate": { - "protocol_id": 1024 - }, - "minecraft:waxed_weathered_copper_trapdoor": { - "protocol_id": 1017 - }, - "minecraft:waxed_weathered_cut_copper": { - "protocol_id": 991 - }, - "minecraft:waxed_weathered_cut_copper_slab": { - "protocol_id": 999 - }, - "minecraft:waxed_weathered_cut_copper_stairs": { - "protocol_id": 995 - }, - "minecraft:weathered_chiseled_copper": { - "protocol_id": 971 - }, - "minecraft:weathered_copper": { - "protocol_id": 962 - }, - "minecraft:weathered_copper_bulb": { - "protocol_id": 1028 - }, - "minecraft:weathered_copper_door": { - "protocol_id": 1005 - }, - "minecraft:weathered_copper_grate": { - "protocol_id": 1020 - }, - "minecraft:weathered_copper_trapdoor": { - "protocol_id": 1013 - }, - "minecraft:weathered_cut_copper": { - "protocol_id": 967 - }, - "minecraft:weathered_cut_copper_slab": { "protocol_id": 983 }, + "minecraft:waxed_copper_block": { + "protocol_id": 992 + }, + "minecraft:waxed_copper_bulb": { + "protocol_id": 1036 + }, + "minecraft:waxed_copper_door": { + "protocol_id": 1012 + }, + "minecraft:waxed_copper_grate": { + "protocol_id": 1028 + }, + "minecraft:waxed_copper_trapdoor": { + "protocol_id": 1020 + }, + "minecraft:waxed_cut_copper": { + "protocol_id": 999 + }, + "minecraft:waxed_cut_copper_slab": { + "protocol_id": 1007 + }, + "minecraft:waxed_cut_copper_stairs": { + "protocol_id": 1003 + }, + "minecraft:waxed_exposed_chiseled_copper": { + "protocol_id": 982 + }, + "minecraft:waxed_exposed_copper": { + "protocol_id": 994 + }, + "minecraft:waxed_exposed_copper_bulb": { + "protocol_id": 1037 + }, + "minecraft:waxed_exposed_copper_door": { + "protocol_id": 1013 + }, + "minecraft:waxed_exposed_copper_grate": { + "protocol_id": 1029 + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "protocol_id": 1021 + }, + "minecraft:waxed_exposed_cut_copper": { + "protocol_id": 998 + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "protocol_id": 1006 + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "protocol_id": 1002 + }, + "minecraft:waxed_oxidized_chiseled_copper": { + "protocol_id": 980 + }, + "minecraft:waxed_oxidized_copper": { + "protocol_id": 995 + }, + "minecraft:waxed_oxidized_copper_bulb": { + "protocol_id": 1039 + }, + "minecraft:waxed_oxidized_copper_door": { + "protocol_id": 1014 + }, + "minecraft:waxed_oxidized_copper_grate": { + "protocol_id": 1031 + }, + "minecraft:waxed_oxidized_copper_trapdoor": { + "protocol_id": 1022 + }, + "minecraft:waxed_oxidized_cut_copper": { + "protocol_id": 996 + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "protocol_id": 1004 + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "protocol_id": 1000 + }, + "minecraft:waxed_weathered_chiseled_copper": { + "protocol_id": 981 + }, + "minecraft:waxed_weathered_copper": { + "protocol_id": 993 + }, + "minecraft:waxed_weathered_copper_bulb": { + "protocol_id": 1038 + }, + "minecraft:waxed_weathered_copper_door": { + "protocol_id": 1015 + }, + "minecraft:waxed_weathered_copper_grate": { + "protocol_id": 1030 + }, + "minecraft:waxed_weathered_copper_trapdoor": { + "protocol_id": 1023 + }, + "minecraft:waxed_weathered_cut_copper": { + "protocol_id": 997 + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "protocol_id": 1005 + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "protocol_id": 1001 + }, + "minecraft:weathered_chiseled_copper": { + "protocol_id": 977 + }, + "minecraft:weathered_copper": { + "protocol_id": 968 + }, + "minecraft:weathered_copper_bulb": { + "protocol_id": 1034 + }, + "minecraft:weathered_copper_door": { + "protocol_id": 1011 + }, + "minecraft:weathered_copper_grate": { + "protocol_id": 1026 + }, + "minecraft:weathered_copper_trapdoor": { + "protocol_id": 1019 + }, + "minecraft:weathered_cut_copper": { + "protocol_id": 973 + }, + "minecraft:weathered_cut_copper_slab": { + "protocol_id": 989 + }, "minecraft:weathered_cut_copper_stairs": { - "protocol_id": 979 + "protocol_id": 985 }, "minecraft:weeping_vines": { - "protocol_id": 833 + "protocol_id": 837 }, "minecraft:weeping_vines_plant": { - "protocol_id": 834 + "protocol_id": 838 }, "minecraft:wet_sponge": { "protocol_id": 100 }, "minecraft:wheat": { - "protocol_id": 191 + "protocol_id": 194 }, "minecraft:white_banner": { - "protocol_id": 527 + "protocol_id": 531 }, "minecraft:white_bed": { "protocol_id": 110 }, "minecraft:white_candle": { - "protocol_id": 898 + "protocol_id": 904 }, "minecraft:white_candle_cake": { - "protocol_id": 915 + "protocol_id": 921 }, "minecraft:white_carpet": { - "protocol_id": 502 + "protocol_id": 506 }, "minecraft:white_concrete": { - "protocol_id": 674 + "protocol_id": 678 }, "minecraft:white_concrete_powder": { - "protocol_id": 690 + "protocol_id": 694 }, "minecraft:white_glazed_terracotta": { - "protocol_id": 658 + "protocol_id": 662 }, "minecraft:white_shulker_box": { - "protocol_id": 642 + "protocol_id": 646 }, "minecraft:white_stained_glass": { - "protocol_id": 281 + "protocol_id": 285 }, "minecraft:white_stained_glass_pane": { - "protocol_id": 464 + "protocol_id": 468 }, "minecraft:white_terracotta": { - "protocol_id": 448 + "protocol_id": 452 }, "minecraft:white_tulip": { - "protocol_id": 162 + "protocol_id": 165 }, "minecraft:white_wall_banner": { - "protocol_id": 543 + "protocol_id": 547 }, "minecraft:white_wool": { - "protocol_id": 137 + "protocol_id": 140 + }, + "minecraft:wildflowers": { + "protocol_id": 1050 }, "minecraft:wither_rose": { - "protocol_id": 166 + "protocol_id": 169 }, "minecraft:wither_skeleton_skull": { - "protocol_id": 419 + "protocol_id": 423 }, "minecraft:wither_skeleton_wall_skull": { - "protocol_id": 420 + "protocol_id": 424 }, "minecraft:yellow_banner": { - "protocol_id": 531 + "protocol_id": 535 }, "minecraft:yellow_bed": { "protocol_id": 114 }, "minecraft:yellow_candle": { - "protocol_id": 902 + "protocol_id": 908 }, "minecraft:yellow_candle_cake": { - "protocol_id": 919 + "protocol_id": 925 }, "minecraft:yellow_carpet": { - "protocol_id": 506 + "protocol_id": 510 }, "minecraft:yellow_concrete": { - "protocol_id": 678 + "protocol_id": 682 }, "minecraft:yellow_concrete_powder": { - "protocol_id": 694 + "protocol_id": 698 }, "minecraft:yellow_glazed_terracotta": { - "protocol_id": 662 + "protocol_id": 666 }, "minecraft:yellow_shulker_box": { - "protocol_id": 646 + "protocol_id": 650 }, "minecraft:yellow_stained_glass": { - "protocol_id": 285 + "protocol_id": 289 }, "minecraft:yellow_stained_glass_pane": { - "protocol_id": 468 + "protocol_id": 472 }, "minecraft:yellow_terracotta": { - "protocol_id": 452 + "protocol_id": 456 }, "minecraft:yellow_wall_banner": { - "protocol_id": 547 + "protocol_id": 551 }, "minecraft:yellow_wool": { - "protocol_id": 141 + "protocol_id": 144 }, "minecraft:zombie_head": { - "protocol_id": 421 + "protocol_id": 425 }, "minecraft:zombie_wall_head": { - "protocol_id": 422 + "protocol_id": 426 } }, "protocol_id": 4 @@ -3602,6 +3629,12 @@ "minecraft:structure_block": { "protocol_id": 21 }, + "minecraft:test_block": { + "protocol_id": 45 + }, + "minecraft:test_instance_block": { + "protocol_id": 46 + }, "minecraft:trapped_chest": { "protocol_id": 2 }, @@ -3730,7 +3763,7 @@ "protocol_id": 0 }, "minecraft:bonemealable_feature_placer": { - "protocol_id": 81 + "protocol_id": 83 }, "minecraft:brewing_stand": { "protocol_id": 23 @@ -3744,698 +3777,690 @@ "minecraft:budding_amethyst": { "protocol_id": 26 }, - "minecraft:button": { + "minecraft:bush": { "protocol_id": 27 }, - "minecraft:cactus": { + "minecraft:button": { "protocol_id": 28 }, - "minecraft:cake": { + "minecraft:cactus": { "protocol_id": 29 }, - "minecraft:calibrated_sculk_sensor": { + "minecraft:cactus_flower": { "protocol_id": 30 }, - "minecraft:campfire": { + "minecraft:cake": { "protocol_id": 31 }, - "minecraft:candle": { - "protocol_id": 33 - }, - "minecraft:candle_cake": { + "minecraft:calibrated_sculk_sensor": { "protocol_id": 32 }, - "minecraft:carpet": { - "protocol_id": 34 + "minecraft:campfire": { + "protocol_id": 33 }, - "minecraft:carrot": { + "minecraft:candle": { "protocol_id": 35 }, - "minecraft:cartography_table": { + "minecraft:candle_cake": { + "protocol_id": 34 + }, + "minecraft:carpet": { "protocol_id": 36 }, - "minecraft:cauldron": { + "minecraft:carrot": { "protocol_id": 37 }, - "minecraft:cave_vines": { + "minecraft:cartography_table": { "protocol_id": 38 }, - "minecraft:cave_vines_plant": { + "minecraft:cauldron": { "protocol_id": 39 }, - "minecraft:ceiling_hanging_sign": { + "minecraft:cave_vines": { "protocol_id": 40 }, - "minecraft:chain": { + "minecraft:cave_vines_plant": { "protocol_id": 41 }, - "minecraft:chest": { + "minecraft:ceiling_hanging_sign": { "protocol_id": 42 }, - "minecraft:chiseled_book_shelf": { + "minecraft:chain": { "protocol_id": 43 }, - "minecraft:chorus_flower": { + "minecraft:chest": { "protocol_id": 44 }, - "minecraft:chorus_plant": { + "minecraft:chiseled_book_shelf": { "protocol_id": 45 }, - "minecraft:cocoa": { + "minecraft:chorus_flower": { "protocol_id": 46 }, - "minecraft:colored_falling": { + "minecraft:chorus_plant": { "protocol_id": 47 }, - "minecraft:command": { + "minecraft:cocoa": { "protocol_id": 48 }, - "minecraft:comparator": { + "minecraft:colored_falling": { "protocol_id": 49 }, - "minecraft:composter": { + "minecraft:command": { "protocol_id": 50 }, - "minecraft:concrete_powder": { + "minecraft:comparator": { "protocol_id": 51 }, - "minecraft:conduit": { + "minecraft:composter": { "protocol_id": 52 }, - "minecraft:copper_bulb_block": { + "minecraft:concrete_powder": { "protocol_id": 53 }, - "minecraft:coral": { + "minecraft:conduit": { "protocol_id": 54 }, - "minecraft:coral_fan": { + "minecraft:copper_bulb_block": { "protocol_id": 55 }, - "minecraft:coral_plant": { + "minecraft:coral": { "protocol_id": 56 }, - "minecraft:coral_wall_fan": { + "minecraft:coral_fan": { "protocol_id": 57 }, - "minecraft:crafter": { + "minecraft:coral_plant": { "protocol_id": 58 }, - "minecraft:crafting_table": { + "minecraft:coral_wall_fan": { "protocol_id": 59 }, - "minecraft:creaking_heart": { - "protocol_id": 189 - }, - "minecraft:crop": { + "minecraft:crafter": { "protocol_id": 60 }, - "minecraft:crying_obsidian": { + "minecraft:crafting_table": { "protocol_id": 61 }, - "minecraft:daylight_detector": { - "protocol_id": 62 - }, - "minecraft:dead_bush": { - "protocol_id": 63 - }, - "minecraft:decorated_pot": { - "protocol_id": 64 - }, - "minecraft:detector_rail": { - "protocol_id": 65 - }, - "minecraft:dirt_path": { - "protocol_id": 66 - }, - "minecraft:dispenser": { - "protocol_id": 67 - }, - "minecraft:door": { - "protocol_id": 68 - }, - "minecraft:double_plant": { - "protocol_id": 69 - }, - "minecraft:dragon_egg": { - "protocol_id": 70 - }, - "minecraft:drop_experience": { - "protocol_id": 71 - }, - "minecraft:dropper": { - "protocol_id": 72 - }, - "minecraft:enchantment_table": { - "protocol_id": 73 - }, - "minecraft:end_gateway": { - "protocol_id": 75 - }, - "minecraft:end_portal": { - "protocol_id": 76 - }, - "minecraft:end_portal_frame": { - "protocol_id": 77 - }, - "minecraft:end_rod": { - "protocol_id": 78 - }, - "minecraft:ender_chest": { - "protocol_id": 74 - }, - "minecraft:eyeblossom": { - "protocol_id": 79 - }, - "minecraft:farm": { - "protocol_id": 80 - }, - "minecraft:fence": { - "protocol_id": 82 - }, - "minecraft:fence_gate": { - "protocol_id": 83 - }, - "minecraft:fire": { - "protocol_id": 84 - }, - "minecraft:fletching_table": { - "protocol_id": 85 - }, - "minecraft:flower": { - "protocol_id": 86 - }, - "minecraft:flower_pot": { - "protocol_id": 87 - }, - "minecraft:frogspawn": { - "protocol_id": 88 - }, - "minecraft:frosted_ice": { - "protocol_id": 89 - }, - "minecraft:fungus": { - "protocol_id": 90 - }, - "minecraft:furnace": { - "protocol_id": 91 - }, - "minecraft:glazed_terracotta": { - "protocol_id": 92 - }, - "minecraft:glow_lichen": { - "protocol_id": 93 - }, - "minecraft:grass": { - "protocol_id": 94 - }, - "minecraft:grindstone": { - "protocol_id": 95 - }, - "minecraft:half_transparent": { - "protocol_id": 96 - }, - "minecraft:hanging_moss": { - "protocol_id": 97 - }, - "minecraft:hanging_roots": { - "protocol_id": 98 - }, - "minecraft:hay": { - "protocol_id": 99 - }, - "minecraft:heavy_core": { - "protocol_id": 100 - }, - "minecraft:honey": { - "protocol_id": 101 - }, - "minecraft:hopper": { - "protocol_id": 102 - }, - "minecraft:huge_mushroom": { - "protocol_id": 103 - }, - "minecraft:ice": { - "protocol_id": 104 - }, - "minecraft:infested": { - "protocol_id": 105 - }, - "minecraft:infested_rotated_pillar": { - "protocol_id": 106 - }, - "minecraft:iron_bars": { - "protocol_id": 107 - }, - "minecraft:jack_o_lantern": { - "protocol_id": 108 - }, - "minecraft:jigsaw": { - "protocol_id": 109 - }, - "minecraft:jukebox": { - "protocol_id": 110 - }, - "minecraft:kelp": { - "protocol_id": 111 - }, - "minecraft:kelp_plant": { - "protocol_id": 112 - }, - "minecraft:ladder": { - "protocol_id": 113 - }, - "minecraft:lantern": { - "protocol_id": 114 - }, - "minecraft:lava_cauldron": { - "protocol_id": 115 - }, - "minecraft:layered_cauldron": { - "protocol_id": 116 - }, - "minecraft:leaves": { - "protocol_id": 117 - }, - "minecraft:lectern": { - "protocol_id": 118 - }, - "minecraft:lever": { - "protocol_id": 119 - }, - "minecraft:light": { - "protocol_id": 120 - }, - "minecraft:lightning_rod": { - "protocol_id": 121 - }, - "minecraft:liquid": { - "protocol_id": 122 - }, - "minecraft:loom": { - "protocol_id": 123 - }, - "minecraft:magma": { - "protocol_id": 124 - }, - "minecraft:mangrove_leaves": { - "protocol_id": 125 - }, - "minecraft:mangrove_propagule": { - "protocol_id": 126 - }, - "minecraft:mangrove_roots": { - "protocol_id": 127 - }, - "minecraft:mossy_carpet": { - "protocol_id": 128 - }, - "minecraft:moving_piston": { - "protocol_id": 129 - }, - "minecraft:mud": { - "protocol_id": 130 - }, - "minecraft:multiface": { - "protocol_id": 131 - }, - "minecraft:mushroom": { - "protocol_id": 132 - }, - "minecraft:mycelium": { - "protocol_id": 133 - }, - "minecraft:nether_portal": { - "protocol_id": 134 - }, - "minecraft:nether_sprouts": { - "protocol_id": 136 - }, - "minecraft:nether_wart": { - "protocol_id": 137 - }, - "minecraft:netherrack": { - "protocol_id": 135 - }, - "minecraft:note": { - "protocol_id": 138 - }, - "minecraft:nylium": { - "protocol_id": 139 - }, - "minecraft:observer": { - "protocol_id": 140 - }, - "minecraft:particle_leaves": { - "protocol_id": 142 - }, - "minecraft:piglinwallskull": { - "protocol_id": 141 - }, - "minecraft:pink_petals": { - "protocol_id": 143 - }, - "minecraft:piston_base": { - "protocol_id": 144 - }, - "minecraft:piston_head": { - "protocol_id": 145 - }, - "minecraft:pitcher_crop": { - "protocol_id": 146 - }, - "minecraft:player_head": { - "protocol_id": 147 - }, - "minecraft:player_wall_head": { - "protocol_id": 148 - }, - "minecraft:pointed_dripstone": { - "protocol_id": 149 - }, - "minecraft:potato": { - "protocol_id": 150 - }, - "minecraft:powder_snow": { - "protocol_id": 151 - }, - "minecraft:powered": { - "protocol_id": 152 - }, - "minecraft:powered_rail": { - "protocol_id": 153 - }, - "minecraft:pressure_plate": { - "protocol_id": 154 - }, - "minecraft:pumpkin": { - "protocol_id": 155 - }, - "minecraft:rail": { - "protocol_id": 156 - }, - "minecraft:redstone_lamp": { - "protocol_id": 157 - }, - "minecraft:redstone_ore": { - "protocol_id": 158 - }, - "minecraft:redstone_torch": { - "protocol_id": 159 - }, - "minecraft:redstone_wall_torch": { - "protocol_id": 160 - }, - "minecraft:redstone_wire": { - "protocol_id": 161 - }, - "minecraft:repeater": { - "protocol_id": 162 - }, - "minecraft:respawn_anchor": { - "protocol_id": 163 - }, - "minecraft:rooted_dirt": { - "protocol_id": 164 - }, - "minecraft:roots": { - "protocol_id": 165 - }, - "minecraft:rotated_pillar": { - "protocol_id": 166 - }, - "minecraft:sapling": { - "protocol_id": 167 - }, - "minecraft:scaffolding": { - "protocol_id": 168 - }, - "minecraft:sculk": { - "protocol_id": 170 - }, - "minecraft:sculk_catalyst": { - "protocol_id": 169 - }, - "minecraft:sculk_sensor": { - "protocol_id": 171 - }, - "minecraft:sculk_shrieker": { - "protocol_id": 172 - }, - "minecraft:sculk_vein": { - "protocol_id": 173 - }, - "minecraft:sea_pickle": { - "protocol_id": 175 - }, - "minecraft:seagrass": { - "protocol_id": 174 - }, - "minecraft:shulker_box": { - "protocol_id": 176 - }, - "minecraft:skull": { - "protocol_id": 177 - }, - "minecraft:slab": { - "protocol_id": 178 - }, - "minecraft:slime": { - "protocol_id": 179 - }, - "minecraft:small_dripleaf": { - "protocol_id": 180 - }, - "minecraft:smithing_table": { - "protocol_id": 181 - }, - "minecraft:smoker": { - "protocol_id": 182 - }, - "minecraft:sniffer_egg": { - "protocol_id": 183 - }, - "minecraft:snow_layer": { - "protocol_id": 184 - }, - "minecraft:snowy_dirt": { - "protocol_id": 185 - }, - "minecraft:soul_fire": { - "protocol_id": 186 - }, - "minecraft:soul_sand": { - "protocol_id": 187 - }, - "minecraft:spawner": { - "protocol_id": 188 - }, - "minecraft:sponge": { - "protocol_id": 190 - }, - "minecraft:spore_blossom": { - "protocol_id": 191 - }, - "minecraft:stained_glass": { + "minecraft:creaking_heart": { "protocol_id": 193 }, - "minecraft:stained_glass_pane": { + "minecraft:crop": { + "protocol_id": 62 + }, + "minecraft:crying_obsidian": { + "protocol_id": 63 + }, + "minecraft:daylight_detector": { + "protocol_id": 64 + }, + "minecraft:decorated_pot": { + "protocol_id": 66 + }, + "minecraft:detector_rail": { + "protocol_id": 67 + }, + "minecraft:dirt_path": { + "protocol_id": 68 + }, + "minecraft:dispenser": { + "protocol_id": 69 + }, + "minecraft:door": { + "protocol_id": 70 + }, + "minecraft:double_plant": { + "protocol_id": 71 + }, + "minecraft:dragon_egg": { + "protocol_id": 72 + }, + "minecraft:drop_experience": { + "protocol_id": 73 + }, + "minecraft:dropper": { + "protocol_id": 74 + }, + "minecraft:dry_vegetation": { + "protocol_id": 65 + }, + "minecraft:enchantment_table": { + "protocol_id": 75 + }, + "minecraft:end_gateway": { + "protocol_id": 77 + }, + "minecraft:end_portal": { + "protocol_id": 78 + }, + "minecraft:end_portal_frame": { + "protocol_id": 79 + }, + "minecraft:end_rod": { + "protocol_id": 80 + }, + "minecraft:ender_chest": { + "protocol_id": 76 + }, + "minecraft:eyeblossom": { + "protocol_id": 81 + }, + "minecraft:farm": { + "protocol_id": 82 + }, + "minecraft:fence": { + "protocol_id": 84 + }, + "minecraft:fence_gate": { + "protocol_id": 85 + }, + "minecraft:fire": { + "protocol_id": 86 + }, + "minecraft:firefly_bush": { + "protocol_id": 87 + }, + "minecraft:fletching_table": { + "protocol_id": 88 + }, + "minecraft:flower": { + "protocol_id": 89 + }, + "minecraft:flower_bed": { + "protocol_id": 145 + }, + "minecraft:flower_pot": { + "protocol_id": 90 + }, + "minecraft:frogspawn": { + "protocol_id": 91 + }, + "minecraft:frosted_ice": { + "protocol_id": 92 + }, + "minecraft:fungus": { + "protocol_id": 93 + }, + "minecraft:furnace": { + "protocol_id": 94 + }, + "minecraft:glazed_terracotta": { + "protocol_id": 95 + }, + "minecraft:glow_lichen": { + "protocol_id": 96 + }, + "minecraft:grass": { + "protocol_id": 97 + }, + "minecraft:grindstone": { + "protocol_id": 98 + }, + "minecraft:half_transparent": { + "protocol_id": 99 + }, + "minecraft:hanging_moss": { + "protocol_id": 100 + }, + "minecraft:hanging_roots": { + "protocol_id": 101 + }, + "minecraft:hay": { + "protocol_id": 102 + }, + "minecraft:heavy_core": { + "protocol_id": 103 + }, + "minecraft:honey": { + "protocol_id": 104 + }, + "minecraft:hopper": { + "protocol_id": 105 + }, + "minecraft:huge_mushroom": { + "protocol_id": 106 + }, + "minecraft:ice": { + "protocol_id": 107 + }, + "minecraft:infested": { + "protocol_id": 108 + }, + "minecraft:infested_rotated_pillar": { + "protocol_id": 109 + }, + "minecraft:iron_bars": { + "protocol_id": 110 + }, + "minecraft:jack_o_lantern": { + "protocol_id": 111 + }, + "minecraft:jigsaw": { + "protocol_id": 112 + }, + "minecraft:jukebox": { + "protocol_id": 113 + }, + "minecraft:kelp": { + "protocol_id": 114 + }, + "minecraft:kelp_plant": { + "protocol_id": 115 + }, + "minecraft:ladder": { + "protocol_id": 116 + }, + "minecraft:lantern": { + "protocol_id": 117 + }, + "minecraft:lava_cauldron": { + "protocol_id": 118 + }, + "minecraft:layered_cauldron": { + "protocol_id": 119 + }, + "minecraft:leaf_litter": { + "protocol_id": 120 + }, + "minecraft:lectern": { + "protocol_id": 121 + }, + "minecraft:lever": { + "protocol_id": 122 + }, + "minecraft:light": { + "protocol_id": 123 + }, + "minecraft:lightning_rod": { + "protocol_id": 124 + }, + "minecraft:liquid": { + "protocol_id": 125 + }, + "minecraft:loom": { + "protocol_id": 126 + }, + "minecraft:magma": { + "protocol_id": 127 + }, + "minecraft:mangrove_leaves": { + "protocol_id": 128 + }, + "minecraft:mangrove_propagule": { + "protocol_id": 129 + }, + "minecraft:mangrove_roots": { + "protocol_id": 130 + }, + "minecraft:mossy_carpet": { + "protocol_id": 131 + }, + "minecraft:moving_piston": { + "protocol_id": 132 + }, + "minecraft:mud": { + "protocol_id": 133 + }, + "minecraft:multiface": { + "protocol_id": 134 + }, + "minecraft:mushroom": { + "protocol_id": 135 + }, + "minecraft:mycelium": { + "protocol_id": 136 + }, + "minecraft:nether_portal": { + "protocol_id": 137 + }, + "minecraft:nether_sprouts": { + "protocol_id": 139 + }, + "minecraft:nether_wart": { + "protocol_id": 140 + }, + "minecraft:netherrack": { + "protocol_id": 138 + }, + "minecraft:note": { + "protocol_id": 141 + }, + "minecraft:nylium": { + "protocol_id": 142 + }, + "minecraft:observer": { + "protocol_id": 143 + }, + "minecraft:piglinwallskull": { + "protocol_id": 144 + }, + "minecraft:piston_base": { + "protocol_id": 146 + }, + "minecraft:piston_head": { + "protocol_id": 147 + }, + "minecraft:pitcher_crop": { + "protocol_id": 148 + }, + "minecraft:player_head": { + "protocol_id": 149 + }, + "minecraft:player_wall_head": { + "protocol_id": 150 + }, + "minecraft:pointed_dripstone": { + "protocol_id": 151 + }, + "minecraft:potato": { + "protocol_id": 152 + }, + "minecraft:powder_snow": { + "protocol_id": 153 + }, + "minecraft:powered": { + "protocol_id": 154 + }, + "minecraft:powered_rail": { + "protocol_id": 155 + }, + "minecraft:pressure_plate": { + "protocol_id": 156 + }, + "minecraft:pumpkin": { + "protocol_id": 157 + }, + "minecraft:rail": { + "protocol_id": 158 + }, + "minecraft:redstone_lamp": { + "protocol_id": 159 + }, + "minecraft:redstone_ore": { + "protocol_id": 160 + }, + "minecraft:redstone_torch": { + "protocol_id": 161 + }, + "minecraft:redstone_wall_torch": { + "protocol_id": 162 + }, + "minecraft:redstone_wire": { + "protocol_id": 163 + }, + "minecraft:repeater": { + "protocol_id": 164 + }, + "minecraft:respawn_anchor": { + "protocol_id": 165 + }, + "minecraft:rooted_dirt": { + "protocol_id": 166 + }, + "minecraft:roots": { + "protocol_id": 167 + }, + "minecraft:rotated_pillar": { + "protocol_id": 168 + }, + "minecraft:sand": { + "protocol_id": 170 + }, + "minecraft:sapling": { + "protocol_id": 169 + }, + "minecraft:scaffolding": { + "protocol_id": 171 + }, + "minecraft:sculk": { + "protocol_id": 173 + }, + "minecraft:sculk_catalyst": { + "protocol_id": 172 + }, + "minecraft:sculk_sensor": { + "protocol_id": 174 + }, + "minecraft:sculk_shrieker": { + "protocol_id": 175 + }, + "minecraft:sculk_vein": { + "protocol_id": 176 + }, + "minecraft:sea_pickle": { + "protocol_id": 178 + }, + "minecraft:seagrass": { + "protocol_id": 177 + }, + "minecraft:short_dry_grass": { + "protocol_id": 179 + }, + "minecraft:shulker_box": { + "protocol_id": 180 + }, + "minecraft:skull": { + "protocol_id": 181 + }, + "minecraft:slab": { + "protocol_id": 182 + }, + "minecraft:slime": { + "protocol_id": 183 + }, + "minecraft:small_dripleaf": { + "protocol_id": 184 + }, + "minecraft:smithing_table": { + "protocol_id": 185 + }, + "minecraft:smoker": { + "protocol_id": 186 + }, + "minecraft:sniffer_egg": { + "protocol_id": 187 + }, + "minecraft:snow_layer": { + "protocol_id": 188 + }, + "minecraft:snowy_dirt": { + "protocol_id": 189 + }, + "minecraft:soul_fire": { + "protocol_id": 190 + }, + "minecraft:soul_sand": { + "protocol_id": 191 + }, + "minecraft:spawner": { "protocol_id": 192 }, - "minecraft:stair": { + "minecraft:sponge": { "protocol_id": 194 }, - "minecraft:standing_sign": { + "minecraft:spore_blossom": { "protocol_id": 195 }, - "minecraft:stem": { - "protocol_id": 196 - }, - "minecraft:stonecutter": { + "minecraft:stained_glass": { "protocol_id": 197 }, - "minecraft:structure": { + "minecraft:stained_glass_pane": { + "protocol_id": 196 + }, + "minecraft:stair": { "protocol_id": 198 }, - "minecraft:structure_void": { + "minecraft:standing_sign": { "protocol_id": 199 }, - "minecraft:sugar_cane": { + "minecraft:stem": { "protocol_id": 200 }, - "minecraft:sweet_berry_bush": { + "minecraft:stonecutter": { "protocol_id": 201 }, - "minecraft:tall_flower": { + "minecraft:structure": { "protocol_id": 202 }, - "minecraft:tall_grass": { + "minecraft:structure_void": { "protocol_id": 203 }, - "minecraft:tall_seagrass": { + "minecraft:sugar_cane": { "protocol_id": 204 }, - "minecraft:target": { + "minecraft:sweet_berry_bush": { "protocol_id": 205 }, - "minecraft:tinted_glass": { + "minecraft:tall_dry_grass": { "protocol_id": 206 }, - "minecraft:tnt": { + "minecraft:tall_flower": { "protocol_id": 207 }, - "minecraft:torch": { - "protocol_id": 209 - }, - "minecraft:torchflower_crop": { + "minecraft:tall_grass": { "protocol_id": 208 }, - "minecraft:transparent": { + "minecraft:tall_seagrass": { + "protocol_id": 209 + }, + "minecraft:target": { "protocol_id": 210 }, - "minecraft:trapdoor": { + "minecraft:terracotta": { "protocol_id": 211 }, - "minecraft:trapped_chest": { + "minecraft:test": { "protocol_id": 212 }, - "minecraft:trial_spawner": { + "minecraft:test_instance": { "protocol_id": 213 }, - "minecraft:trip_wire_hook": { + "minecraft:tinted_glass": { "protocol_id": 214 }, - "minecraft:tripwire": { + "minecraft:tinted_particle_leaves": { "protocol_id": 215 }, - "minecraft:turtle_egg": { + "minecraft:tnt": { "protocol_id": 216 }, - "minecraft:twisting_vines": { + "minecraft:torch": { "protocol_id": 218 }, - "minecraft:twisting_vines_plant": { + "minecraft:torchflower_crop": { "protocol_id": 217 }, - "minecraft:vault": { + "minecraft:transparent": { "protocol_id": 219 }, - "minecraft:vine": { + "minecraft:trapdoor": { "protocol_id": 220 }, - "minecraft:wall": { - "protocol_id": 226 - }, - "minecraft:wall_banner": { + "minecraft:trapped_chest": { "protocol_id": 221 }, - "minecraft:wall_hanging_sign": { + "minecraft:trial_spawner": { "protocol_id": 222 }, - "minecraft:wall_sign": { + "minecraft:trip_wire_hook": { "protocol_id": 223 }, - "minecraft:wall_skull": { + "minecraft:tripwire": { "protocol_id": 224 }, - "minecraft:wall_torch": { + "minecraft:turtle_egg": { "protocol_id": 225 }, - "minecraft:waterlily": { + "minecraft:twisting_vines": { "protocol_id": 227 }, - "minecraft:waterlogged_transparent": { + "minecraft:twisting_vines_plant": { + "protocol_id": 226 + }, + "minecraft:untinted_particle_leaves": { "protocol_id": 228 }, - "minecraft:weathering_copper_bulb": { + "minecraft:vault": { "protocol_id": 229 }, - "minecraft:weathering_copper_door": { + "minecraft:vine": { "protocol_id": 230 }, - "minecraft:weathering_copper_full": { - "protocol_id": 231 - }, - "minecraft:weathering_copper_grate": { - "protocol_id": 232 - }, - "minecraft:weathering_copper_slab": { - "protocol_id": 233 - }, - "minecraft:weathering_copper_stair": { - "protocol_id": 234 - }, - "minecraft:weathering_copper_trap_door": { - "protocol_id": 235 - }, - "minecraft:web": { + "minecraft:wall": { "protocol_id": 236 }, - "minecraft:weeping_vines": { - "protocol_id": 238 + "minecraft:wall_banner": { + "protocol_id": 231 }, - "minecraft:weeping_vines_plant": { + "minecraft:wall_hanging_sign": { + "protocol_id": 232 + }, + "minecraft:wall_sign": { + "protocol_id": 233 + }, + "minecraft:wall_skull": { + "protocol_id": 234 + }, + "minecraft:wall_torch": { + "protocol_id": 235 + }, + "minecraft:waterlily": { "protocol_id": 237 }, - "minecraft:weighted_pressure_plate": { + "minecraft:waterlogged_transparent": { + "protocol_id": 238 + }, + "minecraft:weathering_copper_bulb": { "protocol_id": 239 }, - "minecraft:wet_sponge": { + "minecraft:weathering_copper_door": { "protocol_id": 240 }, - "minecraft:wither_rose": { + "minecraft:weathering_copper_full": { "protocol_id": 241 }, - "minecraft:wither_skull": { + "minecraft:weathering_copper_grate": { "protocol_id": 242 }, - "minecraft:wither_wall_skull": { + "minecraft:weathering_copper_slab": { "protocol_id": 243 }, - "minecraft:wool_carpet": { + "minecraft:weathering_copper_stair": { "protocol_id": 244 + }, + "minecraft:weathering_copper_trap_door": { + "protocol_id": 245 + }, + "minecraft:web": { + "protocol_id": 246 + }, + "minecraft:weeping_vines": { + "protocol_id": 248 + }, + "minecraft:weeping_vines_plant": { + "protocol_id": 247 + }, + "minecraft:weighted_pressure_plate": { + "protocol_id": 249 + }, + "minecraft:wet_sponge": { + "protocol_id": 250 + }, + "minecraft:wither_rose": { + "protocol_id": 251 + }, + "minecraft:wither_skull": { + "protocol_id": 252 + }, + "minecraft:wither_wall_skull": { + "protocol_id": 253 + }, + "minecraft:wool_carpet": { + "protocol_id": 254 } }, "protocol_id": 56 }, - "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": 60 - }, "minecraft:chunk_status": { "default": "minecraft:empty", "entries": { @@ -4541,7 +4566,7 @@ "protocol_id": 41 }, "minecraft:heightmap": { - "protocol_id": 49 + "protocol_id": 50 }, "minecraft:int_range": { "protocol_id": 38 @@ -4559,13 +4584,13 @@ "protocol_id": 14 }, "minecraft:loot_modifier": { - "protocol_id": 52 + "protocol_id": 53 }, "minecraft:loot_predicate": { - "protocol_id": 51 + "protocol_id": 52 }, "minecraft:loot_table": { - "protocol_id": 50 + "protocol_id": 51 }, "minecraft:message": { "protocol_id": 19 @@ -4606,6 +4631,9 @@ "minecraft:resource_or_tag_key": { "protocol_id": 44 }, + "minecraft:resource_selector": { + "protocol_id": 47 + }, "minecraft:rotation": { "protocol_id": 28 }, @@ -4625,16 +4653,16 @@ "protocol_id": 32 }, "minecraft:template_mirror": { - "protocol_id": 47 + "protocol_id": 48 }, "minecraft:template_rotation": { - "protocol_id": 48 + "protocol_id": 49 }, "minecraft:time": { "protocol_id": 42 }, "minecraft:uuid": { - "protocol_id": 53 + "protocol_id": 54 }, "minecraft:vec2": { "protocol_id": 11 @@ -4663,7 +4691,7 @@ "protocol_id": 3 } }, - "protocol_id": 76 + "protocol_id": 74 }, "minecraft:creative_mode_tab": { "entries": { @@ -4710,7 +4738,7 @@ "protocol_id": 7 } }, - "protocol_id": 63 + "protocol_id": 61 }, "minecraft:custom_stat": { "entries": { @@ -4942,31 +4970,87 @@ }, "protocol_id": 10 }, + "minecraft:data_component_predicate_type": { + "entries": { + "minecraft:attribute_modifiers": { + "protocol_id": 11 + }, + "minecraft:bundle_contents": { + "protocol_id": 6 + }, + "minecraft:container": { + "protocol_id": 5 + }, + "minecraft:custom_data": { + "protocol_id": 4 + }, + "minecraft:damage": { + "protocol_id": 0 + }, + "minecraft:enchantments": { + "protocol_id": 1 + }, + "minecraft:firework_explosion": { + "protocol_id": 7 + }, + "minecraft:fireworks": { + "protocol_id": 8 + }, + "minecraft:jukebox_playable": { + "protocol_id": 13 + }, + "minecraft:potion_contents": { + "protocol_id": 3 + }, + "minecraft:stored_enchantments": { + "protocol_id": 2 + }, + "minecraft:trim": { + "protocol_id": 12 + }, + "minecraft:writable_book_content": { + "protocol_id": 9 + }, + "minecraft:written_book_content": { + "protocol_id": 10 + } + }, + "protocol_id": 66 + }, "minecraft:data_component_type": { "entries": { "minecraft:attribute_modifiers": { "protocol_id": 13 }, + "minecraft:axolotl/variant": { + "protocol_id": 91 + }, "minecraft:banner_patterns": { - "protocol_id": 59 - }, - "minecraft:base_color": { - "protocol_id": 60 - }, - "minecraft:bees": { - "protocol_id": 64 - }, - "minecraft:block_entity_data": { - "protocol_id": 49 - }, - "minecraft:block_state": { "protocol_id": 63 }, + "minecraft:base_color": { + "protocol_id": 64 + }, + "minecraft:bees": { + "protocol_id": 68 + }, + "minecraft:block_entity_data": { + "protocol_id": 51 + }, + "minecraft:block_state": { + "protocol_id": 67 + }, + "minecraft:blocks_attacks": { + "protocol_id": 33 + }, + "minecraft:break_sound": { + "protocol_id": 71 + }, "minecraft:bucket_entity_data": { - "protocol_id": 48 + "protocol_id": 50 }, "minecraft:bundle_contents": { - "protocol_id": 40 + "protocol_id": 41 }, "minecraft:can_break": { "protocol_id": 12 @@ -4974,20 +5058,32 @@ "minecraft:can_place_on": { "protocol_id": 11 }, + "minecraft:cat/collar": { + "protocol_id": 93 + }, + "minecraft:cat/variant": { + "protocol_id": 92 + }, "minecraft:charged_projectiles": { - "protocol_id": 39 + "protocol_id": 40 + }, + "minecraft:chicken/variant": { + "protocol_id": 86 }, "minecraft:consumable": { - "protocol_id": 22 + "protocol_id": 21 }, "minecraft:container": { - "protocol_id": 62 - }, - "minecraft:container_loot": { "protocol_id": 66 }, + "minecraft:container_loot": { + "protocol_id": 70 + }, + "minecraft:cow/variant": { + "protocol_id": 85 + }, "minecraft:creative_slot_lock": { - "protocol_id": 18 + "protocol_id": 17 }, "minecraft:custom_data": { "protocol_id": 0 @@ -5002,55 +5098,58 @@ "protocol_id": 3 }, "minecraft:damage_resistant": { - "protocol_id": 25 + "protocol_id": 24 }, "minecraft:death_protection": { "protocol_id": 32 }, "minecraft:debug_stick_state": { - "protocol_id": 46 + "protocol_id": 48 }, "minecraft:dyed_color": { - "protocol_id": 34 + "protocol_id": 35 }, "minecraft:enchantable": { "protocol_id": 27 }, "minecraft:enchantment_glint_override": { - "protocol_id": 19 + "protocol_id": 18 }, "minecraft:enchantments": { "protocol_id": 10 }, "minecraft:entity_data": { - "protocol_id": 47 + "protocol_id": 49 }, "minecraft:equippable": { "protocol_id": 28 }, "minecraft:firework_explosion": { - "protocol_id": 55 + "protocol_id": 59 }, "minecraft:fireworks": { - "protocol_id": 56 + "protocol_id": 60 }, "minecraft:food": { - "protocol_id": 21 + "protocol_id": 20 + }, + "minecraft:fox/variant": { + "protocol_id": 76 + }, + "minecraft:frog/variant": { + "protocol_id": 87 }, "minecraft:glider": { "protocol_id": 30 }, - "minecraft:hide_additional_tooltip": { - "protocol_id": 15 - }, - "minecraft:hide_tooltip": { - "protocol_id": 16 + "minecraft:horse/variant": { + "protocol_id": 88 }, "minecraft:instrument": { - "protocol_id": 50 + "protocol_id": 52 }, "minecraft:intangible_projectile": { - "protocol_id": 20 + "protocol_id": 19 }, "minecraft:item_model": { "protocol_id": 7 @@ -5059,94 +5158,157 @@ "protocol_id": 6 }, "minecraft:jukebox_playable": { - "protocol_id": 52 + "protocol_id": 55 + }, + "minecraft:llama/variant": { + "protocol_id": 90 }, "minecraft:lock": { - "protocol_id": 65 + "protocol_id": 69 }, "minecraft:lodestone_tracker": { - "protocol_id": 54 + "protocol_id": 58 }, "minecraft:lore": { "protocol_id": 8 }, "minecraft:map_color": { - "protocol_id": 35 - }, - "minecraft:map_decorations": { - "protocol_id": 37 - }, - "minecraft:map_id": { "protocol_id": 36 }, - "minecraft:map_post_processing": { + "minecraft:map_decorations": { "protocol_id": 38 }, + "minecraft:map_id": { + "protocol_id": 37 + }, + "minecraft:map_post_processing": { + "protocol_id": 39 + }, "minecraft:max_damage": { "protocol_id": 2 }, "minecraft:max_stack_size": { "protocol_id": 1 }, + "minecraft:mooshroom/variant": { + "protocol_id": 82 + }, "minecraft:note_block_sound": { - "protocol_id": 58 + "protocol_id": 62 }, "minecraft:ominous_bottle_amplifier": { - "protocol_id": 51 + "protocol_id": 54 + }, + "minecraft:painting/variant": { + "protocol_id": 89 + }, + "minecraft:parrot/variant": { + "protocol_id": 78 + }, + "minecraft:pig/variant": { + "protocol_id": 84 }, "minecraft:pot_decorations": { - "protocol_id": 61 + "protocol_id": 65 }, "minecraft:potion_contents": { - "protocol_id": 41 + "protocol_id": 42 + }, + "minecraft:potion_duration_scale": { + "protocol_id": 43 }, "minecraft:profile": { - "protocol_id": 57 + "protocol_id": 61 + }, + "minecraft:provides_banner_patterns": { + "protocol_id": 56 + }, + "minecraft:provides_trim_material": { + "protocol_id": 53 + }, + "minecraft:rabbit/variant": { + "protocol_id": 83 }, "minecraft:rarity": { "protocol_id": 9 }, "minecraft:recipes": { - "protocol_id": 53 + "protocol_id": 57 }, "minecraft:repair_cost": { - "protocol_id": 17 + "protocol_id": 16 }, "minecraft:repairable": { "protocol_id": 29 }, + "minecraft:salmon/size": { + "protocol_id": 77 + }, + "minecraft:sheep/color": { + "protocol_id": 94 + }, + "minecraft:shulker/color": { + "protocol_id": 95 + }, "minecraft:stored_enchantments": { - "protocol_id": 33 + "protocol_id": 34 }, "minecraft:suspicious_stew_effects": { - "protocol_id": 42 + "protocol_id": 44 }, "minecraft:tool": { - "protocol_id": 26 + "protocol_id": 25 + }, + "minecraft:tooltip_display": { + "protocol_id": 15 }, "minecraft:tooltip_style": { "protocol_id": 31 }, "minecraft:trim": { - "protocol_id": 45 + "protocol_id": 47 + }, + "minecraft:tropical_fish/base_color": { + "protocol_id": 80 + }, + "minecraft:tropical_fish/pattern": { + "protocol_id": 79 + }, + "minecraft:tropical_fish/pattern_color": { + "protocol_id": 81 }, "minecraft:unbreakable": { "protocol_id": 4 }, "minecraft:use_cooldown": { - "protocol_id": 24 - }, - "minecraft:use_remainder": { "protocol_id": 23 }, + "minecraft:use_remainder": { + "protocol_id": 22 + }, + "minecraft:villager/variant": { + "protocol_id": 72 + }, + "minecraft:weapon": { + "protocol_id": 26 + }, + "minecraft:wolf/collar": { + "protocol_id": 75 + }, + "minecraft:wolf/sound_variant": { + "protocol_id": 74 + }, + "minecraft:wolf/variant": { + "protocol_id": 73 + }, "minecraft:writable_book_content": { - "protocol_id": 43 + "protocol_id": 45 }, "minecraft:written_book_content": { - "protocol_id": 44 + "protocol_id": 46 } }, - "protocol_id": 66 + "protocol_id": 64 }, "minecraft:decorated_pot_pattern": { "entries": { @@ -5223,7 +5385,7 @@ "protocol_id": 22 } }, - "protocol_id": 62 + "protocol_id": 60 }, "minecraft:enchantment_effect_component_type": { "entries": { @@ -5318,7 +5480,7 @@ "protocol_id": 29 } }, - "protocol_id": 70 + "protocol_id": 68 }, "minecraft:enchantment_entity_effect_type": { "entries": { @@ -5362,7 +5524,7 @@ "protocol_id": 12 } }, - "protocol_id": 72 + "protocol_id": 70 }, "minecraft:enchantment_level_based_value_type": { "entries": { @@ -5382,7 +5544,7 @@ "protocol_id": 4 } }, - "protocol_id": 71 + "protocol_id": 69 }, "minecraft:enchantment_location_based_effect_type": { "entries": { @@ -5429,7 +5591,7 @@ "protocol_id": 13 } }, - "protocol_id": 73 + "protocol_id": 71 }, "minecraft:enchantment_provider_type": { "entries": { @@ -5443,7 +5605,7 @@ "protocol_id": 2 } }, - "protocol_id": 75 + "protocol_id": 73 }, "minecraft:enchantment_value_effect_type": { "entries": { @@ -5463,72 +5625,30 @@ "protocol_id": 4 } }, - "protocol_id": 74 + "protocol_id": 72 }, "minecraft:entity_sub_predicate_type": { "entries": { - "minecraft:axolotl": { - "protocol_id": 6 - }, - "minecraft:cat": { - "protocol_id": 17 - }, "minecraft:fishing_hook": { "protocol_id": 1 }, - "minecraft:fox": { - "protocol_id": 7 - }, - "minecraft:frog": { - "protocol_id": 18 - }, - "minecraft:horse": { - "protocol_id": 10 - }, "minecraft:lightning": { "protocol_id": 0 }, - "minecraft:llama": { - "protocol_id": 11 - }, - "minecraft:mooshroom": { - "protocol_id": 8 - }, - "minecraft:painting": { - "protocol_id": 16 - }, - "minecraft:parrot": { - "protocol_id": 13 - }, "minecraft:player": { "protocol_id": 2 }, - "minecraft:rabbit": { - "protocol_id": 9 - }, "minecraft:raider": { "protocol_id": 4 }, - "minecraft:salmon": { - "protocol_id": 14 - }, "minecraft:sheep": { "protocol_id": 5 }, "minecraft:slime": { "protocol_id": 3 - }, - "minecraft:tropical_fish": { - "protocol_id": 15 - }, - "minecraft:villager": { - "protocol_id": 12 - }, - "minecraft:wolf": { - "protocol_id": 19 } }, - "protocol_id": 67 + "protocol_id": 65 }, "minecraft:entity_type": { "default": "minecraft:pig", @@ -5690,7 +5810,7 @@ "protocol_id": 51 }, "minecraft:fishing_bobber": { - "protocol_id": 148 + "protocol_id": 149 }, "minecraft:fox": { "protocol_id": 52 @@ -5761,6 +5881,9 @@ "minecraft:lightning_bolt": { "protocol_id": 74 }, + "minecraft:lingering_potion": { + "protocol_id": 100 + }, "minecraft:llama": { "protocol_id": 75 }, @@ -5831,154 +5954,154 @@ "protocol_id": 97 }, "minecraft:player": { - "protocol_id": 147 + "protocol_id": 148 }, "minecraft:polar_bear": { "protocol_id": 98 }, - "minecraft:potion": { - "protocol_id": 99 - }, "minecraft:pufferfish": { - "protocol_id": 100 - }, - "minecraft:rabbit": { "protocol_id": 101 }, - "minecraft:ravager": { + "minecraft:rabbit": { "protocol_id": 102 }, - "minecraft:salmon": { + "minecraft:ravager": { "protocol_id": 103 }, - "minecraft:sheep": { + "minecraft:salmon": { "protocol_id": 104 }, - "minecraft:shulker": { + "minecraft:sheep": { "protocol_id": 105 }, - "minecraft:shulker_bullet": { + "minecraft:shulker": { "protocol_id": 106 }, - "minecraft:silverfish": { + "minecraft:shulker_bullet": { "protocol_id": 107 }, - "minecraft:skeleton": { + "minecraft:silverfish": { "protocol_id": 108 }, - "minecraft:skeleton_horse": { + "minecraft:skeleton": { "protocol_id": 109 }, - "minecraft:slime": { + "minecraft:skeleton_horse": { "protocol_id": 110 }, - "minecraft:small_fireball": { + "minecraft:slime": { "protocol_id": 111 }, - "minecraft:sniffer": { + "minecraft:small_fireball": { "protocol_id": 112 }, - "minecraft:snow_golem": { - "protocol_id": 114 - }, - "minecraft:snowball": { + "minecraft:sniffer": { "protocol_id": 113 }, - "minecraft:spawner_minecart": { + "minecraft:snow_golem": { "protocol_id": 115 }, - "minecraft:spectral_arrow": { + "minecraft:snowball": { + "protocol_id": 114 + }, + "minecraft:spawner_minecart": { "protocol_id": 116 }, - "minecraft:spider": { + "minecraft:spectral_arrow": { "protocol_id": 117 }, - "minecraft:spruce_boat": { + "minecraft:spider": { "protocol_id": 118 }, - "minecraft:spruce_chest_boat": { + "minecraft:splash_potion": { + "protocol_id": 99 + }, + "minecraft:spruce_boat": { "protocol_id": 119 }, - "minecraft:squid": { + "minecraft:spruce_chest_boat": { "protocol_id": 120 }, - "minecraft:stray": { + "minecraft:squid": { "protocol_id": 121 }, - "minecraft:strider": { + "minecraft:stray": { "protocol_id": 122 }, - "minecraft:tadpole": { + "minecraft:strider": { "protocol_id": 123 }, - "minecraft:text_display": { + "minecraft:tadpole": { "protocol_id": 124 }, - "minecraft:tnt": { + "minecraft:text_display": { "protocol_id": 125 }, - "minecraft:tnt_minecart": { + "minecraft:tnt": { "protocol_id": 126 }, - "minecraft:trader_llama": { + "minecraft:tnt_minecart": { "protocol_id": 127 }, - "minecraft:trident": { + "minecraft:trader_llama": { "protocol_id": 128 }, - "minecraft:tropical_fish": { + "minecraft:trident": { "protocol_id": 129 }, - "minecraft:turtle": { + "minecraft:tropical_fish": { "protocol_id": 130 }, - "minecraft:vex": { + "minecraft:turtle": { "protocol_id": 131 }, - "minecraft:villager": { + "minecraft:vex": { "protocol_id": 132 }, - "minecraft:vindicator": { + "minecraft:villager": { "protocol_id": 133 }, - "minecraft:wandering_trader": { + "minecraft:vindicator": { "protocol_id": 134 }, - "minecraft:warden": { + "minecraft:wandering_trader": { "protocol_id": 135 }, - "minecraft:wind_charge": { + "minecraft:warden": { "protocol_id": 136 }, - "minecraft:witch": { + "minecraft:wind_charge": { "protocol_id": 137 }, - "minecraft:wither": { + "minecraft:witch": { "protocol_id": 138 }, - "minecraft:wither_skeleton": { + "minecraft:wither": { "protocol_id": 139 }, - "minecraft:wither_skull": { + "minecraft:wither_skeleton": { "protocol_id": 140 }, - "minecraft:wolf": { + "minecraft:wither_skull": { "protocol_id": 141 }, - "minecraft:zoglin": { + "minecraft:wolf": { "protocol_id": 142 }, - "minecraft:zombie": { + "minecraft:zoglin": { "protocol_id": 143 }, - "minecraft:zombie_horse": { + "minecraft:zombie": { "protocol_id": 144 }, - "minecraft:zombie_villager": { + "minecraft:zombie_horse": { "protocol_id": 145 }, - "minecraft:zombified_piglin": { + "minecraft:zombie_villager": { "protocol_id": 146 + }, + "minecraft:zombified_piglin": { + "protocol_id": 147 } }, "protocol_id": 5 @@ -6021,20 +6144,6 @@ }, "protocol_id": 2 }, - "minecraft:frog_variant": { - "entries": { - "minecraft:cold": { - "protocol_id": 2 - }, - "minecraft:temperate": { - "protocol_id": 0 - }, - "minecraft:warm": { - "protocol_id": 1 - } - }, - "protocol_id": 61 - }, "minecraft:game_event": { "default": "minecraft:step", "entries": { @@ -6271,25 +6380,25 @@ "default": "minecraft:air", "entries": { "minecraft:acacia_boat": { - "protocol_id": 811 + "protocol_id": 818 }, "minecraft:acacia_button": { - "protocol_id": 711 + "protocol_id": 718 }, "minecraft:acacia_chest_boat": { - "protocol_id": 812 + "protocol_id": 819 }, "minecraft:acacia_door": { - "protocol_id": 740 + "protocol_id": 747 }, "minecraft:acacia_fence": { - "protocol_id": 329 + "protocol_id": 336 }, "minecraft:acacia_fence_gate": { - "protocol_id": 781 + "protocol_id": 788 }, "minecraft:acacia_hanging_sign": { - "protocol_id": 933 + "protocol_id": 942 }, "minecraft:acacia_leaves": { "protocol_id": 186 @@ -6301,46 +6410,46 @@ "protocol_id": 40 }, "minecraft:acacia_pressure_plate": { - "protocol_id": 727 + "protocol_id": 734 }, "minecraft:acacia_sapling": { "protocol_id": 53 }, "minecraft:acacia_sign": { - "protocol_id": 921 + "protocol_id": 930 }, "minecraft:acacia_slab": { - "protocol_id": 268 + "protocol_id": 274 }, "minecraft:acacia_stairs": { - "protocol_id": 409 + "protocol_id": 416 }, "minecraft:acacia_trapdoor": { - "protocol_id": 761 + "protocol_id": 768 }, "minecraft:acacia_wood": { "protocol_id": 175 }, "minecraft:activator_rail": { - "protocol_id": 792 + "protocol_id": 799 }, "minecraft:air": { "protocol_id": 0 }, "minecraft:allay_spawn_egg": { - "protocol_id": 1058 + "protocol_id": 1069 }, "minecraft:allium": { - "protocol_id": 230 + "protocol_id": 234 }, "minecraft:amethyst_block": { "protocol_id": 88 }, "minecraft:amethyst_cluster": { - "protocol_id": 1314 + "protocol_id": 1325 }, "minecraft:amethyst_shard": { - "protocol_id": 840 + "protocol_id": 849 }, "minecraft:ancient_debris": { "protocol_id": 82 @@ -6349,178 +6458,178 @@ "protocol_id": 6 }, "minecraft:andesite_slab": { - "protocol_id": 671 + "protocol_id": 678 }, "minecraft:andesite_stairs": { - "protocol_id": 654 + "protocol_id": 661 }, "minecraft:andesite_wall": { - "protocol_id": 430 + "protocol_id": 437 }, "minecraft:angler_pottery_sherd": { - "protocol_id": 1341 + "protocol_id": 1352 }, "minecraft:anvil": { - "protocol_id": 442 + "protocol_id": 449 }, "minecraft:apple": { - "protocol_id": 831 + "protocol_id": 840 }, "minecraft:archer_pottery_sherd": { - "protocol_id": 1342 + "protocol_id": 1353 }, "minecraft:armadillo_scute": { - "protocol_id": 827 + "protocol_id": 836 }, "minecraft:armadillo_spawn_egg": { - "protocol_id": 1057 + "protocol_id": 1068 }, "minecraft:armor_stand": { - "protocol_id": 1175 + "protocol_id": 1186 }, "minecraft:arms_up_pottery_sherd": { - "protocol_id": 1343 + "protocol_id": 1354 }, "minecraft:arrow": { - "protocol_id": 833 + "protocol_id": 842 }, "minecraft:axolotl_bucket": { - "protocol_id": 952 + "protocol_id": 961 }, "minecraft:axolotl_spawn_egg": { - "protocol_id": 1059 + "protocol_id": 1070 }, "minecraft:azalea": { - "protocol_id": 204 + "protocol_id": 205 }, "minecraft:azalea_leaves": { "protocol_id": 191 }, "minecraft:azure_bluet": { - "protocol_id": 231 + "protocol_id": 235 }, "minecraft:baked_potato": { - "protocol_id": 1150 + "protocol_id": 1161 }, "minecraft:bamboo": { - "protocol_id": 263 + "protocol_id": 269 }, "minecraft:bamboo_block": { "protocol_id": 147 }, "minecraft:bamboo_button": { - "protocol_id": 716 + "protocol_id": 723 }, "minecraft:bamboo_chest_raft": { - "protocol_id": 822 + "protocol_id": 829 }, "minecraft:bamboo_door": { - "protocol_id": 745 + "protocol_id": 752 }, "minecraft:bamboo_fence": { - "protocol_id": 334 + "protocol_id": 341 }, "minecraft:bamboo_fence_gate": { - "protocol_id": 786 + "protocol_id": 793 }, "minecraft:bamboo_hanging_sign": { - "protocol_id": 938 + "protocol_id": 947 }, "minecraft:bamboo_mosaic": { "protocol_id": 48 }, "minecraft:bamboo_mosaic_slab": { - "protocol_id": 274 + "protocol_id": 280 }, "minecraft:bamboo_mosaic_stairs": { - "protocol_id": 415 + "protocol_id": 422 }, "minecraft:bamboo_planks": { "protocol_id": 45 }, "minecraft:bamboo_pressure_plate": { - "protocol_id": 732 + "protocol_id": 739 }, "minecraft:bamboo_raft": { - "protocol_id": 821 + "protocol_id": 828 }, "minecraft:bamboo_sign": { - "protocol_id": 926 + "protocol_id": 935 }, "minecraft:bamboo_slab": { - "protocol_id": 273 + "protocol_id": 279 }, "minecraft:bamboo_stairs": { - "protocol_id": 414 + "protocol_id": 421 }, "minecraft:bamboo_trapdoor": { - "protocol_id": 766 + "protocol_id": 773 }, "minecraft:barrel": { - "protocol_id": 1258 + "protocol_id": 1269 }, "minecraft:barrier": { - "protocol_id": 466 + "protocol_id": 473 }, "minecraft:basalt": { - "protocol_id": 343 + "protocol_id": 350 }, "minecraft:bat_spawn_egg": { - "protocol_id": 1060 + "protocol_id": 1071 }, "minecraft:beacon": { - "protocol_id": 419 + "protocol_id": 426 }, "minecraft:bedrock": { "protocol_id": 58 }, "minecraft:bee_nest": { - "protocol_id": 1275 + "protocol_id": 1286 }, "minecraft:bee_spawn_egg": { - "protocol_id": 1061 + "protocol_id": 1072 }, "minecraft:beef": { - "protocol_id": 1037 + "protocol_id": 1048 }, "minecraft:beehive": { - "protocol_id": 1276 + "protocol_id": 1287 }, "minecraft:beetroot": { - "protocol_id": 1206 + "protocol_id": 1217 }, "minecraft:beetroot_seeds": { - "protocol_id": 1207 + "protocol_id": 1218 }, "minecraft:beetroot_soup": { - "protocol_id": 1208 + "protocol_id": 1219 }, "minecraft:bell": { - "protocol_id": 1266 + "protocol_id": 1277 }, "minecraft:big_dripleaf": { - "protocol_id": 261 + "protocol_id": 267 }, "minecraft:birch_boat": { - "protocol_id": 807 + "protocol_id": 814 }, "minecraft:birch_button": { - "protocol_id": 709 + "protocol_id": 716 }, "minecraft:birch_chest_boat": { - "protocol_id": 808 + "protocol_id": 815 }, "minecraft:birch_door": { - "protocol_id": 738 + "protocol_id": 745 }, "minecraft:birch_fence": { - "protocol_id": 327 + "protocol_id": 334 }, "minecraft:birch_fence_gate": { - "protocol_id": 779 + "protocol_id": 786 }, "minecraft:birch_hanging_sign": { - "protocol_id": 931 + "protocol_id": 940 }, "minecraft:birch_leaves": { "protocol_id": 184 @@ -6532,367 +6641,379 @@ "protocol_id": 38 }, "minecraft:birch_pressure_plate": { - "protocol_id": 725 + "protocol_id": 732 }, "minecraft:birch_sapling": { "protocol_id": 51 }, "minecraft:birch_sign": { - "protocol_id": 919 + "protocol_id": 928 }, "minecraft:birch_slab": { - "protocol_id": 266 + "protocol_id": 272 }, "minecraft:birch_stairs": { - "protocol_id": 407 + "protocol_id": 414 }, "minecraft:birch_trapdoor": { - "protocol_id": 759 + "protocol_id": 766 }, "minecraft:birch_wood": { "protocol_id": 173 }, "minecraft:black_banner": { - "protocol_id": 1200 + "protocol_id": 1211 }, "minecraft:black_bed": { - "protocol_id": 1028 + "protocol_id": 1039 }, "minecraft:black_bundle": { - "protocol_id": 979 + "protocol_id": 990 }, "minecraft:black_candle": { - "protocol_id": 1310 - }, - "minecraft:black_carpet": { - "protocol_id": 484 - }, - "minecraft:black_concrete": { - "protocol_id": 593 - }, - "minecraft:black_concrete_powder": { - "protocol_id": 609 - }, - "minecraft:black_dye": { - "protocol_id": 1008 - }, - "minecraft:black_glazed_terracotta": { - "protocol_id": 577 - }, - "minecraft:black_shulker_box": { - "protocol_id": 561 - }, - "minecraft:black_stained_glass": { - "protocol_id": 509 - }, - "minecraft:black_stained_glass_pane": { - "protocol_id": 525 - }, - "minecraft:black_terracotta": { - "protocol_id": 465 - }, - "minecraft:black_wool": { - "protocol_id": 224 - }, - "minecraft:blackstone": { - "protocol_id": 1281 - }, - "minecraft:blackstone_slab": { - "protocol_id": 1282 - }, - "minecraft:blackstone_stairs": { - "protocol_id": 1283 - }, - "minecraft:blackstone_wall": { - "protocol_id": 435 - }, - "minecraft:blade_pottery_sherd": { - "protocol_id": 1344 - }, - "minecraft:blast_furnace": { - "protocol_id": 1260 - }, - "minecraft:blaze_powder": { - "protocol_id": 1051 - }, - "minecraft:blaze_rod": { - "protocol_id": 1043 - }, - "minecraft:blaze_spawn_egg": { - "protocol_id": 1062 - }, - "minecraft:blue_banner": { - "protocol_id": 1196 - }, - "minecraft:blue_bed": { - "protocol_id": 1024 - }, - "minecraft:blue_bundle": { - "protocol_id": 975 - }, - "minecraft:blue_candle": { - "protocol_id": 1306 - }, - "minecraft:blue_carpet": { - "protocol_id": 480 - }, - "minecraft:blue_concrete": { - "protocol_id": 589 - }, - "minecraft:blue_concrete_powder": { - "protocol_id": 605 - }, - "minecraft:blue_dye": { - "protocol_id": 1004 - }, - "minecraft:blue_glazed_terracotta": { - "protocol_id": 573 - }, - "minecraft:blue_ice": { - "protocol_id": 642 - }, - "minecraft:blue_orchid": { - "protocol_id": 229 - }, - "minecraft:blue_shulker_box": { - "protocol_id": 557 - }, - "minecraft:blue_stained_glass": { - "protocol_id": 505 - }, - "minecraft:blue_stained_glass_pane": { - "protocol_id": 521 - }, - "minecraft:blue_terracotta": { - "protocol_id": 461 - }, - "minecraft:blue_wool": { - "protocol_id": 220 - }, - "minecraft:bogged_spawn_egg": { - "protocol_id": 1063 - }, - "minecraft:bolt_armor_trim_smithing_template": { - "protocol_id": 1340 - }, - "minecraft:bone": { - "protocol_id": 1010 - }, - "minecraft:bone_block": { - "protocol_id": 543 - }, - "minecraft:bone_meal": { - "protocol_id": 1009 - }, - "minecraft:book": { - "protocol_id": 958 - }, - "minecraft:bookshelf": { - "protocol_id": 299 - }, - "minecraft:bordure_indented_banner_pattern": { - "protocol_id": 1255 - }, - "minecraft:bow": { - "protocol_id": 832 - }, - "minecraft:bowl": { - "protocol_id": 830 - }, - "minecraft:brain_coral": { - "protocol_id": 623 - }, - "minecraft:brain_coral_block": { - "protocol_id": 618 - }, - "minecraft:brain_coral_fan": { - "protocol_id": 633 - }, - "minecraft:bread": { - "protocol_id": 886 - }, - "minecraft:breeze_rod": { - "protocol_id": 1143 - }, - "minecraft:breeze_spawn_egg": { - "protocol_id": 1064 - }, - "minecraft:brewer_pottery_sherd": { - "protocol_id": 1345 - }, - "minecraft:brewing_stand": { - "protocol_id": 1053 - }, - "minecraft:brick": { - "protocol_id": 954 - }, - "minecraft:brick_slab": { - "protocol_id": 283 - }, - "minecraft:brick_stairs": { - "protocol_id": 383 - }, - "minecraft:brick_wall": { - "protocol_id": 422 - }, - "minecraft:bricks": { - "protocol_id": 298 - }, - "minecraft:brown_banner": { - "protocol_id": 1197 - }, - "minecraft:brown_bed": { - "protocol_id": 1025 - }, - "minecraft:brown_bundle": { - "protocol_id": 976 - }, - "minecraft:brown_candle": { - "protocol_id": 1307 - }, - "minecraft:brown_carpet": { - "protocol_id": 481 - }, - "minecraft:brown_concrete": { - "protocol_id": 590 - }, - "minecraft:brown_concrete_powder": { - "protocol_id": 606 - }, - "minecraft:brown_dye": { - "protocol_id": 1005 - }, - "minecraft:brown_glazed_terracotta": { - "protocol_id": 574 - }, - "minecraft:brown_mushroom": { - "protocol_id": 243 - }, - "minecraft:brown_mushroom_block": { - "protocol_id": 367 - }, - "minecraft:brown_shulker_box": { - "protocol_id": 558 - }, - "minecraft:brown_stained_glass": { - "protocol_id": 506 - }, - "minecraft:brown_stained_glass_pane": { - "protocol_id": 522 - }, - "minecraft:brown_terracotta": { - "protocol_id": 462 - }, - "minecraft:brown_wool": { - "protocol_id": 221 - }, - "minecraft:brush": { "protocol_id": 1321 }, + "minecraft:black_carpet": { + "protocol_id": 491 + }, + "minecraft:black_concrete": { + "protocol_id": 600 + }, + "minecraft:black_concrete_powder": { + "protocol_id": 616 + }, + "minecraft:black_dye": { + "protocol_id": 1019 + }, + "minecraft:black_glazed_terracotta": { + "protocol_id": 584 + }, + "minecraft:black_shulker_box": { + "protocol_id": 568 + }, + "minecraft:black_stained_glass": { + "protocol_id": 516 + }, + "minecraft:black_stained_glass_pane": { + "protocol_id": 532 + }, + "minecraft:black_terracotta": { + "protocol_id": 472 + }, + "minecraft:black_wool": { + "protocol_id": 228 + }, + "minecraft:blackstone": { + "protocol_id": 1292 + }, + "minecraft:blackstone_slab": { + "protocol_id": 1293 + }, + "minecraft:blackstone_stairs": { + "protocol_id": 1294 + }, + "minecraft:blackstone_wall": { + "protocol_id": 442 + }, + "minecraft:blade_pottery_sherd": { + "protocol_id": 1355 + }, + "minecraft:blast_furnace": { + "protocol_id": 1271 + }, + "minecraft:blaze_powder": { + "protocol_id": 1062 + }, + "minecraft:blaze_rod": { + "protocol_id": 1054 + }, + "minecraft:blaze_spawn_egg": { + "protocol_id": 1073 + }, + "minecraft:blue_banner": { + "protocol_id": 1207 + }, + "minecraft:blue_bed": { + "protocol_id": 1035 + }, + "minecraft:blue_bundle": { + "protocol_id": 986 + }, + "minecraft:blue_candle": { + "protocol_id": 1317 + }, + "minecraft:blue_carpet": { + "protocol_id": 487 + }, + "minecraft:blue_concrete": { + "protocol_id": 596 + }, + "minecraft:blue_concrete_powder": { + "protocol_id": 612 + }, + "minecraft:blue_dye": { + "protocol_id": 1015 + }, + "minecraft:blue_egg": { + "protocol_id": 970 + }, + "minecraft:blue_glazed_terracotta": { + "protocol_id": 580 + }, + "minecraft:blue_ice": { + "protocol_id": 649 + }, + "minecraft:blue_orchid": { + "protocol_id": 233 + }, + "minecraft:blue_shulker_box": { + "protocol_id": 564 + }, + "minecraft:blue_stained_glass": { + "protocol_id": 512 + }, + "minecraft:blue_stained_glass_pane": { + "protocol_id": 528 + }, + "minecraft:blue_terracotta": { + "protocol_id": 468 + }, + "minecraft:blue_wool": { + "protocol_id": 224 + }, + "minecraft:bogged_spawn_egg": { + "protocol_id": 1074 + }, + "minecraft:bolt_armor_trim_smithing_template": { + "protocol_id": 1351 + }, + "minecraft:bone": { + "protocol_id": 1021 + }, + "minecraft:bone_block": { + "protocol_id": 550 + }, + "minecraft:bone_meal": { + "protocol_id": 1020 + }, + "minecraft:book": { + "protocol_id": 967 + }, + "minecraft:bookshelf": { + "protocol_id": 305 + }, + "minecraft:bordure_indented_banner_pattern": { + "protocol_id": 1266 + }, + "minecraft:bow": { + "protocol_id": 841 + }, + "minecraft:bowl": { + "protocol_id": 839 + }, + "minecraft:brain_coral": { + "protocol_id": 630 + }, + "minecraft:brain_coral_block": { + "protocol_id": 625 + }, + "minecraft:brain_coral_fan": { + "protocol_id": 640 + }, + "minecraft:bread": { + "protocol_id": 895 + }, + "minecraft:breeze_rod": { + "protocol_id": 1154 + }, + "minecraft:breeze_spawn_egg": { + "protocol_id": 1075 + }, + "minecraft:brewer_pottery_sherd": { + "protocol_id": 1356 + }, + "minecraft:brewing_stand": { + "protocol_id": 1064 + }, + "minecraft:brick": { + "protocol_id": 963 + }, + "minecraft:brick_slab": { + "protocol_id": 289 + }, + "minecraft:brick_stairs": { + "protocol_id": 390 + }, + "minecraft:brick_wall": { + "protocol_id": 429 + }, + "minecraft:bricks": { + "protocol_id": 304 + }, + "minecraft:brown_banner": { + "protocol_id": 1208 + }, + "minecraft:brown_bed": { + "protocol_id": 1036 + }, + "minecraft:brown_bundle": { + "protocol_id": 987 + }, + "minecraft:brown_candle": { + "protocol_id": 1318 + }, + "minecraft:brown_carpet": { + "protocol_id": 488 + }, + "minecraft:brown_concrete": { + "protocol_id": 597 + }, + "minecraft:brown_concrete_powder": { + "protocol_id": 613 + }, + "minecraft:brown_dye": { + "protocol_id": 1016 + }, + "minecraft:brown_egg": { + "protocol_id": 971 + }, + "minecraft:brown_glazed_terracotta": { + "protocol_id": 581 + }, + "minecraft:brown_mushroom": { + "protocol_id": 247 + }, + "minecraft:brown_mushroom_block": { + "protocol_id": 374 + }, + "minecraft:brown_shulker_box": { + "protocol_id": 565 + }, + "minecraft:brown_stained_glass": { + "protocol_id": 513 + }, + "minecraft:brown_stained_glass_pane": { + "protocol_id": 529 + }, + "minecraft:brown_terracotta": { + "protocol_id": 469 + }, + "minecraft:brown_wool": { + "protocol_id": 225 + }, + "minecraft:brush": { + "protocol_id": 1332 + }, "minecraft:bubble_coral": { - "protocol_id": 624 + "protocol_id": 631 }, "minecraft:bubble_coral_block": { - "protocol_id": 619 + "protocol_id": 626 }, "minecraft:bubble_coral_fan": { - "protocol_id": 634 + "protocol_id": 641 }, "minecraft:bucket": { - "protocol_id": 941 + "protocol_id": 950 }, "minecraft:budding_amethyst": { "protocol_id": 89 }, "minecraft:bundle": { - "protocol_id": 963 + "protocol_id": 974 }, "minecraft:burn_pottery_sherd": { - "protocol_id": 1346 + "protocol_id": 1357 + }, + "minecraft:bush": { + "protocol_id": 204 }, "minecraft:cactus": { - "protocol_id": 322 + "protocol_id": 328 + }, + "minecraft:cactus_flower": { + "protocol_id": 329 }, "minecraft:cake": { - "protocol_id": 1012 + "protocol_id": 1023 }, "minecraft:calcite": { "protocol_id": 11 }, "minecraft:calibrated_sculk_sensor": { - "protocol_id": 699 + "protocol_id": 706 }, "minecraft:camel_spawn_egg": { - "protocol_id": 1066 + "protocol_id": 1077 }, "minecraft:campfire": { - "protocol_id": 1271 + "protocol_id": 1282 }, "minecraft:candle": { - "protocol_id": 1294 + "protocol_id": 1305 }, "minecraft:carrot": { - "protocol_id": 1148 + "protocol_id": 1159 }, "minecraft:carrot_on_a_stick": { - "protocol_id": 799 + "protocol_id": 806 }, "minecraft:cartography_table": { - "protocol_id": 1261 + "protocol_id": 1272 }, "minecraft:carved_pumpkin": { - "protocol_id": 338 + "protocol_id": 345 }, "minecraft:cat_spawn_egg": { - "protocol_id": 1065 + "protocol_id": 1076 }, "minecraft:cauldron": { - "protocol_id": 1054 + "protocol_id": 1065 }, "minecraft:cave_spider_spawn_egg": { - "protocol_id": 1067 + "protocol_id": 1078 }, "minecraft:chain": { - "protocol_id": 371 + "protocol_id": 378 }, "minecraft:chain_command_block": { - "protocol_id": 538 + "protocol_id": 545 }, "minecraft:chainmail_boots": { - "protocol_id": 894 + "protocol_id": 903 }, "minecraft:chainmail_chestplate": { - "protocol_id": 892 + "protocol_id": 901 }, "minecraft:chainmail_helmet": { - "protocol_id": 891 + "protocol_id": 900 }, "minecraft:chainmail_leggings": { - "protocol_id": 893 + "protocol_id": 902 }, "minecraft:charcoal": { - "protocol_id": 835 + "protocol_id": 844 }, "minecraft:cherry_boat": { - "protocol_id": 813 + "protocol_id": 820 }, "minecraft:cherry_button": { - "protocol_id": 712 + "protocol_id": 719 }, "minecraft:cherry_chest_boat": { - "protocol_id": 814 + "protocol_id": 821 }, "minecraft:cherry_door": { - "protocol_id": 741 + "protocol_id": 748 }, "minecraft:cherry_fence": { - "protocol_id": 330 + "protocol_id": 337 }, "minecraft:cherry_fence_gate": { - "protocol_id": 782 + "protocol_id": 789 }, "minecraft:cherry_hanging_sign": { - "protocol_id": 934 + "protocol_id": 943 }, "minecraft:cherry_leaves": { "protocol_id": 187 @@ -6904,70 +7025,70 @@ "protocol_id": 41 }, "minecraft:cherry_pressure_plate": { - "protocol_id": 728 + "protocol_id": 735 }, "minecraft:cherry_sapling": { "protocol_id": 54 }, "minecraft:cherry_sign": { - "protocol_id": 922 + "protocol_id": 931 }, "minecraft:cherry_slab": { - "protocol_id": 269 + "protocol_id": 275 }, "minecraft:cherry_stairs": { - "protocol_id": 410 + "protocol_id": 417 }, "minecraft:cherry_trapdoor": { - "protocol_id": 762 + "protocol_id": 769 }, "minecraft:cherry_wood": { "protocol_id": 176 }, "minecraft:chest": { - "protocol_id": 313 + "protocol_id": 319 }, "minecraft:chest_minecart": { - "protocol_id": 795 + "protocol_id": 802 }, "minecraft:chicken": { - "protocol_id": 1039 + "protocol_id": 1050 }, "minecraft:chicken_spawn_egg": { - "protocol_id": 1068 + "protocol_id": 1079 }, "minecraft:chipped_anvil": { - "protocol_id": 443 + "protocol_id": 450 }, "minecraft:chiseled_bookshelf": { - "protocol_id": 300 + "protocol_id": 306 }, "minecraft:chiseled_copper": { "protocol_id": 98 }, "minecraft:chiseled_deepslate": { - "protocol_id": 365 + "protocol_id": 372 }, "minecraft:chiseled_nether_bricks": { - "protocol_id": 390 + "protocol_id": 397 }, "minecraft:chiseled_polished_blackstone": { - "protocol_id": 1288 + "protocol_id": 1299 }, "minecraft:chiseled_quartz_block": { - "protocol_id": 445 + "protocol_id": 452 }, "minecraft:chiseled_red_sandstone": { - "protocol_id": 534 + "protocol_id": 541 }, "minecraft:chiseled_resin_bricks": { - "protocol_id": 382 + "protocol_id": 389 }, "minecraft:chiseled_sandstone": { "protocol_id": 199 }, "minecraft:chiseled_stone_bricks": { - "protocol_id": 358 + "protocol_id": 365 }, "minecraft:chiseled_tuff": { "protocol_id": 16 @@ -6976,28 +7097,28 @@ "protocol_id": 25 }, "minecraft:chorus_flower": { - "protocol_id": 307 + "protocol_id": 313 }, "minecraft:chorus_fruit": { - "protocol_id": 1202 + "protocol_id": 1213 }, "minecraft:chorus_plant": { - "protocol_id": 306 + "protocol_id": 312 }, "minecraft:clay": { - "protocol_id": 323 + "protocol_id": 330 }, "minecraft:clay_ball": { - "protocol_id": 955 + "protocol_id": 964 }, "minecraft:clock": { - "protocol_id": 981 + "protocol_id": 992 }, "minecraft:closed_eyeblossom": { - "protocol_id": 227 + "protocol_id": 231 }, "minecraft:coal": { - "protocol_id": 834 + "protocol_id": 843 }, "minecraft:coal_block": { "protocol_id": 83 @@ -7009,169 +7130,169 @@ "protocol_id": 29 }, "minecraft:coast_armor_trim_smithing_template": { - "protocol_id": 1325 + "protocol_id": 1336 }, "minecraft:cobbled_deepslate": { "protocol_id": 9 }, "minecraft:cobbled_deepslate_slab": { - "protocol_id": 675 + "protocol_id": 682 }, "minecraft:cobbled_deepslate_stairs": { - "protocol_id": 658 + "protocol_id": 665 }, "minecraft:cobbled_deepslate_wall": { - "protocol_id": 438 + "protocol_id": 445 }, "minecraft:cobblestone": { "protocol_id": 35 }, "minecraft:cobblestone_slab": { - "protocol_id": 282 + "protocol_id": 288 }, "minecraft:cobblestone_stairs": { - "protocol_id": 318 + "protocol_id": 324 }, "minecraft:cobblestone_wall": { - "protocol_id": 420 + "protocol_id": 427 }, "minecraft:cobweb": { "protocol_id": 201 }, "minecraft:cocoa_beans": { - "protocol_id": 992 + "protocol_id": 1003 }, "minecraft:cod": { - "protocol_id": 984 + "protocol_id": 995 }, "minecraft:cod_bucket": { - "protocol_id": 950 + "protocol_id": 959 }, "minecraft:cod_spawn_egg": { - "protocol_id": 1069 + "protocol_id": 1080 }, "minecraft:command_block": { - "protocol_id": 418 + "protocol_id": 425 }, "minecraft:command_block_minecart": { - "protocol_id": 1182 + "protocol_id": 1193 }, "minecraft:comparator": { - "protocol_id": 684 + "protocol_id": 691 }, "minecraft:compass": { - "protocol_id": 961 + "protocol_id": 972 }, "minecraft:composter": { - "protocol_id": 1257 + "protocol_id": 1268 }, "minecraft:conduit": { - "protocol_id": 643 + "protocol_id": 650 }, "minecraft:cooked_beef": { - "protocol_id": 1038 + "protocol_id": 1049 }, "minecraft:cooked_chicken": { - "protocol_id": 1040 + "protocol_id": 1051 }, "minecraft:cooked_cod": { - "protocol_id": 988 + "protocol_id": 999 }, "minecraft:cooked_mutton": { - "protocol_id": 1184 + "protocol_id": 1195 }, "minecraft:cooked_porkchop": { - "protocol_id": 913 + "protocol_id": 922 }, "minecraft:cooked_rabbit": { - "protocol_id": 1171 + "protocol_id": 1182 }, "minecraft:cooked_salmon": { - "protocol_id": 989 + "protocol_id": 1000 }, "minecraft:cookie": { - "protocol_id": 1029 + "protocol_id": 1040 }, "minecraft:copper_block": { "protocol_id": 91 }, "minecraft:copper_bulb": { - "protocol_id": 1372 + "protocol_id": 1383 }, "minecraft:copper_door": { - "protocol_id": 748 + "protocol_id": 755 }, "minecraft:copper_grate": { - "protocol_id": 1364 + "protocol_id": 1375 }, "minecraft:copper_ingot": { - "protocol_id": 844 + "protocol_id": 853 }, "minecraft:copper_ore": { "protocol_id": 68 }, "minecraft:copper_trapdoor": { - "protocol_id": 769 + "protocol_id": 776 }, "minecraft:cornflower": { - "protocol_id": 237 + "protocol_id": 241 }, "minecraft:cow_spawn_egg": { - "protocol_id": 1070 + "protocol_id": 1081 }, "minecraft:cracked_deepslate_bricks": { - "protocol_id": 362 + "protocol_id": 369 }, "minecraft:cracked_deepslate_tiles": { - "protocol_id": 364 + "protocol_id": 371 }, "minecraft:cracked_nether_bricks": { - "protocol_id": 389 + "protocol_id": 396 }, "minecraft:cracked_polished_blackstone_bricks": { - "protocol_id": 1292 + "protocol_id": 1303 }, "minecraft:cracked_stone_bricks": { - "protocol_id": 357 + "protocol_id": 364 }, "minecraft:crafter": { - "protocol_id": 1030 + "protocol_id": 1041 }, "minecraft:crafting_table": { - "protocol_id": 314 + "protocol_id": 320 }, "minecraft:creaking_heart": { - "protocol_id": 312 + "protocol_id": 318 }, "minecraft:creaking_spawn_egg": { - "protocol_id": 1133 + "protocol_id": 1144 }, "minecraft:creeper_banner_pattern": { - "protocol_id": 1247 + "protocol_id": 1258 }, "minecraft:creeper_head": { - "protocol_id": 1158 + "protocol_id": 1169 }, "minecraft:creeper_spawn_egg": { - "protocol_id": 1071 + "protocol_id": 1082 }, "minecraft:crimson_button": { - "protocol_id": 717 + "protocol_id": 724 }, "minecraft:crimson_door": { - "protocol_id": 746 + "protocol_id": 753 }, "minecraft:crimson_fence": { - "protocol_id": 335 + "protocol_id": 342 }, "minecraft:crimson_fence_gate": { - "protocol_id": 787 + "protocol_id": 794 }, "minecraft:crimson_fungus": { - "protocol_id": 245 + "protocol_id": 249 }, "minecraft:crimson_hanging_sign": { - "protocol_id": 939 + "protocol_id": 948 }, "minecraft:crimson_hyphae": { "protocol_id": 180 @@ -7183,31 +7304,31 @@ "protocol_id": 46 }, "minecraft:crimson_pressure_plate": { - "protocol_id": 733 + "protocol_id": 740 }, "minecraft:crimson_roots": { - "protocol_id": 247 + "protocol_id": 251 }, "minecraft:crimson_sign": { - "protocol_id": 927 + "protocol_id": 936 }, "minecraft:crimson_slab": { - "protocol_id": 275 + "protocol_id": 281 }, "minecraft:crimson_stairs": { - "protocol_id": 416 + "protocol_id": 423 }, "minecraft:crimson_stem": { "protocol_id": 145 }, "minecraft:crimson_trapdoor": { - "protocol_id": 767 + "protocol_id": 774 }, "minecraft:crossbow": { - "protocol_id": 1243 + "protocol_id": 1254 }, "minecraft:crying_obsidian": { - "protocol_id": 1280 + "protocol_id": 1291 }, "minecraft:cut_copper": { "protocol_id": 102 @@ -7219,88 +7340,88 @@ "protocol_id": 106 }, "minecraft:cut_red_sandstone": { - "protocol_id": 535 + "protocol_id": 542 }, "minecraft:cut_red_sandstone_slab": { - "protocol_id": 289 + "protocol_id": 295 }, "minecraft:cut_sandstone": { "protocol_id": 200 }, "minecraft:cut_sandstone_slab": { - "protocol_id": 280 + "protocol_id": 286 }, "minecraft:cyan_banner": { - "protocol_id": 1194 + "protocol_id": 1205 }, "minecraft:cyan_bed": { - "protocol_id": 1022 + "protocol_id": 1033 }, "minecraft:cyan_bundle": { - "protocol_id": 973 + "protocol_id": 984 }, "minecraft:cyan_candle": { - "protocol_id": 1304 + "protocol_id": 1315 }, "minecraft:cyan_carpet": { - "protocol_id": 478 + "protocol_id": 485 }, "minecraft:cyan_concrete": { - "protocol_id": 587 + "protocol_id": 594 }, "minecraft:cyan_concrete_powder": { - "protocol_id": 603 + "protocol_id": 610 }, "minecraft:cyan_dye": { - "protocol_id": 1002 + "protocol_id": 1013 }, "minecraft:cyan_glazed_terracotta": { - "protocol_id": 571 + "protocol_id": 578 }, "minecraft:cyan_shulker_box": { - "protocol_id": 555 + "protocol_id": 562 }, "minecraft:cyan_stained_glass": { - "protocol_id": 503 + "protocol_id": 510 }, "minecraft:cyan_stained_glass_pane": { - "protocol_id": 519 + "protocol_id": 526 }, "minecraft:cyan_terracotta": { - "protocol_id": 459 + "protocol_id": 466 }, "minecraft:cyan_wool": { - "protocol_id": 218 + "protocol_id": 222 }, "minecraft:damaged_anvil": { - "protocol_id": 444 + "protocol_id": 451 }, "minecraft:dandelion": { - "protocol_id": 225 + "protocol_id": 229 }, "minecraft:danger_pottery_sherd": { - "protocol_id": 1347 + "protocol_id": 1358 }, "minecraft:dark_oak_boat": { - "protocol_id": 815 + "protocol_id": 822 }, "minecraft:dark_oak_button": { - "protocol_id": 713 + "protocol_id": 720 }, "minecraft:dark_oak_chest_boat": { - "protocol_id": 816 + "protocol_id": 823 }, "minecraft:dark_oak_door": { - "protocol_id": 742 + "protocol_id": 749 }, "minecraft:dark_oak_fence": { - "protocol_id": 331 + "protocol_id": 338 }, "minecraft:dark_oak_fence_gate": { - "protocol_id": 783 + "protocol_id": 790 }, "minecraft:dark_oak_hanging_sign": { - "protocol_id": 935 + "protocol_id": 944 }, "minecraft:dark_oak_leaves": { "protocol_id": 188 @@ -7312,106 +7433,106 @@ "protocol_id": 42 }, "minecraft:dark_oak_pressure_plate": { - "protocol_id": 729 + "protocol_id": 736 }, "minecraft:dark_oak_sapling": { "protocol_id": 55 }, "minecraft:dark_oak_sign": { - "protocol_id": 923 + "protocol_id": 932 }, "minecraft:dark_oak_slab": { - "protocol_id": 270 + "protocol_id": 276 }, "minecraft:dark_oak_stairs": { - "protocol_id": 411 + "protocol_id": 418 }, "minecraft:dark_oak_trapdoor": { - "protocol_id": 763 + "protocol_id": 770 }, "minecraft:dark_oak_wood": { "protocol_id": 178 }, "minecraft:dark_prismarine": { - "protocol_id": 528 + "protocol_id": 535 }, "minecraft:dark_prismarine_slab": { - "protocol_id": 293 + "protocol_id": 299 }, "minecraft:dark_prismarine_stairs": { - "protocol_id": 531 + "protocol_id": 538 }, "minecraft:daylight_detector": { - "protocol_id": 697 + "protocol_id": 704 }, "minecraft:dead_brain_coral": { - "protocol_id": 627 + "protocol_id": 634 }, "minecraft:dead_brain_coral_block": { - "protocol_id": 613 + "protocol_id": 620 }, "minecraft:dead_brain_coral_fan": { - "protocol_id": 638 + "protocol_id": 645 }, "minecraft:dead_bubble_coral": { - "protocol_id": 628 + "protocol_id": 635 }, "minecraft:dead_bubble_coral_block": { - "protocol_id": 614 + "protocol_id": 621 }, "minecraft:dead_bubble_coral_fan": { - "protocol_id": 639 + "protocol_id": 646 }, "minecraft:dead_bush": { - "protocol_id": 206 + "protocol_id": 207 }, "minecraft:dead_fire_coral": { - "protocol_id": 629 + "protocol_id": 636 }, "minecraft:dead_fire_coral_block": { - "protocol_id": 615 + "protocol_id": 622 }, "minecraft:dead_fire_coral_fan": { - "protocol_id": 640 + "protocol_id": 647 }, "minecraft:dead_horn_coral": { - "protocol_id": 630 - }, - "minecraft:dead_horn_coral_block": { - "protocol_id": 616 - }, - "minecraft:dead_horn_coral_fan": { - "protocol_id": 641 - }, - "minecraft:dead_tube_coral": { - "protocol_id": 631 - }, - "minecraft:dead_tube_coral_block": { - "protocol_id": 612 - }, - "minecraft:dead_tube_coral_fan": { "protocol_id": 637 }, + "minecraft:dead_horn_coral_block": { + "protocol_id": 623 + }, + "minecraft:dead_horn_coral_fan": { + "protocol_id": 648 + }, + "minecraft:dead_tube_coral": { + "protocol_id": 638 + }, + "minecraft:dead_tube_coral_block": { + "protocol_id": 619 + }, + "minecraft:dead_tube_coral_fan": { + "protocol_id": 644 + }, "minecraft:debug_stick": { - "protocol_id": 1219 + "protocol_id": 1230 }, "minecraft:decorated_pot": { - "protocol_id": 301 + "protocol_id": 307 }, "minecraft:deepslate": { "protocol_id": 8 }, "minecraft:deepslate_brick_slab": { - "protocol_id": 677 + "protocol_id": 684 }, "minecraft:deepslate_brick_stairs": { - "protocol_id": 660 + "protocol_id": 667 }, "minecraft:deepslate_brick_wall": { - "protocol_id": 440 + "protocol_id": 447 }, "minecraft:deepslate_bricks": { - "protocol_id": 361 + "protocol_id": 368 }, "minecraft:deepslate_coal_ore": { "protocol_id": 65 @@ -7438,196 +7559,196 @@ "protocol_id": 73 }, "minecraft:deepslate_tile_slab": { - "protocol_id": 678 + "protocol_id": 685 }, "minecraft:deepslate_tile_stairs": { - "protocol_id": 661 + "protocol_id": 668 }, "minecraft:deepslate_tile_wall": { - "protocol_id": 441 + "protocol_id": 448 }, "minecraft:deepslate_tiles": { - "protocol_id": 363 + "protocol_id": 370 }, "minecraft:detector_rail": { - "protocol_id": 790 + "protocol_id": 797 }, "minecraft:diamond": { - "protocol_id": 836 + "protocol_id": 845 }, "minecraft:diamond_axe": { - "protocol_id": 872 + "protocol_id": 881 }, "minecraft:diamond_block": { "protocol_id": 93 }, "minecraft:diamond_boots": { - "protocol_id": 902 + "protocol_id": 911 }, "minecraft:diamond_chestplate": { - "protocol_id": 900 + "protocol_id": 909 }, "minecraft:diamond_helmet": { - "protocol_id": 899 + "protocol_id": 908 }, "minecraft:diamond_hoe": { - "protocol_id": 873 + "protocol_id": 882 }, "minecraft:diamond_horse_armor": { - "protocol_id": 1178 + "protocol_id": 1189 }, "minecraft:diamond_leggings": { - "protocol_id": 901 + "protocol_id": 910 }, "minecraft:diamond_ore": { "protocol_id": 78 }, "minecraft:diamond_pickaxe": { - "protocol_id": 871 + "protocol_id": 880 }, "minecraft:diamond_shovel": { - "protocol_id": 870 + "protocol_id": 879 }, "minecraft:diamond_sword": { - "protocol_id": 869 + "protocol_id": 878 }, "minecraft:diorite": { "protocol_id": 4 }, "minecraft:diorite_slab": { - "protocol_id": 674 + "protocol_id": 681 }, "minecraft:diorite_stairs": { - "protocol_id": 657 + "protocol_id": 664 }, "minecraft:diorite_wall": { - "protocol_id": 434 + "protocol_id": 441 }, "minecraft:dirt": { "protocol_id": 28 }, "minecraft:dirt_path": { - "protocol_id": 487 + "protocol_id": 494 }, "minecraft:disc_fragment_5": { - "protocol_id": 1239 + "protocol_id": 1250 }, "minecraft:dispenser": { - "protocol_id": 691 + "protocol_id": 698 }, "minecraft:dolphin_spawn_egg": { - "protocol_id": 1072 + "protocol_id": 1083 }, "minecraft:donkey_spawn_egg": { - "protocol_id": 1073 + "protocol_id": 1084 }, "minecraft:dragon_breath": { - "protocol_id": 1209 + "protocol_id": 1220 }, "minecraft:dragon_egg": { - "protocol_id": 401 + "protocol_id": 408 }, "minecraft:dragon_head": { - "protocol_id": 1159 + "protocol_id": 1170 }, "minecraft:dried_kelp": { - "protocol_id": 1034 + "protocol_id": 1045 }, "minecraft:dried_kelp_block": { - "protocol_id": 956 + "protocol_id": 965 }, "minecraft:dripstone_block": { "protocol_id": 26 }, "minecraft:dropper": { - "protocol_id": 692 + "protocol_id": 699 }, "minecraft:drowned_spawn_egg": { - "protocol_id": 1074 + "protocol_id": 1085 }, "minecraft:dune_armor_trim_smithing_template": { - "protocol_id": 1324 + "protocol_id": 1335 }, "minecraft:echo_shard": { - "protocol_id": 1320 + "protocol_id": 1331 }, "minecraft:egg": { - "protocol_id": 960 + "protocol_id": 969 }, "minecraft:elder_guardian_spawn_egg": { - "protocol_id": 1075 + "protocol_id": 1086 }, "minecraft:elytra": { - "protocol_id": 802 + "protocol_id": 809 }, "minecraft:emerald": { - "protocol_id": 837 + "protocol_id": 846 }, "minecraft:emerald_block": { - "protocol_id": 404 + "protocol_id": 411 }, "minecraft:emerald_ore": { "protocol_id": 74 }, "minecraft:enchanted_book": { - "protocol_id": 1165 + "protocol_id": 1176 }, "minecraft:enchanted_golden_apple": { - "protocol_id": 916 + "protocol_id": 925 }, "minecraft:enchanting_table": { - "protocol_id": 397 + "protocol_id": 404 }, "minecraft:end_crystal": { - "protocol_id": 1201 + "protocol_id": 1212 }, "minecraft:end_portal_frame": { - "protocol_id": 398 + "protocol_id": 405 }, "minecraft:end_rod": { - "protocol_id": 305 + "protocol_id": 311 }, "minecraft:end_stone": { - "protocol_id": 399 + "protocol_id": 406 }, "minecraft:end_stone_brick_slab": { - "protocol_id": 667 + "protocol_id": 674 }, "minecraft:end_stone_brick_stairs": { - "protocol_id": 649 + "protocol_id": 656 }, "minecraft:end_stone_brick_wall": { - "protocol_id": 433 + "protocol_id": 440 }, "minecraft:end_stone_bricks": { - "protocol_id": 400 + "protocol_id": 407 }, "minecraft:ender_chest": { - "protocol_id": 403 + "protocol_id": 410 }, "minecraft:ender_dragon_spawn_egg": { - "protocol_id": 1076 + "protocol_id": 1087 }, "minecraft:ender_eye": { - "protocol_id": 1055 + "protocol_id": 1066 }, "minecraft:ender_pearl": { - "protocol_id": 1042 + "protocol_id": 1053 }, "minecraft:enderman_spawn_egg": { - "protocol_id": 1077 + "protocol_id": 1088 }, "minecraft:endermite_spawn_egg": { - "protocol_id": 1078 + "protocol_id": 1089 }, "minecraft:evoker_spawn_egg": { - "protocol_id": 1079 + "protocol_id": 1090 }, "minecraft:experience_bottle": { - "protocol_id": 1138 + "protocol_id": 1149 }, "minecraft:explorer_pottery_sherd": { - "protocol_id": 1348 + "protocol_id": 1359 }, "minecraft:exposed_chiseled_copper": { "protocol_id": 99 @@ -7636,16 +7757,16 @@ "protocol_id": 95 }, "minecraft:exposed_copper_bulb": { - "protocol_id": 1373 + "protocol_id": 1384 }, "minecraft:exposed_copper_door": { - "protocol_id": 749 + "protocol_id": 756 }, "minecraft:exposed_copper_grate": { - "protocol_id": 1365 + "protocol_id": 1376 }, "minecraft:exposed_copper_trapdoor": { - "protocol_id": 770 + "protocol_id": 777 }, "minecraft:exposed_cut_copper": { "protocol_id": 103 @@ -7657,205 +7778,208 @@ "protocol_id": 107 }, "minecraft:eye_armor_trim_smithing_template": { - "protocol_id": 1328 + "protocol_id": 1339 }, "minecraft:farmland": { - "protocol_id": 315 + "protocol_id": 321 }, "minecraft:feather": { - "protocol_id": 882 + "protocol_id": 891 }, "minecraft:fermented_spider_eye": { - "protocol_id": 1050 + "protocol_id": 1061 }, "minecraft:fern": { "protocol_id": 203 }, "minecraft:field_masoned_banner_pattern": { - "protocol_id": 1254 + "protocol_id": 1265 }, "minecraft:filled_map": { - "protocol_id": 1031 + "protocol_id": 1042 }, "minecraft:fire_charge": { - "protocol_id": 1139 + "protocol_id": 1150 }, "minecraft:fire_coral": { - "protocol_id": 625 + "protocol_id": 632 }, "minecraft:fire_coral_block": { - "protocol_id": 620 + "protocol_id": 627 }, "minecraft:fire_coral_fan": { - "protocol_id": 635 + "protocol_id": 642 + }, + "minecraft:firefly_bush": { + "protocol_id": 208 }, "minecraft:firework_rocket": { - "protocol_id": 1163 + "protocol_id": 1174 }, "minecraft:firework_star": { - "protocol_id": 1164 + "protocol_id": 1175 }, "minecraft:fishing_rod": { - "protocol_id": 980 + "protocol_id": 991 }, "minecraft:fletching_table": { - "protocol_id": 1262 + "protocol_id": 1273 }, "minecraft:flint": { - "protocol_id": 911 + "protocol_id": 920 }, "minecraft:flint_and_steel": { - "protocol_id": 829 + "protocol_id": 838 }, "minecraft:flow_armor_trim_smithing_template": { - "protocol_id": 1339 + "protocol_id": 1350 }, "minecraft:flow_banner_pattern": { - "protocol_id": 1252 + "protocol_id": 1263 }, "minecraft:flow_pottery_sherd": { - "protocol_id": 1349 + "protocol_id": 1360 }, "minecraft:flower_banner_pattern": { - "protocol_id": 1246 + "protocol_id": 1257 }, "minecraft:flower_pot": { - "protocol_id": 1147 + "protocol_id": 1158 }, "minecraft:flowering_azalea": { - "protocol_id": 205 + "protocol_id": 206 }, "minecraft:flowering_azalea_leaves": { "protocol_id": 192 }, "minecraft:fox_spawn_egg": { - "protocol_id": 1080 + "protocol_id": 1091 }, "minecraft:friend_pottery_sherd": { - "protocol_id": 1350 + "protocol_id": 1361 }, "minecraft:frog_spawn_egg": { - "protocol_id": 1081 + "protocol_id": 1092 }, "minecraft:frogspawn": { - "protocol_id": 1319 + "protocol_id": 1330 }, "minecraft:furnace": { - "protocol_id": 316 + "protocol_id": 322 }, "minecraft:furnace_minecart": { - "protocol_id": 796 + "protocol_id": 803 }, "minecraft:ghast_spawn_egg": { - "protocol_id": 1082 + "protocol_id": 1093 }, "minecraft:ghast_tear": { - "protocol_id": 1044 + "protocol_id": 1055 }, "minecraft:gilded_blackstone": { - "protocol_id": 1284 + "protocol_id": 1295 }, "minecraft:glass": { "protocol_id": 195 }, "minecraft:glass_bottle": { - "protocol_id": 1047 + "protocol_id": 1058 }, "minecraft:glass_pane": { - "protocol_id": 372 + "protocol_id": 379 }, "minecraft:glistering_melon_slice": { - "protocol_id": 1056 + "protocol_id": 1067 }, "minecraft:globe_banner_pattern": { - "protocol_id": 1250 + "protocol_id": 1261 }, "minecraft:glow_berries": { - "protocol_id": 1270 + "protocol_id": 1281 }, "minecraft:glow_ink_sac": { - "protocol_id": 991 + "protocol_id": 1002 }, "minecraft:glow_item_frame": { - "protocol_id": 1146 + "protocol_id": 1157 }, "minecraft:glow_lichen": { - "protocol_id": 375 + "protocol_id": 382 }, "minecraft:glow_squid_spawn_egg": { - "protocol_id": 1083 + "protocol_id": 1094 }, "minecraft:glowstone": { - "protocol_id": 347 + "protocol_id": 354 }, "minecraft:glowstone_dust": { - "protocol_id": 983 + "protocol_id": 994 }, "minecraft:goat_horn": { - "protocol_id": 1256 + "protocol_id": 1267 }, "minecraft:goat_spawn_egg": { - "protocol_id": 1084 + "protocol_id": 1095 }, "minecraft:gold_block": { "protocol_id": 92 }, "minecraft:gold_ingot": { - "protocol_id": 846 + "protocol_id": 855 }, "minecraft:gold_nugget": { - "protocol_id": 1045 + "protocol_id": 1056 }, "minecraft:gold_ore": { "protocol_id": 70 }, "minecraft:golden_apple": { - "protocol_id": 915 + "protocol_id": 924 }, "minecraft:golden_axe": { - "protocol_id": 862 + "protocol_id": 871 }, "minecraft:golden_boots": { - "protocol_id": 906 + "protocol_id": 915 }, "minecraft:golden_carrot": { - "protocol_id": 1153 + "protocol_id": 1164 }, "minecraft:golden_chestplate": { - "protocol_id": 904 + "protocol_id": 913 }, "minecraft:golden_helmet": { - "protocol_id": 903 + "protocol_id": 912 }, "minecraft:golden_hoe": { - "protocol_id": 863 + "protocol_id": 872 }, "minecraft:golden_horse_armor": { - "protocol_id": 1177 + "protocol_id": 1188 }, "minecraft:golden_leggings": { - "protocol_id": 905 + "protocol_id": 914 }, "minecraft:golden_pickaxe": { - "protocol_id": 861 + "protocol_id": 870 }, "minecraft:golden_shovel": { - "protocol_id": 860 + "protocol_id": 869 }, "minecraft:golden_sword": { - "protocol_id": 859 + "protocol_id": 868 }, "minecraft:granite": { "protocol_id": 2 }, "minecraft:granite_slab": { - "protocol_id": 670 + "protocol_id": 677 }, "minecraft:granite_stairs": { - "protocol_id": 653 + "protocol_id": 660 }, "minecraft:granite_wall": { - "protocol_id": 426 + "protocol_id": 433 }, "minecraft:grass_block": { "protocol_id": 27 @@ -7864,280 +7988,280 @@ "protocol_id": 63 }, "minecraft:gray_banner": { - "protocol_id": 1192 + "protocol_id": 1203 }, "minecraft:gray_bed": { - "protocol_id": 1020 + "protocol_id": 1031 }, "minecraft:gray_bundle": { - "protocol_id": 971 + "protocol_id": 982 }, "minecraft:gray_candle": { - "protocol_id": 1302 + "protocol_id": 1313 }, "minecraft:gray_carpet": { - "protocol_id": 476 + "protocol_id": 483 }, "minecraft:gray_concrete": { - "protocol_id": 585 + "protocol_id": 592 }, "minecraft:gray_concrete_powder": { - "protocol_id": 601 + "protocol_id": 608 }, "minecraft:gray_dye": { - "protocol_id": 1000 + "protocol_id": 1011 }, "minecraft:gray_glazed_terracotta": { - "protocol_id": 569 + "protocol_id": 576 }, "minecraft:gray_shulker_box": { - "protocol_id": 553 + "protocol_id": 560 }, "minecraft:gray_stained_glass": { - "protocol_id": 501 + "protocol_id": 508 }, "minecraft:gray_stained_glass_pane": { - "protocol_id": 517 + "protocol_id": 524 }, "minecraft:gray_terracotta": { - "protocol_id": 457 + "protocol_id": 464 }, "minecraft:gray_wool": { - "protocol_id": 216 + "protocol_id": 220 }, "minecraft:green_banner": { - "protocol_id": 1198 + "protocol_id": 1209 }, "minecraft:green_bed": { - "protocol_id": 1026 + "protocol_id": 1037 }, "minecraft:green_bundle": { - "protocol_id": 977 + "protocol_id": 988 }, "minecraft:green_candle": { - "protocol_id": 1308 + "protocol_id": 1319 }, "minecraft:green_carpet": { - "protocol_id": 482 + "protocol_id": 489 }, "minecraft:green_concrete": { - "protocol_id": 591 + "protocol_id": 598 }, "minecraft:green_concrete_powder": { - "protocol_id": 607 + "protocol_id": 614 }, "minecraft:green_dye": { - "protocol_id": 1006 + "protocol_id": 1017 }, "minecraft:green_glazed_terracotta": { - "protocol_id": 575 + "protocol_id": 582 }, "minecraft:green_shulker_box": { - "protocol_id": 559 + "protocol_id": 566 }, "minecraft:green_stained_glass": { - "protocol_id": 507 + "protocol_id": 514 }, "minecraft:green_stained_glass_pane": { - "protocol_id": 523 + "protocol_id": 530 }, "minecraft:green_terracotta": { - "protocol_id": 463 + "protocol_id": 470 }, "minecraft:green_wool": { - "protocol_id": 222 + "protocol_id": 226 }, "minecraft:grindstone": { - "protocol_id": 1263 + "protocol_id": 1274 }, "minecraft:guardian_spawn_egg": { - "protocol_id": 1085 + "protocol_id": 1096 }, "minecraft:gunpowder": { - "protocol_id": 883 + "protocol_id": 892 }, "minecraft:guster_banner_pattern": { - "protocol_id": 1253 + "protocol_id": 1264 }, "minecraft:guster_pottery_sherd": { - "protocol_id": 1351 + "protocol_id": 1362 }, "minecraft:hanging_roots": { - "protocol_id": 260 + "protocol_id": 266 }, "minecraft:hay_block": { - "protocol_id": 468 + "protocol_id": 475 }, "minecraft:heart_of_the_sea": { - "protocol_id": 1242 + "protocol_id": 1253 }, "minecraft:heart_pottery_sherd": { - "protocol_id": 1352 + "protocol_id": 1363 }, "minecraft:heartbreak_pottery_sherd": { - "protocol_id": 1353 + "protocol_id": 1364 }, "minecraft:heavy_core": { "protocol_id": 87 }, "minecraft:heavy_weighted_pressure_plate": { - "protocol_id": 722 + "protocol_id": 729 }, "minecraft:hoglin_spawn_egg": { - "protocol_id": 1086 + "protocol_id": 1097 }, "minecraft:honey_block": { - "protocol_id": 688 + "protocol_id": 695 }, "minecraft:honey_bottle": { - "protocol_id": 1277 + "protocol_id": 1288 }, "minecraft:honeycomb": { - "protocol_id": 1274 + "protocol_id": 1285 }, "minecraft:honeycomb_block": { - "protocol_id": 1278 + "protocol_id": 1289 }, "minecraft:hopper": { - "protocol_id": 690 + "protocol_id": 697 }, "minecraft:hopper_minecart": { - "protocol_id": 798 + "protocol_id": 805 }, "minecraft:horn_coral": { - "protocol_id": 626 + "protocol_id": 633 }, "minecraft:horn_coral_block": { - "protocol_id": 621 + "protocol_id": 628 }, "minecraft:horn_coral_fan": { - "protocol_id": 636 + "protocol_id": 643 }, "minecraft:horse_spawn_egg": { - "protocol_id": 1087 + "protocol_id": 1098 }, "minecraft:host_armor_trim_smithing_template": { - "protocol_id": 1338 + "protocol_id": 1349 }, "minecraft:howl_pottery_sherd": { - "protocol_id": 1354 + "protocol_id": 1365 }, "minecraft:husk_spawn_egg": { - "protocol_id": 1088 + "protocol_id": 1099 }, "minecraft:ice": { - "protocol_id": 320 + "protocol_id": 326 }, "minecraft:infested_chiseled_stone_bricks": { - "protocol_id": 353 + "protocol_id": 360 }, "minecraft:infested_cobblestone": { - "protocol_id": 349 + "protocol_id": 356 }, "minecraft:infested_cracked_stone_bricks": { - "protocol_id": 352 + "protocol_id": 359 }, "minecraft:infested_deepslate": { - "protocol_id": 354 + "protocol_id": 361 }, "minecraft:infested_mossy_stone_bricks": { - "protocol_id": 351 + "protocol_id": 358 }, "minecraft:infested_stone": { - "protocol_id": 348 + "protocol_id": 355 }, "minecraft:infested_stone_bricks": { - "protocol_id": 350 + "protocol_id": 357 }, "minecraft:ink_sac": { - "protocol_id": 990 + "protocol_id": 1001 }, "minecraft:iron_axe": { - "protocol_id": 867 + "protocol_id": 876 }, "minecraft:iron_bars": { - "protocol_id": 370 + "protocol_id": 377 }, "minecraft:iron_block": { "protocol_id": 90 }, "minecraft:iron_boots": { - "protocol_id": 898 + "protocol_id": 907 }, "minecraft:iron_chestplate": { - "protocol_id": 896 + "protocol_id": 905 }, "minecraft:iron_door": { - "protocol_id": 735 + "protocol_id": 742 }, "minecraft:iron_golem_spawn_egg": { - "protocol_id": 1089 + "protocol_id": 1100 }, "minecraft:iron_helmet": { - "protocol_id": 895 + "protocol_id": 904 }, "minecraft:iron_hoe": { - "protocol_id": 868 + "protocol_id": 877 }, "minecraft:iron_horse_armor": { - "protocol_id": 1176 + "protocol_id": 1187 }, "minecraft:iron_ingot": { - "protocol_id": 842 + "protocol_id": 851 }, "minecraft:iron_leggings": { - "protocol_id": 897 + "protocol_id": 906 }, "minecraft:iron_nugget": { - "protocol_id": 1217 + "protocol_id": 1228 }, "minecraft:iron_ore": { "protocol_id": 66 }, "minecraft:iron_pickaxe": { - "protocol_id": 866 + "protocol_id": 875 }, "minecraft:iron_shovel": { - "protocol_id": 865 + "protocol_id": 874 }, "minecraft:iron_sword": { - "protocol_id": 864 + "protocol_id": 873 }, "minecraft:iron_trapdoor": { - "protocol_id": 756 + "protocol_id": 763 }, "minecraft:item_frame": { - "protocol_id": 1145 + "protocol_id": 1156 }, "minecraft:jack_o_lantern": { - "protocol_id": 339 + "protocol_id": 346 }, "minecraft:jigsaw": { - "protocol_id": 824 + "protocol_id": 831 }, "minecraft:jukebox": { - "protocol_id": 324 + "protocol_id": 331 }, "minecraft:jungle_boat": { - "protocol_id": 809 + "protocol_id": 816 }, "minecraft:jungle_button": { - "protocol_id": 710 + "protocol_id": 717 }, "minecraft:jungle_chest_boat": { - "protocol_id": 810 + "protocol_id": 817 }, "minecraft:jungle_door": { - "protocol_id": 739 + "protocol_id": 746 }, "minecraft:jungle_fence": { - "protocol_id": 328 + "protocol_id": 335 }, "minecraft:jungle_fence_gate": { - "protocol_id": 780 + "protocol_id": 787 }, "minecraft:jungle_hanging_sign": { - "protocol_id": 932 + "protocol_id": 941 }, "minecraft:jungle_leaves": { "protocol_id": 185 @@ -8149,313 +8273,316 @@ "protocol_id": 39 }, "minecraft:jungle_pressure_plate": { - "protocol_id": 726 + "protocol_id": 733 }, "minecraft:jungle_sapling": { "protocol_id": 52 }, "minecraft:jungle_sign": { - "protocol_id": 920 + "protocol_id": 929 }, "minecraft:jungle_slab": { - "protocol_id": 267 + "protocol_id": 273 }, "minecraft:jungle_stairs": { - "protocol_id": 408 + "protocol_id": 415 }, "minecraft:jungle_trapdoor": { - "protocol_id": 760 + "protocol_id": 767 }, "minecraft:jungle_wood": { "protocol_id": 174 }, "minecraft:kelp": { - "protocol_id": 253 + "protocol_id": 257 }, "minecraft:knowledge_book": { - "protocol_id": 1218 + "protocol_id": 1229 }, "minecraft:ladder": { - "protocol_id": 317 + "protocol_id": 323 }, "minecraft:lantern": { - "protocol_id": 1267 + "protocol_id": 1278 }, "minecraft:lapis_block": { "protocol_id": 197 }, "minecraft:lapis_lazuli": { - "protocol_id": 838 + "protocol_id": 847 }, "minecraft:lapis_ore": { "protocol_id": 76 }, "minecraft:large_amethyst_bud": { - "protocol_id": 1313 + "protocol_id": 1324 }, "minecraft:large_fern": { - "protocol_id": 493 + "protocol_id": 500 }, "minecraft:lava_bucket": { - "protocol_id": 943 + "protocol_id": 952 }, "minecraft:lead": { - "protocol_id": 1180 + "protocol_id": 1191 + }, + "minecraft:leaf_litter": { + "protocol_id": 260 }, "minecraft:leather": { - "protocol_id": 946 + "protocol_id": 955 }, "minecraft:leather_boots": { - "protocol_id": 890 + "protocol_id": 899 }, "minecraft:leather_chestplate": { - "protocol_id": 888 + "protocol_id": 897 }, "minecraft:leather_helmet": { - "protocol_id": 887 + "protocol_id": 896 }, "minecraft:leather_horse_armor": { - "protocol_id": 1179 - }, - "minecraft:leather_leggings": { - "protocol_id": 889 - }, - "minecraft:lectern": { - "protocol_id": 693 - }, - "minecraft:lever": { - "protocol_id": 695 - }, - "minecraft:light": { - "protocol_id": 467 - }, - "minecraft:light_blue_banner": { - "protocol_id": 1188 - }, - "minecraft:light_blue_bed": { - "protocol_id": 1016 - }, - "minecraft:light_blue_bundle": { - "protocol_id": 967 - }, - "minecraft:light_blue_candle": { - "protocol_id": 1298 - }, - "minecraft:light_blue_carpet": { - "protocol_id": 472 - }, - "minecraft:light_blue_concrete": { - "protocol_id": 581 - }, - "minecraft:light_blue_concrete_powder": { - "protocol_id": 597 - }, - "minecraft:light_blue_dye": { - "protocol_id": 996 - }, - "minecraft:light_blue_glazed_terracotta": { - "protocol_id": 565 - }, - "minecraft:light_blue_shulker_box": { - "protocol_id": 549 - }, - "minecraft:light_blue_stained_glass": { - "protocol_id": 497 - }, - "minecraft:light_blue_stained_glass_pane": { - "protocol_id": 513 - }, - "minecraft:light_blue_terracotta": { - "protocol_id": 453 - }, - "minecraft:light_blue_wool": { - "protocol_id": 212 - }, - "minecraft:light_gray_banner": { - "protocol_id": 1193 - }, - "minecraft:light_gray_bed": { - "protocol_id": 1021 - }, - "minecraft:light_gray_bundle": { - "protocol_id": 972 - }, - "minecraft:light_gray_candle": { - "protocol_id": 1303 - }, - "minecraft:light_gray_carpet": { - "protocol_id": 477 - }, - "minecraft:light_gray_concrete": { - "protocol_id": 586 - }, - "minecraft:light_gray_concrete_powder": { - "protocol_id": 602 - }, - "minecraft:light_gray_dye": { - "protocol_id": 1001 - }, - "minecraft:light_gray_glazed_terracotta": { - "protocol_id": 570 - }, - "minecraft:light_gray_shulker_box": { - "protocol_id": 554 - }, - "minecraft:light_gray_stained_glass": { - "protocol_id": 502 - }, - "minecraft:light_gray_stained_glass_pane": { - "protocol_id": 518 - }, - "minecraft:light_gray_terracotta": { - "protocol_id": 458 - }, - "minecraft:light_gray_wool": { - "protocol_id": 217 - }, - "minecraft:light_weighted_pressure_plate": { - "protocol_id": 721 - }, - "minecraft:lightning_rod": { - "protocol_id": 696 - }, - "minecraft:lilac": { - "protocol_id": 489 - }, - "minecraft:lily_of_the_valley": { - "protocol_id": 238 - }, - "minecraft:lily_pad": { - "protocol_id": 387 - }, - "minecraft:lime_banner": { "protocol_id": 1190 }, - "minecraft:lime_bed": { - "protocol_id": 1018 + "minecraft:leather_leggings": { + "protocol_id": 898 }, - "minecraft:lime_bundle": { - "protocol_id": 969 + "minecraft:lectern": { + "protocol_id": 700 }, - "minecraft:lime_candle": { - "protocol_id": 1300 + "minecraft:lever": { + "protocol_id": 702 }, - "minecraft:lime_carpet": { + "minecraft:light": { "protocol_id": 474 }, - "minecraft:lime_concrete": { - "protocol_id": 583 + "minecraft:light_blue_banner": { + "protocol_id": 1199 }, - "minecraft:lime_concrete_powder": { - "protocol_id": 599 + "minecraft:light_blue_bed": { + "protocol_id": 1027 }, - "minecraft:lime_dye": { - "protocol_id": 998 + "minecraft:light_blue_bundle": { + "protocol_id": 978 }, - "minecraft:lime_glazed_terracotta": { - "protocol_id": 567 + "minecraft:light_blue_candle": { + "protocol_id": 1309 }, - "minecraft:lime_shulker_box": { - "protocol_id": 551 + "minecraft:light_blue_carpet": { + "protocol_id": 479 }, - "minecraft:lime_stained_glass": { - "protocol_id": 499 + "minecraft:light_blue_concrete": { + "protocol_id": 588 }, - "minecraft:lime_stained_glass_pane": { - "protocol_id": 515 + "minecraft:light_blue_concrete_powder": { + "protocol_id": 604 }, - "minecraft:lime_terracotta": { - "protocol_id": 455 + "minecraft:light_blue_dye": { + "protocol_id": 1007 }, - "minecraft:lime_wool": { - "protocol_id": 214 + "minecraft:light_blue_glazed_terracotta": { + "protocol_id": 572 }, - "minecraft:lingering_potion": { - "protocol_id": 1213 + "minecraft:light_blue_shulker_box": { + "protocol_id": 556 }, - "minecraft:llama_spawn_egg": { - "protocol_id": 1090 + "minecraft:light_blue_stained_glass": { + "protocol_id": 504 }, - "minecraft:lodestone": { - "protocol_id": 1279 + "minecraft:light_blue_stained_glass_pane": { + "protocol_id": 520 }, - "minecraft:loom": { - "protocol_id": 1245 + "minecraft:light_blue_terracotta": { + "protocol_id": 460 }, - "minecraft:mace": { - "protocol_id": 1144 + "minecraft:light_blue_wool": { + "protocol_id": 216 }, - "minecraft:magenta_banner": { - "protocol_id": 1187 + "minecraft:light_gray_banner": { + "protocol_id": 1204 }, - "minecraft:magenta_bed": { - "protocol_id": 1015 + "minecraft:light_gray_bed": { + "protocol_id": 1032 }, - "minecraft:magenta_bundle": { - "protocol_id": 966 + "minecraft:light_gray_bundle": { + "protocol_id": 983 }, - "minecraft:magenta_candle": { - "protocol_id": 1297 + "minecraft:light_gray_candle": { + "protocol_id": 1314 }, - "minecraft:magenta_carpet": { - "protocol_id": 471 + "minecraft:light_gray_carpet": { + "protocol_id": 484 }, - "minecraft:magenta_concrete": { - "protocol_id": 580 + "minecraft:light_gray_concrete": { + "protocol_id": 593 }, - "minecraft:magenta_concrete_powder": { - "protocol_id": 596 + "minecraft:light_gray_concrete_powder": { + "protocol_id": 609 }, - "minecraft:magenta_dye": { - "protocol_id": 995 + "minecraft:light_gray_dye": { + "protocol_id": 1012 }, - "minecraft:magenta_glazed_terracotta": { - "protocol_id": 564 + "minecraft:light_gray_glazed_terracotta": { + "protocol_id": 577 }, - "minecraft:magenta_shulker_box": { - "protocol_id": 548 + "minecraft:light_gray_shulker_box": { + "protocol_id": 561 }, - "minecraft:magenta_stained_glass": { + "minecraft:light_gray_stained_glass": { + "protocol_id": 509 + }, + "minecraft:light_gray_stained_glass_pane": { + "protocol_id": 525 + }, + "minecraft:light_gray_terracotta": { + "protocol_id": 465 + }, + "minecraft:light_gray_wool": { + "protocol_id": 221 + }, + "minecraft:light_weighted_pressure_plate": { + "protocol_id": 728 + }, + "minecraft:lightning_rod": { + "protocol_id": 703 + }, + "minecraft:lilac": { "protocol_id": 496 }, + "minecraft:lily_of_the_valley": { + "protocol_id": 242 + }, + "minecraft:lily_pad": { + "protocol_id": 394 + }, + "minecraft:lime_banner": { + "protocol_id": 1201 + }, + "minecraft:lime_bed": { + "protocol_id": 1029 + }, + "minecraft:lime_bundle": { + "protocol_id": 980 + }, + "minecraft:lime_candle": { + "protocol_id": 1311 + }, + "minecraft:lime_carpet": { + "protocol_id": 481 + }, + "minecraft:lime_concrete": { + "protocol_id": 590 + }, + "minecraft:lime_concrete_powder": { + "protocol_id": 606 + }, + "minecraft:lime_dye": { + "protocol_id": 1009 + }, + "minecraft:lime_glazed_terracotta": { + "protocol_id": 574 + }, + "minecraft:lime_shulker_box": { + "protocol_id": 558 + }, + "minecraft:lime_stained_glass": { + "protocol_id": 506 + }, + "minecraft:lime_stained_glass_pane": { + "protocol_id": 522 + }, + "minecraft:lime_terracotta": { + "protocol_id": 462 + }, + "minecraft:lime_wool": { + "protocol_id": 218 + }, + "minecraft:lingering_potion": { + "protocol_id": 1224 + }, + "minecraft:llama_spawn_egg": { + "protocol_id": 1101 + }, + "minecraft:lodestone": { + "protocol_id": 1290 + }, + "minecraft:loom": { + "protocol_id": 1256 + }, + "minecraft:mace": { + "protocol_id": 1155 + }, + "minecraft:magenta_banner": { + "protocol_id": 1198 + }, + "minecraft:magenta_bed": { + "protocol_id": 1026 + }, + "minecraft:magenta_bundle": { + "protocol_id": 977 + }, + "minecraft:magenta_candle": { + "protocol_id": 1308 + }, + "minecraft:magenta_carpet": { + "protocol_id": 478 + }, + "minecraft:magenta_concrete": { + "protocol_id": 587 + }, + "minecraft:magenta_concrete_powder": { + "protocol_id": 603 + }, + "minecraft:magenta_dye": { + "protocol_id": 1006 + }, + "minecraft:magenta_glazed_terracotta": { + "protocol_id": 571 + }, + "minecraft:magenta_shulker_box": { + "protocol_id": 555 + }, + "minecraft:magenta_stained_glass": { + "protocol_id": 503 + }, "minecraft:magenta_stained_glass_pane": { - "protocol_id": 512 + "protocol_id": 519 }, "minecraft:magenta_terracotta": { - "protocol_id": 452 + "protocol_id": 459 }, "minecraft:magenta_wool": { - "protocol_id": 211 + "protocol_id": 215 }, "minecraft:magma_block": { - "protocol_id": 539 + "protocol_id": 546 }, "minecraft:magma_cream": { - "protocol_id": 1052 + "protocol_id": 1063 }, "minecraft:magma_cube_spawn_egg": { - "protocol_id": 1091 + "protocol_id": 1102 }, "minecraft:mangrove_boat": { - "protocol_id": 819 + "protocol_id": 826 }, "minecraft:mangrove_button": { - "protocol_id": 715 + "protocol_id": 722 }, "minecraft:mangrove_chest_boat": { - "protocol_id": 820 + "protocol_id": 827 }, "minecraft:mangrove_door": { - "protocol_id": 744 + "protocol_id": 751 }, "minecraft:mangrove_fence": { - "protocol_id": 333 + "protocol_id": 340 }, "minecraft:mangrove_fence_gate": { - "protocol_id": 785 + "protocol_id": 792 }, "minecraft:mangrove_hanging_sign": { - "protocol_id": 937 + "protocol_id": 946 }, "minecraft:mangrove_leaves": { "protocol_id": 190 @@ -8467,7 +8594,7 @@ "protocol_id": 44 }, "minecraft:mangrove_pressure_plate": { - "protocol_id": 731 + "protocol_id": 738 }, "minecraft:mangrove_propagule": { "protocol_id": 57 @@ -8476,196 +8603,196 @@ "protocol_id": 143 }, "minecraft:mangrove_sign": { - "protocol_id": 925 + "protocol_id": 934 }, "minecraft:mangrove_slab": { - "protocol_id": 272 + "protocol_id": 278 }, "minecraft:mangrove_stairs": { - "protocol_id": 413 + "protocol_id": 420 }, "minecraft:mangrove_trapdoor": { - "protocol_id": 765 + "protocol_id": 772 }, "minecraft:mangrove_wood": { "protocol_id": 179 }, "minecraft:map": { - "protocol_id": 1152 + "protocol_id": 1163 }, "minecraft:medium_amethyst_bud": { - "protocol_id": 1312 + "protocol_id": 1323 }, "minecraft:melon": { - "protocol_id": 373 + "protocol_id": 380 }, "minecraft:melon_seeds": { - "protocol_id": 1036 + "protocol_id": 1047 }, "minecraft:melon_slice": { - "protocol_id": 1033 + "protocol_id": 1044 }, "minecraft:milk_bucket": { - "protocol_id": 947 + "protocol_id": 956 }, "minecraft:minecart": { - "protocol_id": 794 + "protocol_id": 801 }, "minecraft:miner_pottery_sherd": { - "protocol_id": 1355 + "protocol_id": 1366 }, "minecraft:mojang_banner_pattern": { - "protocol_id": 1249 + "protocol_id": 1260 }, "minecraft:mooshroom_spawn_egg": { - "protocol_id": 1092 + "protocol_id": 1103 }, "minecraft:moss_block": { - "protocol_id": 256 + "protocol_id": 262 }, "minecraft:moss_carpet": { - "protocol_id": 255 + "protocol_id": 261 }, "minecraft:mossy_cobblestone": { - "protocol_id": 302 + "protocol_id": 308 }, "minecraft:mossy_cobblestone_slab": { - "protocol_id": 666 + "protocol_id": 673 }, "minecraft:mossy_cobblestone_stairs": { - "protocol_id": 648 + "protocol_id": 655 }, "minecraft:mossy_cobblestone_wall": { - "protocol_id": 421 + "protocol_id": 428 }, "minecraft:mossy_stone_brick_slab": { - "protocol_id": 664 + "protocol_id": 671 }, "minecraft:mossy_stone_brick_stairs": { - "protocol_id": 646 + "protocol_id": 653 }, "minecraft:mossy_stone_brick_wall": { - "protocol_id": 425 + "protocol_id": 432 }, "minecraft:mossy_stone_bricks": { - "protocol_id": 356 + "protocol_id": 363 }, "minecraft:mourner_pottery_sherd": { - "protocol_id": 1356 + "protocol_id": 1367 }, "minecraft:mud": { "protocol_id": 32 }, "minecraft:mud_brick_slab": { - "protocol_id": 285 + "protocol_id": 291 }, "minecraft:mud_brick_stairs": { - "protocol_id": 385 + "protocol_id": 392 }, "minecraft:mud_brick_wall": { - "protocol_id": 428 + "protocol_id": 435 }, "minecraft:mud_bricks": { - "protocol_id": 360 + "protocol_id": 367 }, "minecraft:muddy_mangrove_roots": { "protocol_id": 144 }, "minecraft:mule_spawn_egg": { - "protocol_id": 1093 + "protocol_id": 1104 }, "minecraft:mushroom_stem": { - "protocol_id": 369 + "protocol_id": 376 }, "minecraft:mushroom_stew": { - "protocol_id": 880 + "protocol_id": 889 }, "minecraft:music_disc_11": { - "protocol_id": 1232 + "protocol_id": 1243 }, "minecraft:music_disc_13": { - "protocol_id": 1220 - }, - "minecraft:music_disc_5": { - "protocol_id": 1236 - }, - "minecraft:music_disc_blocks": { - "protocol_id": 1222 - }, - "minecraft:music_disc_cat": { - "protocol_id": 1221 - }, - "minecraft:music_disc_chirp": { - "protocol_id": 1223 - }, - "minecraft:music_disc_creator": { - "protocol_id": 1224 - }, - "minecraft:music_disc_creator_music_box": { - "protocol_id": 1225 - }, - "minecraft:music_disc_far": { - "protocol_id": 1226 - }, - "minecraft:music_disc_mall": { - "protocol_id": 1227 - }, - "minecraft:music_disc_mellohi": { - "protocol_id": 1228 - }, - "minecraft:music_disc_otherside": { - "protocol_id": 1234 - }, - "minecraft:music_disc_pigstep": { - "protocol_id": 1237 - }, - "minecraft:music_disc_precipice": { - "protocol_id": 1238 - }, - "minecraft:music_disc_relic": { - "protocol_id": 1235 - }, - "minecraft:music_disc_stal": { - "protocol_id": 1229 - }, - "minecraft:music_disc_strad": { - "protocol_id": 1230 - }, - "minecraft:music_disc_wait": { - "protocol_id": 1233 - }, - "minecraft:music_disc_ward": { "protocol_id": 1231 }, - "minecraft:mutton": { - "protocol_id": 1183 + "minecraft:music_disc_5": { + "protocol_id": 1247 }, - "minecraft:mycelium": { - "protocol_id": 386 + "minecraft:music_disc_blocks": { + "protocol_id": 1233 }, - "minecraft:name_tag": { - "protocol_id": 1181 + "minecraft:music_disc_cat": { + "protocol_id": 1232 }, - "minecraft:nautilus_shell": { + "minecraft:music_disc_chirp": { + "protocol_id": 1234 + }, + "minecraft:music_disc_creator": { + "protocol_id": 1235 + }, + "minecraft:music_disc_creator_music_box": { + "protocol_id": 1236 + }, + "minecraft:music_disc_far": { + "protocol_id": 1237 + }, + "minecraft:music_disc_mall": { + "protocol_id": 1238 + }, + "minecraft:music_disc_mellohi": { + "protocol_id": 1239 + }, + "minecraft:music_disc_otherside": { + "protocol_id": 1245 + }, + "minecraft:music_disc_pigstep": { + "protocol_id": 1248 + }, + "minecraft:music_disc_precipice": { + "protocol_id": 1249 + }, + "minecraft:music_disc_relic": { + "protocol_id": 1246 + }, + "minecraft:music_disc_stal": { + "protocol_id": 1240 + }, + "minecraft:music_disc_strad": { "protocol_id": 1241 }, + "minecraft:music_disc_wait": { + "protocol_id": 1244 + }, + "minecraft:music_disc_ward": { + "protocol_id": 1242 + }, + "minecraft:mutton": { + "protocol_id": 1194 + }, + "minecraft:mycelium": { + "protocol_id": 393 + }, + "minecraft:name_tag": { + "protocol_id": 1192 + }, + "minecraft:nautilus_shell": { + "protocol_id": 1252 + }, "minecraft:nether_brick": { - "protocol_id": 1166 + "protocol_id": 1177 }, "minecraft:nether_brick_fence": { - "protocol_id": 391 + "protocol_id": 398 }, "minecraft:nether_brick_slab": { - "protocol_id": 286 + "protocol_id": 292 }, "minecraft:nether_brick_stairs": { - "protocol_id": 392 + "protocol_id": 399 }, "minecraft:nether_brick_wall": { - "protocol_id": 429 + "protocol_id": 436 }, "minecraft:nether_bricks": { - "protocol_id": 388 + "protocol_id": 395 }, "minecraft:nether_gold_ore": { "protocol_id": 80 @@ -8674,82 +8801,82 @@ "protocol_id": 81 }, "minecraft:nether_sprouts": { - "protocol_id": 249 + "protocol_id": 253 }, "minecraft:nether_star": { - "protocol_id": 1161 + "protocol_id": 1172 }, "minecraft:nether_wart": { - "protocol_id": 1046 + "protocol_id": 1057 }, "minecraft:nether_wart_block": { - "protocol_id": 540 + "protocol_id": 547 }, "minecraft:netherite_axe": { - "protocol_id": 877 + "protocol_id": 886 }, "minecraft:netherite_block": { "protocol_id": 94 }, "minecraft:netherite_boots": { - "protocol_id": 910 + "protocol_id": 919 }, "minecraft:netherite_chestplate": { - "protocol_id": 908 + "protocol_id": 917 }, "minecraft:netherite_helmet": { - "protocol_id": 907 + "protocol_id": 916 }, "minecraft:netherite_hoe": { - "protocol_id": 878 + "protocol_id": 887 }, "minecraft:netherite_ingot": { - "protocol_id": 847 + "protocol_id": 856 }, "minecraft:netherite_leggings": { - "protocol_id": 909 + "protocol_id": 918 }, "minecraft:netherite_pickaxe": { - "protocol_id": 876 + "protocol_id": 885 }, "minecraft:netherite_scrap": { - "protocol_id": 848 + "protocol_id": 857 }, "minecraft:netherite_shovel": { - "protocol_id": 875 + "protocol_id": 884 }, "minecraft:netherite_sword": { - "protocol_id": 874 + "protocol_id": 883 }, "minecraft:netherite_upgrade_smithing_template": { - "protocol_id": 1322 + "protocol_id": 1333 }, "minecraft:netherrack": { - "protocol_id": 340 + "protocol_id": 347 }, "minecraft:note_block": { - "protocol_id": 704 + "protocol_id": 711 }, "minecraft:oak_boat": { - "protocol_id": 803 + "protocol_id": 810 }, "minecraft:oak_button": { - "protocol_id": 707 + "protocol_id": 714 }, "minecraft:oak_chest_boat": { - "protocol_id": 804 + "protocol_id": 811 }, "minecraft:oak_door": { - "protocol_id": 736 + "protocol_id": 743 }, "minecraft:oak_fence": { - "protocol_id": 325 + "protocol_id": 332 }, "minecraft:oak_fence_gate": { - "protocol_id": 777 + "protocol_id": 784 }, "minecraft:oak_hanging_sign": { - "protocol_id": 929 + "protocol_id": 938 }, "minecraft:oak_leaves": { "protocol_id": 182 @@ -8761,94 +8888,94 @@ "protocol_id": 36 }, "minecraft:oak_pressure_plate": { - "protocol_id": 723 + "protocol_id": 730 }, "minecraft:oak_sapling": { "protocol_id": 49 }, "minecraft:oak_sign": { - "protocol_id": 917 + "protocol_id": 926 }, "minecraft:oak_slab": { - "protocol_id": 264 + "protocol_id": 270 }, "minecraft:oak_stairs": { - "protocol_id": 405 + "protocol_id": 412 }, "minecraft:oak_trapdoor": { - "protocol_id": 757 + "protocol_id": 764 }, "minecraft:oak_wood": { "protocol_id": 171 }, "minecraft:observer": { - "protocol_id": 689 + "protocol_id": 696 }, "minecraft:obsidian": { - "protocol_id": 303 + "protocol_id": 309 }, "minecraft:ocelot_spawn_egg": { - "protocol_id": 1094 + "protocol_id": 1105 }, "minecraft:ochre_froglight": { - "protocol_id": 1316 + "protocol_id": 1327 }, "minecraft:ominous_bottle": { - "protocol_id": 1384 + "protocol_id": 1395 }, "minecraft:ominous_trial_key": { - "protocol_id": 1382 + "protocol_id": 1393 }, "minecraft:open_eyeblossom": { - "protocol_id": 226 + "protocol_id": 230 }, "minecraft:orange_banner": { - "protocol_id": 1186 + "protocol_id": 1197 }, "minecraft:orange_bed": { - "protocol_id": 1014 + "protocol_id": 1025 }, "minecraft:orange_bundle": { - "protocol_id": 965 + "protocol_id": 976 }, "minecraft:orange_candle": { - "protocol_id": 1296 + "protocol_id": 1307 }, "minecraft:orange_carpet": { - "protocol_id": 470 + "protocol_id": 477 }, "minecraft:orange_concrete": { - "protocol_id": 579 + "protocol_id": 586 }, "minecraft:orange_concrete_powder": { - "protocol_id": 595 + "protocol_id": 602 }, "minecraft:orange_dye": { - "protocol_id": 994 + "protocol_id": 1005 }, "minecraft:orange_glazed_terracotta": { - "protocol_id": 563 + "protocol_id": 570 }, "minecraft:orange_shulker_box": { - "protocol_id": 547 + "protocol_id": 554 }, "minecraft:orange_stained_glass": { - "protocol_id": 495 + "protocol_id": 502 }, "minecraft:orange_stained_glass_pane": { - "protocol_id": 511 + "protocol_id": 518 }, "minecraft:orange_terracotta": { - "protocol_id": 451 + "protocol_id": 458 }, "minecraft:orange_tulip": { - "protocol_id": 233 + "protocol_id": 237 }, "minecraft:orange_wool": { - "protocol_id": 210 + "protocol_id": 214 }, "minecraft:oxeye_daisy": { - "protocol_id": 236 + "protocol_id": 240 }, "minecraft:oxidized_chiseled_copper": { "protocol_id": 101 @@ -8857,16 +8984,16 @@ "protocol_id": 97 }, "minecraft:oxidized_copper_bulb": { - "protocol_id": 1375 + "protocol_id": 1386 }, "minecraft:oxidized_copper_door": { - "protocol_id": 751 + "protocol_id": 758 }, "minecraft:oxidized_copper_grate": { - "protocol_id": 1367 + "protocol_id": 1378 }, "minecraft:oxidized_copper_trapdoor": { - "protocol_id": 772 + "protocol_id": 779 }, "minecraft:oxidized_cut_copper": { "protocol_id": 105 @@ -8878,43 +9005,43 @@ "protocol_id": 109 }, "minecraft:packed_ice": { - "protocol_id": 486 + "protocol_id": 493 }, "minecraft:packed_mud": { - "protocol_id": 359 + "protocol_id": 366 }, "minecraft:painting": { - "protocol_id": 914 + "protocol_id": 923 }, "minecraft:pale_hanging_moss": { - "protocol_id": 258 + "protocol_id": 264 }, "minecraft:pale_moss_block": { - "protocol_id": 259 + "protocol_id": 265 }, "minecraft:pale_moss_carpet": { - "protocol_id": 257 + "protocol_id": 263 }, "minecraft:pale_oak_boat": { - "protocol_id": 817 + "protocol_id": 824 }, "minecraft:pale_oak_button": { - "protocol_id": 714 + "protocol_id": 721 }, "minecraft:pale_oak_chest_boat": { - "protocol_id": 818 + "protocol_id": 825 }, "minecraft:pale_oak_door": { - "protocol_id": 743 + "protocol_id": 750 }, "minecraft:pale_oak_fence": { - "protocol_id": 332 + "protocol_id": 339 }, "minecraft:pale_oak_fence_gate": { - "protocol_id": 784 + "protocol_id": 791 }, "minecraft:pale_oak_hanging_sign": { - "protocol_id": 936 + "protocol_id": 945 }, "minecraft:pale_oak_leaves": { "protocol_id": 189 @@ -8926,214 +9053,214 @@ "protocol_id": 43 }, "minecraft:pale_oak_pressure_plate": { - "protocol_id": 730 + "protocol_id": 737 }, "minecraft:pale_oak_sapling": { "protocol_id": 56 }, "minecraft:pale_oak_sign": { - "protocol_id": 924 + "protocol_id": 933 }, "minecraft:pale_oak_slab": { - "protocol_id": 271 + "protocol_id": 277 }, "minecraft:pale_oak_stairs": { - "protocol_id": 412 + "protocol_id": 419 }, "minecraft:pale_oak_trapdoor": { - "protocol_id": 764 + "protocol_id": 771 }, "minecraft:pale_oak_wood": { "protocol_id": 177 }, "minecraft:panda_spawn_egg": { - "protocol_id": 1095 + "protocol_id": 1106 }, "minecraft:paper": { - "protocol_id": 957 + "protocol_id": 966 }, "minecraft:parrot_spawn_egg": { - "protocol_id": 1096 + "protocol_id": 1107 }, "minecraft:pearlescent_froglight": { - "protocol_id": 1318 + "protocol_id": 1329 }, "minecraft:peony": { - "protocol_id": 491 + "protocol_id": 498 }, "minecraft:petrified_oak_slab": { - "protocol_id": 281 + "protocol_id": 287 }, "minecraft:phantom_membrane": { - "protocol_id": 801 + "protocol_id": 808 }, "minecraft:phantom_spawn_egg": { - "protocol_id": 1097 + "protocol_id": 1108 }, "minecraft:pig_spawn_egg": { - "protocol_id": 1098 + "protocol_id": 1109 }, "minecraft:piglin_banner_pattern": { - "protocol_id": 1251 + "protocol_id": 1262 }, "minecraft:piglin_brute_spawn_egg": { - "protocol_id": 1100 + "protocol_id": 1111 }, "minecraft:piglin_head": { - "protocol_id": 1160 + "protocol_id": 1171 }, "minecraft:piglin_spawn_egg": { - "protocol_id": 1099 + "protocol_id": 1110 }, "minecraft:pillager_spawn_egg": { - "protocol_id": 1101 + "protocol_id": 1112 }, "minecraft:pink_banner": { - "protocol_id": 1191 + "protocol_id": 1202 }, "minecraft:pink_bed": { - "protocol_id": 1019 + "protocol_id": 1030 }, "minecraft:pink_bundle": { - "protocol_id": 970 + "protocol_id": 981 }, "minecraft:pink_candle": { - "protocol_id": 1301 + "protocol_id": 1312 }, "minecraft:pink_carpet": { - "protocol_id": 475 + "protocol_id": 482 }, "minecraft:pink_concrete": { - "protocol_id": 584 + "protocol_id": 591 }, "minecraft:pink_concrete_powder": { - "protocol_id": 600 + "protocol_id": 607 }, "minecraft:pink_dye": { - "protocol_id": 999 + "protocol_id": 1010 }, "minecraft:pink_glazed_terracotta": { - "protocol_id": 568 + "protocol_id": 575 }, "minecraft:pink_petals": { - "protocol_id": 254 + "protocol_id": 258 }, "minecraft:pink_shulker_box": { - "protocol_id": 552 + "protocol_id": 559 }, "minecraft:pink_stained_glass": { - "protocol_id": 500 + "protocol_id": 507 }, "minecraft:pink_stained_glass_pane": { - "protocol_id": 516 + "protocol_id": 523 }, "minecraft:pink_terracotta": { - "protocol_id": 456 + "protocol_id": 463 }, "minecraft:pink_tulip": { - "protocol_id": 235 + "protocol_id": 239 }, "minecraft:pink_wool": { - "protocol_id": 215 + "protocol_id": 219 }, "minecraft:piston": { - "protocol_id": 685 + "protocol_id": 692 }, "minecraft:pitcher_plant": { - "protocol_id": 241 + "protocol_id": 245 }, "minecraft:pitcher_pod": { - "protocol_id": 1205 + "protocol_id": 1216 }, "minecraft:player_head": { - "protocol_id": 1156 + "protocol_id": 1167 }, "minecraft:plenty_pottery_sherd": { - "protocol_id": 1357 + "protocol_id": 1368 }, "minecraft:podzol": { "protocol_id": 30 }, "minecraft:pointed_dripstone": { - "protocol_id": 1315 + "protocol_id": 1326 }, "minecraft:poisonous_potato": { - "protocol_id": 1151 + "protocol_id": 1162 }, "minecraft:polar_bear_spawn_egg": { - "protocol_id": 1102 + "protocol_id": 1113 }, "minecraft:polished_andesite": { "protocol_id": 7 }, "minecraft:polished_andesite_slab": { - "protocol_id": 673 + "protocol_id": 680 }, "minecraft:polished_andesite_stairs": { - "protocol_id": 656 + "protocol_id": 663 }, "minecraft:polished_basalt": { - "protocol_id": 344 + "protocol_id": 351 }, "minecraft:polished_blackstone": { - "protocol_id": 1285 + "protocol_id": 1296 }, "minecraft:polished_blackstone_brick_slab": { - "protocol_id": 1290 + "protocol_id": 1301 }, "minecraft:polished_blackstone_brick_stairs": { - "protocol_id": 1291 + "protocol_id": 1302 }, "minecraft:polished_blackstone_brick_wall": { - "protocol_id": 437 + "protocol_id": 444 }, "minecraft:polished_blackstone_bricks": { - "protocol_id": 1289 + "protocol_id": 1300 }, "minecraft:polished_blackstone_button": { - "protocol_id": 706 + "protocol_id": 713 }, "minecraft:polished_blackstone_pressure_plate": { - "protocol_id": 720 + "protocol_id": 727 }, "minecraft:polished_blackstone_slab": { - "protocol_id": 1286 + "protocol_id": 1297 }, "minecraft:polished_blackstone_stairs": { - "protocol_id": 1287 + "protocol_id": 1298 }, "minecraft:polished_blackstone_wall": { - "protocol_id": 436 + "protocol_id": 443 }, "minecraft:polished_deepslate": { "protocol_id": 10 }, "minecraft:polished_deepslate_slab": { - "protocol_id": 676 + "protocol_id": 683 }, "minecraft:polished_deepslate_stairs": { - "protocol_id": 659 + "protocol_id": 666 }, "minecraft:polished_deepslate_wall": { - "protocol_id": 439 + "protocol_id": 446 }, "minecraft:polished_diorite": { "protocol_id": 5 }, "minecraft:polished_diorite_slab": { - "protocol_id": 665 + "protocol_id": 672 }, "minecraft:polished_diorite_stairs": { - "protocol_id": 647 + "protocol_id": 654 }, "minecraft:polished_granite": { "protocol_id": 3 }, "minecraft:polished_granite_slab": { - "protocol_id": 662 + "protocol_id": 669 }, "minecraft:polished_granite_stairs": { - "protocol_id": 644 + "protocol_id": 651 }, "minecraft:polished_tuff": { "protocol_id": 17 @@ -9148,340 +9275,340 @@ "protocol_id": 20 }, "minecraft:popped_chorus_fruit": { - "protocol_id": 1203 + "protocol_id": 1214 }, "minecraft:poppy": { - "protocol_id": 228 + "protocol_id": 232 }, "minecraft:porkchop": { - "protocol_id": 912 + "protocol_id": 921 }, "minecraft:potato": { - "protocol_id": 1149 + "protocol_id": 1160 }, "minecraft:potion": { - "protocol_id": 1048 + "protocol_id": 1059 }, "minecraft:powder_snow_bucket": { - "protocol_id": 944 + "protocol_id": 953 }, "minecraft:powered_rail": { - "protocol_id": 789 + "protocol_id": 796 }, "minecraft:prismarine": { - "protocol_id": 526 + "protocol_id": 533 }, "minecraft:prismarine_brick_slab": { - "protocol_id": 292 + "protocol_id": 298 }, "minecraft:prismarine_brick_stairs": { - "protocol_id": 530 + "protocol_id": 537 }, "minecraft:prismarine_bricks": { - "protocol_id": 527 + "protocol_id": 534 }, "minecraft:prismarine_crystals": { - "protocol_id": 1169 + "protocol_id": 1180 }, "minecraft:prismarine_shard": { - "protocol_id": 1168 + "protocol_id": 1179 }, "minecraft:prismarine_slab": { - "protocol_id": 291 + "protocol_id": 297 }, "minecraft:prismarine_stairs": { - "protocol_id": 529 + "protocol_id": 536 }, "minecraft:prismarine_wall": { - "protocol_id": 423 + "protocol_id": 430 }, "minecraft:prize_pottery_sherd": { - "protocol_id": 1358 + "protocol_id": 1369 }, "minecraft:pufferfish": { - "protocol_id": 987 + "protocol_id": 998 }, "minecraft:pufferfish_bucket": { - "protocol_id": 948 + "protocol_id": 957 }, "minecraft:pufferfish_spawn_egg": { - "protocol_id": 1103 + "protocol_id": 1114 }, "minecraft:pumpkin": { - "protocol_id": 337 + "protocol_id": 344 }, "minecraft:pumpkin_pie": { - "protocol_id": 1162 - }, - "minecraft:pumpkin_seeds": { - "protocol_id": 1035 - }, - "minecraft:purple_banner": { - "protocol_id": 1195 - }, - "minecraft:purple_bed": { - "protocol_id": 1023 - }, - "minecraft:purple_bundle": { - "protocol_id": 974 - }, - "minecraft:purple_candle": { - "protocol_id": 1305 - }, - "minecraft:purple_carpet": { - "protocol_id": 479 - }, - "minecraft:purple_concrete": { - "protocol_id": 588 - }, - "minecraft:purple_concrete_powder": { - "protocol_id": 604 - }, - "minecraft:purple_dye": { - "protocol_id": 1003 - }, - "minecraft:purple_glazed_terracotta": { - "protocol_id": 572 - }, - "minecraft:purple_shulker_box": { - "protocol_id": 556 - }, - "minecraft:purple_stained_glass": { - "protocol_id": 504 - }, - "minecraft:purple_stained_glass_pane": { - "protocol_id": 520 - }, - "minecraft:purple_terracotta": { - "protocol_id": 460 - }, - "minecraft:purple_wool": { - "protocol_id": 219 - }, - "minecraft:purpur_block": { - "protocol_id": 308 - }, - "minecraft:purpur_pillar": { - "protocol_id": 309 - }, - "minecraft:purpur_slab": { - "protocol_id": 290 - }, - "minecraft:purpur_stairs": { - "protocol_id": 310 - }, - "minecraft:quartz": { - "protocol_id": 839 - }, - "minecraft:quartz_block": { - "protocol_id": 446 - }, - "minecraft:quartz_bricks": { - "protocol_id": 447 - }, - "minecraft:quartz_pillar": { - "protocol_id": 448 - }, - "minecraft:quartz_slab": { - "protocol_id": 287 - }, - "minecraft:quartz_stairs": { - "protocol_id": 449 - }, - "minecraft:rabbit": { - "protocol_id": 1170 - }, - "minecraft:rabbit_foot": { "protocol_id": 1173 }, + "minecraft:pumpkin_seeds": { + "protocol_id": 1046 + }, + "minecraft:purple_banner": { + "protocol_id": 1206 + }, + "minecraft:purple_bed": { + "protocol_id": 1034 + }, + "minecraft:purple_bundle": { + "protocol_id": 985 + }, + "minecraft:purple_candle": { + "protocol_id": 1316 + }, + "minecraft:purple_carpet": { + "protocol_id": 486 + }, + "minecraft:purple_concrete": { + "protocol_id": 595 + }, + "minecraft:purple_concrete_powder": { + "protocol_id": 611 + }, + "minecraft:purple_dye": { + "protocol_id": 1014 + }, + "minecraft:purple_glazed_terracotta": { + "protocol_id": 579 + }, + "minecraft:purple_shulker_box": { + "protocol_id": 563 + }, + "minecraft:purple_stained_glass": { + "protocol_id": 511 + }, + "minecraft:purple_stained_glass_pane": { + "protocol_id": 527 + }, + "minecraft:purple_terracotta": { + "protocol_id": 467 + }, + "minecraft:purple_wool": { + "protocol_id": 223 + }, + "minecraft:purpur_block": { + "protocol_id": 314 + }, + "minecraft:purpur_pillar": { + "protocol_id": 315 + }, + "minecraft:purpur_slab": { + "protocol_id": 296 + }, + "minecraft:purpur_stairs": { + "protocol_id": 316 + }, + "minecraft:quartz": { + "protocol_id": 848 + }, + "minecraft:quartz_block": { + "protocol_id": 453 + }, + "minecraft:quartz_bricks": { + "protocol_id": 454 + }, + "minecraft:quartz_pillar": { + "protocol_id": 455 + }, + "minecraft:quartz_slab": { + "protocol_id": 293 + }, + "minecraft:quartz_stairs": { + "protocol_id": 456 + }, + "minecraft:rabbit": { + "protocol_id": 1181 + }, + "minecraft:rabbit_foot": { + "protocol_id": 1184 + }, "minecraft:rabbit_hide": { - "protocol_id": 1174 + "protocol_id": 1185 }, "minecraft:rabbit_spawn_egg": { - "protocol_id": 1104 + "protocol_id": 1115 }, "minecraft:rabbit_stew": { - "protocol_id": 1172 + "protocol_id": 1183 }, "minecraft:rail": { - "protocol_id": 791 + "protocol_id": 798 }, "minecraft:raiser_armor_trim_smithing_template": { - "protocol_id": 1337 + "protocol_id": 1348 }, "minecraft:ravager_spawn_egg": { - "protocol_id": 1105 + "protocol_id": 1116 }, "minecraft:raw_copper": { - "protocol_id": 843 + "protocol_id": 852 }, "minecraft:raw_copper_block": { "protocol_id": 85 }, "minecraft:raw_gold": { - "protocol_id": 845 + "protocol_id": 854 }, "minecraft:raw_gold_block": { "protocol_id": 86 }, "minecraft:raw_iron": { - "protocol_id": 841 + "protocol_id": 850 }, "minecraft:raw_iron_block": { "protocol_id": 84 }, "minecraft:recovery_compass": { - "protocol_id": 962 + "protocol_id": 973 }, "minecraft:red_banner": { - "protocol_id": 1199 + "protocol_id": 1210 }, "minecraft:red_bed": { - "protocol_id": 1027 + "protocol_id": 1038 }, "minecraft:red_bundle": { - "protocol_id": 978 + "protocol_id": 989 }, "minecraft:red_candle": { - "protocol_id": 1309 + "protocol_id": 1320 }, "minecraft:red_carpet": { - "protocol_id": 483 + "protocol_id": 490 }, "minecraft:red_concrete": { - "protocol_id": 592 + "protocol_id": 599 }, "minecraft:red_concrete_powder": { - "protocol_id": 608 + "protocol_id": 615 }, "minecraft:red_dye": { - "protocol_id": 1007 + "protocol_id": 1018 }, "minecraft:red_glazed_terracotta": { - "protocol_id": 576 + "protocol_id": 583 }, "minecraft:red_mushroom": { - "protocol_id": 244 + "protocol_id": 248 }, "minecraft:red_mushroom_block": { - "protocol_id": 368 + "protocol_id": 375 }, "minecraft:red_nether_brick_slab": { - "protocol_id": 672 + "protocol_id": 679 }, "minecraft:red_nether_brick_stairs": { - "protocol_id": 655 + "protocol_id": 662 }, "minecraft:red_nether_brick_wall": { - "protocol_id": 431 + "protocol_id": 438 }, "minecraft:red_nether_bricks": { - "protocol_id": 542 + "protocol_id": 549 }, "minecraft:red_sand": { "protocol_id": 62 }, "minecraft:red_sandstone": { - "protocol_id": 533 + "protocol_id": 540 }, "minecraft:red_sandstone_slab": { - "protocol_id": 288 + "protocol_id": 294 }, "minecraft:red_sandstone_stairs": { - "protocol_id": 536 + "protocol_id": 543 }, "minecraft:red_sandstone_wall": { - "protocol_id": 424 + "protocol_id": 431 }, "minecraft:red_shulker_box": { - "protocol_id": 560 + "protocol_id": 567 }, "minecraft:red_stained_glass": { - "protocol_id": 508 + "protocol_id": 515 }, "minecraft:red_stained_glass_pane": { - "protocol_id": 524 + "protocol_id": 531 }, "minecraft:red_terracotta": { - "protocol_id": 464 + "protocol_id": 471 }, "minecraft:red_tulip": { - "protocol_id": 232 + "protocol_id": 236 }, "minecraft:red_wool": { - "protocol_id": 223 + "protocol_id": 227 }, "minecraft:redstone": { - "protocol_id": 680 + "protocol_id": 687 }, "minecraft:redstone_block": { - "protocol_id": 682 + "protocol_id": 689 }, "minecraft:redstone_lamp": { - "protocol_id": 703 + "protocol_id": 710 }, "minecraft:redstone_ore": { "protocol_id": 72 }, "minecraft:redstone_torch": { - "protocol_id": 681 + "protocol_id": 688 }, "minecraft:reinforced_deepslate": { - "protocol_id": 366 + "protocol_id": 373 }, "minecraft:repeater": { - "protocol_id": 683 + "protocol_id": 690 }, "minecraft:repeating_command_block": { - "protocol_id": 537 + "protocol_id": 544 }, "minecraft:resin_block": { - "protocol_id": 377 + "protocol_id": 384 }, "minecraft:resin_brick": { - "protocol_id": 1167 + "protocol_id": 1178 }, "minecraft:resin_brick_slab": { - "protocol_id": 380 + "protocol_id": 387 }, "minecraft:resin_brick_stairs": { - "protocol_id": 379 + "protocol_id": 386 }, "minecraft:resin_brick_wall": { - "protocol_id": 381 + "protocol_id": 388 }, "minecraft:resin_bricks": { - "protocol_id": 378 + "protocol_id": 385 }, "minecraft:resin_clump": { - "protocol_id": 376 + "protocol_id": 383 }, "minecraft:respawn_anchor": { - "protocol_id": 1293 + "protocol_id": 1304 }, "minecraft:rib_armor_trim_smithing_template": { - "protocol_id": 1332 + "protocol_id": 1343 }, "minecraft:rooted_dirt": { "protocol_id": 31 }, "minecraft:rose_bush": { - "protocol_id": 490 + "protocol_id": 497 }, "minecraft:rotten_flesh": { - "protocol_id": 1041 + "protocol_id": 1052 }, "minecraft:saddle": { - "protocol_id": 793 + "protocol_id": 800 }, "minecraft:salmon": { - "protocol_id": 985 + "protocol_id": 996 }, "minecraft:salmon_bucket": { - "protocol_id": 949 + "protocol_id": 958 }, "minecraft:salmon_spawn_egg": { - "protocol_id": 1106 + "protocol_id": 1117 }, "minecraft:sand": { "protocol_id": 59 @@ -9490,241 +9617,244 @@ "protocol_id": 198 }, "minecraft:sandstone_slab": { - "protocol_id": 279 + "protocol_id": 285 }, "minecraft:sandstone_stairs": { - "protocol_id": 402 + "protocol_id": 409 }, "minecraft:sandstone_wall": { - "protocol_id": 432 + "protocol_id": 439 }, "minecraft:scaffolding": { - "protocol_id": 679 + "protocol_id": 686 }, "minecraft:scrape_pottery_sherd": { - "protocol_id": 1359 + "protocol_id": 1370 }, "minecraft:sculk": { - "protocol_id": 393 + "protocol_id": 400 }, "minecraft:sculk_catalyst": { - "protocol_id": 395 + "protocol_id": 402 }, "minecraft:sculk_sensor": { - "protocol_id": 698 + "protocol_id": 705 }, "minecraft:sculk_shrieker": { - "protocol_id": 396 + "protocol_id": 403 }, "minecraft:sculk_vein": { - "protocol_id": 394 + "protocol_id": 401 }, "minecraft:sea_lantern": { - "protocol_id": 532 + "protocol_id": 539 }, "minecraft:sea_pickle": { - "protocol_id": 208 + "protocol_id": 212 }, "minecraft:seagrass": { - "protocol_id": 207 + "protocol_id": 211 }, "minecraft:sentry_armor_trim_smithing_template": { - "protocol_id": 1323 + "protocol_id": 1334 }, "minecraft:shaper_armor_trim_smithing_template": { - "protocol_id": 1335 + "protocol_id": 1346 }, "minecraft:sheaf_pottery_sherd": { - "protocol_id": 1360 + "protocol_id": 1371 }, "minecraft:shears": { - "protocol_id": 1032 + "protocol_id": 1043 }, "minecraft:sheep_spawn_egg": { - "protocol_id": 1107 + "protocol_id": 1118 }, "minecraft:shelter_pottery_sherd": { - "protocol_id": 1361 + "protocol_id": 1372 }, "minecraft:shield": { - "protocol_id": 1214 + "protocol_id": 1225 + }, + "minecraft:short_dry_grass": { + "protocol_id": 209 }, "minecraft:short_grass": { "protocol_id": 202 }, "minecraft:shroomlight": { - "protocol_id": 1273 + "protocol_id": 1284 }, "minecraft:shulker_box": { - "protocol_id": 545 + "protocol_id": 552 }, "minecraft:shulker_shell": { - "protocol_id": 1216 + "protocol_id": 1227 }, "minecraft:shulker_spawn_egg": { - "protocol_id": 1108 + "protocol_id": 1119 }, "minecraft:silence_armor_trim_smithing_template": { - "protocol_id": 1336 + "protocol_id": 1347 }, "minecraft:silverfish_spawn_egg": { - "protocol_id": 1109 + "protocol_id": 1120 }, "minecraft:skeleton_horse_spawn_egg": { - "protocol_id": 1111 + "protocol_id": 1122 }, "minecraft:skeleton_skull": { - "protocol_id": 1154 + "protocol_id": 1165 }, "minecraft:skeleton_spawn_egg": { - "protocol_id": 1110 + "protocol_id": 1121 }, "minecraft:skull_banner_pattern": { - "protocol_id": 1248 - }, - "minecraft:skull_pottery_sherd": { - "protocol_id": 1362 - }, - "minecraft:slime_ball": { - "protocol_id": 959 - }, - "minecraft:slime_block": { - "protocol_id": 687 - }, - "minecraft:slime_spawn_egg": { - "protocol_id": 1112 - }, - "minecraft:small_amethyst_bud": { - "protocol_id": 1311 - }, - "minecraft:small_dripleaf": { - "protocol_id": 262 - }, - "minecraft:smithing_table": { - "protocol_id": 1264 - }, - "minecraft:smoker": { "protocol_id": 1259 }, + "minecraft:skull_pottery_sherd": { + "protocol_id": 1373 + }, + "minecraft:slime_ball": { + "protocol_id": 968 + }, + "minecraft:slime_block": { + "protocol_id": 694 + }, + "minecraft:slime_spawn_egg": { + "protocol_id": 1123 + }, + "minecraft:small_amethyst_bud": { + "protocol_id": 1322 + }, + "minecraft:small_dripleaf": { + "protocol_id": 268 + }, + "minecraft:smithing_table": { + "protocol_id": 1275 + }, + "minecraft:smoker": { + "protocol_id": 1270 + }, "minecraft:smooth_basalt": { - "protocol_id": 345 + "protocol_id": 352 }, "minecraft:smooth_quartz": { - "protocol_id": 294 + "protocol_id": 300 }, "minecraft:smooth_quartz_slab": { - "protocol_id": 669 + "protocol_id": 676 }, "minecraft:smooth_quartz_stairs": { - "protocol_id": 652 + "protocol_id": 659 }, "minecraft:smooth_red_sandstone": { - "protocol_id": 295 + "protocol_id": 301 }, "minecraft:smooth_red_sandstone_slab": { - "protocol_id": 663 + "protocol_id": 670 }, "minecraft:smooth_red_sandstone_stairs": { - "protocol_id": 645 + "protocol_id": 652 }, "minecraft:smooth_sandstone": { - "protocol_id": 296 + "protocol_id": 302 }, "minecraft:smooth_sandstone_slab": { - "protocol_id": 668 + "protocol_id": 675 }, "minecraft:smooth_sandstone_stairs": { - "protocol_id": 651 + "protocol_id": 658 }, "minecraft:smooth_stone": { - "protocol_id": 297 + "protocol_id": 303 }, "minecraft:smooth_stone_slab": { - "protocol_id": 278 + "protocol_id": 284 }, "minecraft:sniffer_egg": { - "protocol_id": 611 + "protocol_id": 618 }, "minecraft:sniffer_spawn_egg": { - "protocol_id": 1113 + "protocol_id": 1124 }, "minecraft:snort_pottery_sherd": { - "protocol_id": 1363 + "protocol_id": 1374 }, "minecraft:snout_armor_trim_smithing_template": { - "protocol_id": 1331 + "protocol_id": 1342 }, "minecraft:snow": { - "protocol_id": 319 + "protocol_id": 325 }, "minecraft:snow_block": { - "protocol_id": 321 + "protocol_id": 327 }, "minecraft:snow_golem_spawn_egg": { - "protocol_id": 1114 + "protocol_id": 1125 }, "minecraft:snowball": { - "protocol_id": 945 + "protocol_id": 954 }, "minecraft:soul_campfire": { - "protocol_id": 1272 + "protocol_id": 1283 }, "minecraft:soul_lantern": { - "protocol_id": 1268 + "protocol_id": 1279 }, "minecraft:soul_sand": { - "protocol_id": 341 + "protocol_id": 348 }, "minecraft:soul_soil": { - "protocol_id": 342 + "protocol_id": 349 }, "minecraft:soul_torch": { - "protocol_id": 346 + "protocol_id": 353 }, "minecraft:spawner": { - "protocol_id": 311 + "protocol_id": 317 }, "minecraft:spectral_arrow": { - "protocol_id": 1211 + "protocol_id": 1222 }, "minecraft:spider_eye": { - "protocol_id": 1049 + "protocol_id": 1060 }, "minecraft:spider_spawn_egg": { - "protocol_id": 1115 + "protocol_id": 1126 }, "minecraft:spire_armor_trim_smithing_template": { - "protocol_id": 1333 + "protocol_id": 1344 }, "minecraft:splash_potion": { - "protocol_id": 1210 + "protocol_id": 1221 }, "minecraft:sponge": { "protocol_id": 193 }, "minecraft:spore_blossom": { - "protocol_id": 242 + "protocol_id": 246 }, "minecraft:spruce_boat": { - "protocol_id": 805 + "protocol_id": 812 }, "minecraft:spruce_button": { - "protocol_id": 708 + "protocol_id": 715 }, "minecraft:spruce_chest_boat": { - "protocol_id": 806 + "protocol_id": 813 }, "minecraft:spruce_door": { - "protocol_id": 737 + "protocol_id": 744 }, "minecraft:spruce_fence": { - "protocol_id": 326 + "protocol_id": 333 }, "minecraft:spruce_fence_gate": { - "protocol_id": 778 + "protocol_id": 785 }, "minecraft:spruce_hanging_sign": { - "protocol_id": 930 + "protocol_id": 939 }, "minecraft:spruce_leaves": { "protocol_id": 183 @@ -9736,91 +9866,91 @@ "protocol_id": 37 }, "minecraft:spruce_pressure_plate": { - "protocol_id": 724 + "protocol_id": 731 }, "minecraft:spruce_sapling": { "protocol_id": 50 }, "minecraft:spruce_sign": { - "protocol_id": 918 + "protocol_id": 927 }, "minecraft:spruce_slab": { - "protocol_id": 265 + "protocol_id": 271 }, "minecraft:spruce_stairs": { - "protocol_id": 406 + "protocol_id": 413 }, "minecraft:spruce_trapdoor": { - "protocol_id": 758 + "protocol_id": 765 }, "minecraft:spruce_wood": { "protocol_id": 172 }, "minecraft:spyglass": { - "protocol_id": 982 + "protocol_id": 993 }, "minecraft:squid_spawn_egg": { - "protocol_id": 1116 + "protocol_id": 1127 }, "minecraft:stick": { - "protocol_id": 879 + "protocol_id": 888 }, "minecraft:sticky_piston": { - "protocol_id": 686 + "protocol_id": 693 }, "minecraft:stone": { "protocol_id": 1 }, "minecraft:stone_axe": { - "protocol_id": 857 + "protocol_id": 866 }, "minecraft:stone_brick_slab": { - "protocol_id": 284 + "protocol_id": 290 }, "minecraft:stone_brick_stairs": { - "protocol_id": 384 + "protocol_id": 391 }, "minecraft:stone_brick_wall": { - "protocol_id": 427 + "protocol_id": 434 }, "minecraft:stone_bricks": { - "protocol_id": 355 + "protocol_id": 362 }, "minecraft:stone_button": { - "protocol_id": 705 + "protocol_id": 712 }, "minecraft:stone_hoe": { - "protocol_id": 858 + "protocol_id": 867 }, "minecraft:stone_pickaxe": { - "protocol_id": 856 + "protocol_id": 865 }, "minecraft:stone_pressure_plate": { - "protocol_id": 719 + "protocol_id": 726 }, "minecraft:stone_shovel": { - "protocol_id": 855 + "protocol_id": 864 }, "minecraft:stone_slab": { - "protocol_id": 277 + "protocol_id": 283 }, "minecraft:stone_stairs": { - "protocol_id": 650 + "protocol_id": 657 }, "minecraft:stone_sword": { - "protocol_id": 854 + "protocol_id": 863 }, "minecraft:stonecutter": { - "protocol_id": 1265 + "protocol_id": 1276 }, "minecraft:stray_spawn_egg": { - "protocol_id": 1117 + "protocol_id": 1128 }, "minecraft:strider_spawn_egg": { - "protocol_id": 1118 + "protocol_id": 1129 }, "minecraft:string": { - "protocol_id": 881 + "protocol_id": 890 }, "minecraft:stripped_acacia_log": { "protocol_id": 152 @@ -9892,19 +10022,19 @@ "protocol_id": 158 }, "minecraft:structure_block": { - "protocol_id": 823 + "protocol_id": 830 }, "minecraft:structure_void": { - "protocol_id": 544 + "protocol_id": 551 }, "minecraft:sugar": { - "protocol_id": 1011 + "protocol_id": 1022 }, "minecraft:sugar_cane": { - "protocol_id": 252 + "protocol_id": 256 }, "minecraft:sunflower": { - "protocol_id": 488 + "protocol_id": 495 }, "minecraft:suspicious_gravel": { "protocol_id": 61 @@ -9913,88 +10043,97 @@ "protocol_id": 60 }, "minecraft:suspicious_stew": { - "protocol_id": 1244 + "protocol_id": 1255 }, "minecraft:sweet_berries": { - "protocol_id": 1269 + "protocol_id": 1280 }, "minecraft:tadpole_bucket": { - "protocol_id": 953 + "protocol_id": 962 }, "minecraft:tadpole_spawn_egg": { - "protocol_id": 1119 + "protocol_id": 1130 + }, + "minecraft:tall_dry_grass": { + "protocol_id": 210 }, "minecraft:tall_grass": { - "protocol_id": 492 + "protocol_id": 499 }, "minecraft:target": { - "protocol_id": 694 + "protocol_id": 701 }, "minecraft:terracotta": { - "protocol_id": 485 + "protocol_id": 492 + }, + "minecraft:test_block": { + "protocol_id": 832 + }, + "minecraft:test_instance_block": { + "protocol_id": 833 }, "minecraft:tide_armor_trim_smithing_template": { - "protocol_id": 1330 + "protocol_id": 1341 }, "minecraft:tinted_glass": { "protocol_id": 196 }, "minecraft:tipped_arrow": { - "protocol_id": 1212 + "protocol_id": 1223 }, "minecraft:tnt": { - "protocol_id": 702 + "protocol_id": 709 }, "minecraft:tnt_minecart": { - "protocol_id": 797 + "protocol_id": 804 }, "minecraft:torch": { - "protocol_id": 304 + "protocol_id": 310 }, "minecraft:torchflower": { - "protocol_id": 240 + "protocol_id": 244 }, "minecraft:torchflower_seeds": { - "protocol_id": 1204 - }, - "minecraft:totem_of_undying": { "protocol_id": 1215 }, + "minecraft:totem_of_undying": { + "protocol_id": 1226 + }, "minecraft:trader_llama_spawn_egg": { - "protocol_id": 1120 + "protocol_id": 1131 }, "minecraft:trapped_chest": { - "protocol_id": 701 + "protocol_id": 708 }, "minecraft:trial_key": { - "protocol_id": 1381 + "protocol_id": 1392 }, "minecraft:trial_spawner": { - "protocol_id": 1380 + "protocol_id": 1391 }, "minecraft:trident": { - "protocol_id": 1240 + "protocol_id": 1251 }, "minecraft:tripwire_hook": { - "protocol_id": 700 + "protocol_id": 707 }, "minecraft:tropical_fish": { - "protocol_id": 986 + "protocol_id": 997 }, "minecraft:tropical_fish_bucket": { - "protocol_id": 951 + "protocol_id": 960 }, "minecraft:tropical_fish_spawn_egg": { - "protocol_id": 1121 + "protocol_id": 1132 }, "minecraft:tube_coral": { - "protocol_id": 622 + "protocol_id": 629 }, "minecraft:tube_coral_block": { - "protocol_id": 617 + "protocol_id": 624 }, "minecraft:tube_coral_fan": { - "protocol_id": 632 + "protocol_id": 639 }, "minecraft:tuff": { "protocol_id": 12 @@ -10021,70 +10160,70 @@ "protocol_id": 15 }, "minecraft:turtle_egg": { - "protocol_id": 610 + "protocol_id": 617 }, "minecraft:turtle_helmet": { - "protocol_id": 825 + "protocol_id": 834 }, "minecraft:turtle_scute": { - "protocol_id": 826 + "protocol_id": 835 }, "minecraft:turtle_spawn_egg": { - "protocol_id": 1122 + "protocol_id": 1133 }, "minecraft:twisting_vines": { - "protocol_id": 251 + "protocol_id": 255 }, "minecraft:vault": { - "protocol_id": 1383 + "protocol_id": 1394 }, "minecraft:verdant_froglight": { - "protocol_id": 1317 + "protocol_id": 1328 }, "minecraft:vex_armor_trim_smithing_template": { - "protocol_id": 1329 + "protocol_id": 1340 }, "minecraft:vex_spawn_egg": { - "protocol_id": 1123 + "protocol_id": 1134 }, "minecraft:villager_spawn_egg": { - "protocol_id": 1124 + "protocol_id": 1135 }, "minecraft:vindicator_spawn_egg": { - "protocol_id": 1125 + "protocol_id": 1136 }, "minecraft:vine": { - "protocol_id": 374 + "protocol_id": 381 }, "minecraft:wandering_trader_spawn_egg": { - "protocol_id": 1126 + "protocol_id": 1137 }, "minecraft:ward_armor_trim_smithing_template": { - "protocol_id": 1327 + "protocol_id": 1338 }, "minecraft:warden_spawn_egg": { - "protocol_id": 1127 + "protocol_id": 1138 }, "minecraft:warped_button": { - "protocol_id": 718 + "protocol_id": 725 }, "minecraft:warped_door": { - "protocol_id": 747 + "protocol_id": 754 }, "minecraft:warped_fence": { - "protocol_id": 336 + "protocol_id": 343 }, "minecraft:warped_fence_gate": { - "protocol_id": 788 + "protocol_id": 795 }, "minecraft:warped_fungus": { - "protocol_id": 246 + "protocol_id": 250 }, "minecraft:warped_fungus_on_a_stick": { - "protocol_id": 800 + "protocol_id": 807 }, "minecraft:warped_hanging_sign": { - "protocol_id": 940 + "protocol_id": 949 }, "minecraft:warped_hyphae": { "protocol_id": 181 @@ -10096,31 +10235,31 @@ "protocol_id": 47 }, "minecraft:warped_pressure_plate": { - "protocol_id": 734 + "protocol_id": 741 }, "minecraft:warped_roots": { - "protocol_id": 248 + "protocol_id": 252 }, "minecraft:warped_sign": { - "protocol_id": 928 + "protocol_id": 937 }, "minecraft:warped_slab": { - "protocol_id": 276 + "protocol_id": 282 }, "minecraft:warped_stairs": { - "protocol_id": 417 + "protocol_id": 424 }, "minecraft:warped_stem": { "protocol_id": 146 }, "minecraft:warped_trapdoor": { - "protocol_id": 768 + "protocol_id": 775 }, "minecraft:warped_wart_block": { - "protocol_id": 541 + "protocol_id": 548 }, "minecraft:water_bucket": { - "protocol_id": 942 + "protocol_id": 951 }, "minecraft:waxed_chiseled_copper": { "protocol_id": 118 @@ -10129,16 +10268,16 @@ "protocol_id": 114 }, "minecraft:waxed_copper_bulb": { - "protocol_id": 1376 + "protocol_id": 1387 }, "minecraft:waxed_copper_door": { - "protocol_id": 752 + "protocol_id": 759 }, "minecraft:waxed_copper_grate": { - "protocol_id": 1368 + "protocol_id": 1379 }, "minecraft:waxed_copper_trapdoor": { - "protocol_id": 773 + "protocol_id": 780 }, "minecraft:waxed_cut_copper": { "protocol_id": 122 @@ -10156,16 +10295,16 @@ "protocol_id": 115 }, "minecraft:waxed_exposed_copper_bulb": { - "protocol_id": 1377 + "protocol_id": 1388 }, "minecraft:waxed_exposed_copper_door": { - "protocol_id": 753 + "protocol_id": 760 }, "minecraft:waxed_exposed_copper_grate": { - "protocol_id": 1369 + "protocol_id": 1380 }, "minecraft:waxed_exposed_copper_trapdoor": { - "protocol_id": 774 + "protocol_id": 781 }, "minecraft:waxed_exposed_cut_copper": { "protocol_id": 123 @@ -10183,16 +10322,16 @@ "protocol_id": 117 }, "minecraft:waxed_oxidized_copper_bulb": { - "protocol_id": 1379 + "protocol_id": 1390 }, "minecraft:waxed_oxidized_copper_door": { - "protocol_id": 755 + "protocol_id": 762 }, "minecraft:waxed_oxidized_copper_grate": { - "protocol_id": 1371 + "protocol_id": 1382 }, "minecraft:waxed_oxidized_copper_trapdoor": { - "protocol_id": 776 + "protocol_id": 783 }, "minecraft:waxed_oxidized_cut_copper": { "protocol_id": 125 @@ -10210,16 +10349,16 @@ "protocol_id": 116 }, "minecraft:waxed_weathered_copper_bulb": { - "protocol_id": 1378 + "protocol_id": 1389 }, "minecraft:waxed_weathered_copper_door": { - "protocol_id": 754 + "protocol_id": 761 }, "minecraft:waxed_weathered_copper_grate": { - "protocol_id": 1370 + "protocol_id": 1381 }, "minecraft:waxed_weathered_copper_trapdoor": { - "protocol_id": 775 + "protocol_id": 782 }, "minecraft:waxed_weathered_cut_copper": { "protocol_id": 124 @@ -10231,7 +10370,7 @@ "protocol_id": 128 }, "minecraft:wayfinder_armor_trim_smithing_template": { - "protocol_id": 1334 + "protocol_id": 1345 }, "minecraft:weathered_chiseled_copper": { "protocol_id": 100 @@ -10240,16 +10379,16 @@ "protocol_id": 96 }, "minecraft:weathered_copper_bulb": { - "protocol_id": 1374 + "protocol_id": 1385 }, "minecraft:weathered_copper_door": { - "protocol_id": 750 + "protocol_id": 757 }, "minecraft:weathered_copper_grate": { - "protocol_id": 1366 + "protocol_id": 1377 }, "minecraft:weathered_copper_trapdoor": { - "protocol_id": 771 + "protocol_id": 778 }, "minecraft:weathered_cut_copper": { "protocol_id": 104 @@ -10261,220 +10400,176 @@ "protocol_id": 108 }, "minecraft:weeping_vines": { - "protocol_id": 250 + "protocol_id": 254 }, "minecraft:wet_sponge": { "protocol_id": 194 }, "minecraft:wheat": { - "protocol_id": 885 + "protocol_id": 894 }, "minecraft:wheat_seeds": { - "protocol_id": 884 + "protocol_id": 893 }, "minecraft:white_banner": { - "protocol_id": 1185 + "protocol_id": 1196 }, "minecraft:white_bed": { - "protocol_id": 1013 + "protocol_id": 1024 }, "minecraft:white_bundle": { - "protocol_id": 964 + "protocol_id": 975 }, "minecraft:white_candle": { - "protocol_id": 1295 + "protocol_id": 1306 }, "minecraft:white_carpet": { - "protocol_id": 469 + "protocol_id": 476 }, "minecraft:white_concrete": { - "protocol_id": 578 + "protocol_id": 585 }, "minecraft:white_concrete_powder": { - "protocol_id": 594 + "protocol_id": 601 }, "minecraft:white_dye": { - "protocol_id": 993 + "protocol_id": 1004 }, "minecraft:white_glazed_terracotta": { - "protocol_id": 562 + "protocol_id": 569 }, "minecraft:white_shulker_box": { - "protocol_id": 546 + "protocol_id": 553 }, "minecraft:white_stained_glass": { - "protocol_id": 494 + "protocol_id": 501 }, "minecraft:white_stained_glass_pane": { - "protocol_id": 510 + "protocol_id": 517 }, "minecraft:white_terracotta": { - "protocol_id": 450 + "protocol_id": 457 }, "minecraft:white_tulip": { - "protocol_id": 234 + "protocol_id": 238 }, "minecraft:white_wool": { - "protocol_id": 209 - }, - "minecraft:wild_armor_trim_smithing_template": { - "protocol_id": 1326 - }, - "minecraft:wind_charge": { - "protocol_id": 1140 - }, - "minecraft:witch_spawn_egg": { - "protocol_id": 1128 - }, - "minecraft:wither_rose": { - "protocol_id": 239 - }, - "minecraft:wither_skeleton_skull": { - "protocol_id": 1155 - }, - "minecraft:wither_skeleton_spawn_egg": { - "protocol_id": 1130 - }, - "minecraft:wither_spawn_egg": { - "protocol_id": 1129 - }, - "minecraft:wolf_armor": { - "protocol_id": 828 - }, - "minecraft:wolf_spawn_egg": { - "protocol_id": 1131 - }, - "minecraft:wooden_axe": { - "protocol_id": 852 - }, - "minecraft:wooden_hoe": { - "protocol_id": 853 - }, - "minecraft:wooden_pickaxe": { - "protocol_id": 851 - }, - "minecraft:wooden_shovel": { - "protocol_id": 850 - }, - "minecraft:wooden_sword": { - "protocol_id": 849 - }, - "minecraft:writable_book": { - "protocol_id": 1141 - }, - "minecraft:written_book": { - "protocol_id": 1142 - }, - "minecraft:yellow_banner": { - "protocol_id": 1189 - }, - "minecraft:yellow_bed": { - "protocol_id": 1017 - }, - "minecraft:yellow_bundle": { - "protocol_id": 968 - }, - "minecraft:yellow_candle": { - "protocol_id": 1299 - }, - "minecraft:yellow_carpet": { - "protocol_id": 473 - }, - "minecraft:yellow_concrete": { - "protocol_id": 582 - }, - "minecraft:yellow_concrete_powder": { - "protocol_id": 598 - }, - "minecraft:yellow_dye": { - "protocol_id": 997 - }, - "minecraft:yellow_glazed_terracotta": { - "protocol_id": 566 - }, - "minecraft:yellow_shulker_box": { - "protocol_id": 550 - }, - "minecraft:yellow_stained_glass": { - "protocol_id": 498 - }, - "minecraft:yellow_stained_glass_pane": { - "protocol_id": 514 - }, - "minecraft:yellow_terracotta": { - "protocol_id": 454 - }, - "minecraft:yellow_wool": { "protocol_id": 213 }, + "minecraft:wild_armor_trim_smithing_template": { + "protocol_id": 1337 + }, + "minecraft:wildflowers": { + "protocol_id": 259 + }, + "minecraft:wind_charge": { + "protocol_id": 1151 + }, + "minecraft:witch_spawn_egg": { + "protocol_id": 1139 + }, + "minecraft:wither_rose": { + "protocol_id": 243 + }, + "minecraft:wither_skeleton_skull": { + "protocol_id": 1166 + }, + "minecraft:wither_skeleton_spawn_egg": { + "protocol_id": 1141 + }, + "minecraft:wither_spawn_egg": { + "protocol_id": 1140 + }, + "minecraft:wolf_armor": { + "protocol_id": 837 + }, + "minecraft:wolf_spawn_egg": { + "protocol_id": 1142 + }, + "minecraft:wooden_axe": { + "protocol_id": 861 + }, + "minecraft:wooden_hoe": { + "protocol_id": 862 + }, + "minecraft:wooden_pickaxe": { + "protocol_id": 860 + }, + "minecraft:wooden_shovel": { + "protocol_id": 859 + }, + "minecraft:wooden_sword": { + "protocol_id": 858 + }, + "minecraft:writable_book": { + "protocol_id": 1152 + }, + "minecraft:written_book": { + "protocol_id": 1153 + }, + "minecraft:yellow_banner": { + "protocol_id": 1200 + }, + "minecraft:yellow_bed": { + "protocol_id": 1028 + }, + "minecraft:yellow_bundle": { + "protocol_id": 979 + }, + "minecraft:yellow_candle": { + "protocol_id": 1310 + }, + "minecraft:yellow_carpet": { + "protocol_id": 480 + }, + "minecraft:yellow_concrete": { + "protocol_id": 589 + }, + "minecraft:yellow_concrete_powder": { + "protocol_id": 605 + }, + "minecraft:yellow_dye": { + "protocol_id": 1008 + }, + "minecraft:yellow_glazed_terracotta": { + "protocol_id": 573 + }, + "minecraft:yellow_shulker_box": { + "protocol_id": 557 + }, + "minecraft:yellow_stained_glass": { + "protocol_id": 505 + }, + "minecraft:yellow_stained_glass_pane": { + "protocol_id": 521 + }, + "minecraft:yellow_terracotta": { + "protocol_id": 461 + }, + "minecraft:yellow_wool": { + "protocol_id": 217 + }, "minecraft:zoglin_spawn_egg": { - "protocol_id": 1132 + "protocol_id": 1143 }, "minecraft:zombie_head": { - "protocol_id": 1157 + "protocol_id": 1168 }, "minecraft:zombie_horse_spawn_egg": { - "protocol_id": 1135 + "protocol_id": 1146 }, "minecraft:zombie_spawn_egg": { - "protocol_id": 1134 + "protocol_id": 1145 }, "minecraft:zombie_villager_spawn_egg": { - "protocol_id": 1136 + "protocol_id": 1147 }, "minecraft:zombified_piglin_spawn_egg": { - "protocol_id": 1137 + "protocol_id": 1148 } }, "protocol_id": 6 }, - "minecraft:item_sub_predicate_type": { - "entries": { - "minecraft:attribute_modifiers": { - "protocol_id": 11 - }, - "minecraft:bundle_contents": { - "protocol_id": 6 - }, - "minecraft:container": { - "protocol_id": 5 - }, - "minecraft:custom_data": { - "protocol_id": 4 - }, - "minecraft:damage": { - "protocol_id": 0 - }, - "minecraft:enchantments": { - "protocol_id": 1 - }, - "minecraft:firework_explosion": { - "protocol_id": 7 - }, - "minecraft:fireworks": { - "protocol_id": 8 - }, - "minecraft:jukebox_playable": { - "protocol_id": 13 - }, - "minecraft:potion_contents": { - "protocol_id": 3 - }, - "minecraft:stored_enchantments": { - "protocol_id": 2 - }, - "minecraft:trim": { - "protocol_id": 12 - }, - "minecraft:writable_book_content": { - "protocol_id": 9 - }, - "minecraft:written_book_content": { - "protocol_id": 10 - } - }, - "protocol_id": 68 - }, "minecraft:loot_condition_type": { "entries": { "minecraft:all_of": { @@ -10844,169 +10939,169 @@ "protocol_id": 31 } }, - "protocol_id": 69 + "protocol_id": 67 }, "minecraft:memory_module_type": { "default": "minecraft:dummy", "entries": { "minecraft:admiring_disabled": { - "protocol_id": 58 + "protocol_id": 59 }, "minecraft:admiring_item": { - "protocol_id": 55 + "protocol_id": 56 }, "minecraft:angry_at": { - "protocol_id": 53 + "protocol_id": 54 }, "minecraft:ate_recently": { - "protocol_id": 73 + "protocol_id": 74 }, "minecraft:attack_cooling_down": { - "protocol_id": 15 + "protocol_id": 16 }, "minecraft:attack_target": { - "protocol_id": 14 + "protocol_id": 15 }, "minecraft:avoid_target": { - "protocol_id": 25 + "protocol_id": 26 }, "minecraft:breed_target": { - "protocol_id": 17 + "protocol_id": 18 }, "minecraft:breeze_jump_cooldown": { - "protocol_id": 98 - }, - "minecraft:breeze_jump_inhaling": { - "protocol_id": 103 - }, - "minecraft:breeze_jump_target": { - "protocol_id": 104 - }, - "minecraft:breeze_leaving_water": { - "protocol_id": 105 - }, - "minecraft:breeze_shoot": { "protocol_id": 99 }, - "minecraft:breeze_shoot_charging": { + "minecraft:breeze_jump_inhaling": { + "protocol_id": 104 + }, + "minecraft:breeze_jump_target": { + "protocol_id": 105 + }, + "minecraft:breeze_leaving_water": { + "protocol_id": 106 + }, + "minecraft:breeze_shoot": { "protocol_id": 100 }, - "minecraft:breeze_shoot_cooldown": { - "protocol_id": 102 - }, - "minecraft:breeze_shoot_recover": { + "minecraft:breeze_shoot_charging": { "protocol_id": 101 }, + "minecraft:breeze_shoot_cooldown": { + "protocol_id": 103 + }, + "minecraft:breeze_shoot_recover": { + "protocol_id": 102 + }, "minecraft:cant_reach_walk_target_since": { - "protocol_id": 30 + "protocol_id": 31 }, "minecraft:celebrate_location": { - "protocol_id": 60 - }, - "minecraft:dancing": { "protocol_id": 61 }, + "minecraft:dancing": { + "protocol_id": 62 + }, "minecraft:danger_detected_recently": { - "protocol_id": 32 + "protocol_id": 33 }, "minecraft:dig_cooldown": { - "protocol_id": 82 + "protocol_id": 83 }, "minecraft:disable_walk_to_admire_item": { - "protocol_id": 57 + "protocol_id": 58 }, "minecraft:disturbance_location": { - "protocol_id": 77 + "protocol_id": 78 }, "minecraft:doors_to_close": { - "protocol_id": 21 + "protocol_id": 22 }, "minecraft:dummy": { "protocol_id": 0 }, "minecraft:gaze_cooldown_ticks": { - "protocol_id": 42 + "protocol_id": 43 }, "minecraft:golem_detected_recently": { - "protocol_id": 31 + "protocol_id": 32 }, "minecraft:has_hunting_cooldown": { - "protocol_id": 46 + "protocol_id": 47 }, "minecraft:heard_bell_time": { - "protocol_id": 29 + "protocol_id": 30 }, "minecraft:hiding_place": { - "protocol_id": 28 + "protocol_id": 29 }, "minecraft:home": { "protocol_id": 1 }, "minecraft:hunted_recently": { - "protocol_id": 59 + "protocol_id": 60 }, "minecraft:hurt_by": { - "protocol_id": 23 - }, - "minecraft:hurt_by_entity": { "protocol_id": 24 }, + "minecraft:hurt_by_entity": { + "protocol_id": 25 + }, "minecraft:interactable_doors": { - "protocol_id": 20 + "protocol_id": 21 }, "minecraft:interaction_target": { - "protocol_id": 16 + "protocol_id": 17 }, "minecraft:is_emerging": { - "protocol_id": 80 + "protocol_id": 81 }, "minecraft:is_in_water": { - "protocol_id": 49 - }, - "minecraft:is_panicking": { - "protocol_id": 51 - }, - "minecraft:is_pregnant": { "protocol_id": 50 }, + "minecraft:is_panicking": { + "protocol_id": 52 + }, + "minecraft:is_pregnant": { + "protocol_id": 51 + }, "minecraft:is_sniffing": { - "protocol_id": 79 + "protocol_id": 80 }, "minecraft:is_tempted": { - "protocol_id": 43 + "protocol_id": 44 }, "minecraft:item_pickup_cooldown_ticks": { - "protocol_id": 93 + "protocol_id": 94 }, "minecraft:job_site": { "protocol_id": 2 }, "minecraft:last_slept": { - "protocol_id": 33 - }, - "minecraft:last_woken": { "protocol_id": 34 }, - "minecraft:last_worked_at_poi": { + "minecraft:last_woken": { "protocol_id": 35 }, - "minecraft:liked_noteblock": { - "protocol_id": 91 + "minecraft:last_worked_at_poi": { + "protocol_id": 36 }, - "minecraft:liked_noteblock_cooldown_ticks": { + "minecraft:liked_noteblock": { "protocol_id": 92 }, + "minecraft:liked_noteblock_cooldown_ticks": { + "protocol_id": 93 + }, "minecraft:liked_player": { - "protocol_id": 90 + "protocol_id": 91 }, "minecraft:long_jump_cooling_down": { - "protocol_id": 44 - }, - "minecraft:long_jump_mid_jump": { "protocol_id": 45 }, + "minecraft:long_jump_mid_jump": { + "protocol_id": 46 + }, "minecraft:look_target": { - "protocol_id": 13 + "protocol_id": 14 }, "minecraft:meeting_point": { "protocol_id": 4 @@ -11015,49 +11110,49 @@ "protocol_id": 6 }, "minecraft:nearby_adult_piglins": { - "protocol_id": 65 + "protocol_id": 66 }, "minecraft:nearest_attackable": { - "protocol_id": 27 + "protocol_id": 28 }, "minecraft:nearest_bed": { - "protocol_id": 22 + "protocol_id": 23 }, "minecraft:nearest_hostile": { - "protocol_id": 26 + "protocol_id": 27 }, "minecraft:nearest_player_holding_wanted_item": { - "protocol_id": 72 + "protocol_id": 73 }, "minecraft:nearest_players": { "protocol_id": 9 }, "minecraft:nearest_repellent": { - "protocol_id": 74 + "protocol_id": 75 }, "minecraft:nearest_targetable_player_not_wearing_gold": { - "protocol_id": 64 + "protocol_id": 65 }, "minecraft:nearest_visible_adult": { - "protocol_id": 36 + "protocol_id": 37 }, "minecraft:nearest_visible_adult_hoglins": { - "protocol_id": 67 - }, - "minecraft:nearest_visible_adult_piglin": { "protocol_id": 68 }, + "minecraft:nearest_visible_adult_piglin": { + "protocol_id": 69 + }, "minecraft:nearest_visible_adult_piglins": { - "protocol_id": 66 + "protocol_id": 67 }, "minecraft:nearest_visible_baby_hoglin": { - "protocol_id": 63 + "protocol_id": 64 }, "minecraft:nearest_visible_huntable_hoglin": { - "protocol_id": 62 + "protocol_id": 63 }, "minecraft:nearest_visible_nemesis": { - "protocol_id": 38 + "protocol_id": 39 }, "minecraft:nearest_visible_player": { "protocol_id": 10 @@ -11065,98 +11160,101 @@ "minecraft:nearest_visible_targetable_player": { "protocol_id": 11 }, + "minecraft:nearest_visible_targetable_players": { + "protocol_id": 12 + }, "minecraft:nearest_visible_wanted_item": { - "protocol_id": 37 + "protocol_id": 38 }, "minecraft:nearest_visible_zombified": { - "protocol_id": 69 + "protocol_id": 70 }, "minecraft:pacified": { - "protocol_id": 75 + "protocol_id": 76 }, "minecraft:path": { - "protocol_id": 19 + "protocol_id": 20 }, "minecraft:play_dead_ticks": { - "protocol_id": 39 + "protocol_id": 40 }, "minecraft:potential_job_site": { "protocol_id": 3 }, "minecraft:ram_cooldown_ticks": { - "protocol_id": 47 - }, - "minecraft:ram_target": { "protocol_id": 48 }, + "minecraft:ram_target": { + "protocol_id": 49 + }, "minecraft:recent_projectile": { - "protocol_id": 78 + "protocol_id": 79 }, "minecraft:ride_target": { - "protocol_id": 18 + "protocol_id": 19 }, "minecraft:roar_sound_cooldown": { - "protocol_id": 83 + "protocol_id": 84 }, "minecraft:roar_sound_delay": { - "protocol_id": 81 + "protocol_id": 82 }, "minecraft:roar_target": { - "protocol_id": 76 + "protocol_id": 77 }, "minecraft:secondary_job_site": { "protocol_id": 5 }, "minecraft:sniff_cooldown": { - "protocol_id": 84 - }, - "minecraft:sniffer_digging": { - "protocol_id": 96 - }, - "minecraft:sniffer_explored_positions": { - "protocol_id": 94 - }, - "minecraft:sniffer_happy": { - "protocol_id": 97 - }, - "minecraft:sniffer_sniffing_target": { - "protocol_id": 95 - }, - "minecraft:sonic_boom_cooldown": { - "protocol_id": 87 - }, - "minecraft:sonic_boom_sound_cooldown": { - "protocol_id": 88 - }, - "minecraft:sonic_boom_sound_delay": { - "protocol_id": 89 - }, - "minecraft:temptation_cooldown_ticks": { - "protocol_id": 41 - }, - "minecraft:tempting_player": { - "protocol_id": 40 - }, - "minecraft:time_trying_to_reach_admire_item": { - "protocol_id": 56 - }, - "minecraft:touch_cooldown": { "protocol_id": 85 }, - "minecraft:universal_anger": { - "protocol_id": 54 + "minecraft:sniffer_digging": { + "protocol_id": 97 }, - "minecraft:unreachable_tongue_targets": { - "protocol_id": 52 + "minecraft:sniffer_explored_positions": { + "protocol_id": 95 }, - "minecraft:vibration_cooldown": { + "minecraft:sniffer_happy": { + "protocol_id": 98 + }, + "minecraft:sniffer_sniffing_target": { + "protocol_id": 96 + }, + "minecraft:sonic_boom_cooldown": { + "protocol_id": 88 + }, + "minecraft:sonic_boom_sound_cooldown": { + "protocol_id": 89 + }, + "minecraft:sonic_boom_sound_delay": { + "protocol_id": 90 + }, + "minecraft:temptation_cooldown_ticks": { + "protocol_id": 42 + }, + "minecraft:tempting_player": { + "protocol_id": 41 + }, + "minecraft:time_trying_to_reach_admire_item": { + "protocol_id": 57 + }, + "minecraft:touch_cooldown": { "protocol_id": 86 }, + "minecraft:universal_anger": { + "protocol_id": 55 + }, + "minecraft:unreachable_tongue_targets": { + "protocol_id": 53 + }, + "minecraft:vibration_cooldown": { + "protocol_id": 87 + }, "minecraft:visible_adult_hoglin_count": { - "protocol_id": 71 + "protocol_id": 72 }, "minecraft:visible_adult_piglin_count": { - "protocol_id": 70 + "protocol_id": 71 }, "minecraft:visible_mobs": { "protocol_id": 7 @@ -11165,7 +11263,7 @@ "protocol_id": 8 }, "minecraft:walk_target": { - "protocol_id": 12 + "protocol_id": 13 } }, "protocol_id": 25 @@ -11384,7 +11482,7 @@ "protocol_id": 1 } }, - "protocol_id": 65 + "protocol_id": 63 }, "minecraft:particle_type": { "entries": { @@ -11392,13 +11490,13 @@ "protocol_id": 0 }, "minecraft:ash": { - "protocol_id": 80 + "protocol_id": 81 }, "minecraft:block": { "protocol_id": 1 }, "minecraft:block_crumble": { - "protocol_id": 111 + "protocol_id": 112 }, "minecraft:block_marker": { "protocol_id": 2 @@ -11407,16 +11505,16 @@ "protocol_id": 3 }, "minecraft:bubble_column_up": { - "protocol_id": 70 + "protocol_id": 71 }, "minecraft:bubble_pop": { - "protocol_id": 68 + "protocol_id": 69 }, "minecraft:campfire_cosy_smoke": { - "protocol_id": 73 + "protocol_id": 74 }, "minecraft:campfire_signal_smoke": { - "protocol_id": 74 + "protocol_id": 75 }, "minecraft:cherry_leaves": { "protocol_id": 33 @@ -11425,40 +11523,40 @@ "protocol_id": 4 }, "minecraft:composter": { - "protocol_id": 42 + "protocol_id": 43 }, "minecraft:crimson_spore": { - "protocol_id": 81 + "protocol_id": 82 }, "minecraft:crit": { "protocol_id": 5 }, "minecraft:current_down": { - "protocol_id": 69 + "protocol_id": 70 }, "minecraft:damage_indicator": { "protocol_id": 6 }, "minecraft:dolphin": { - "protocol_id": 72 + "protocol_id": 73 }, "minecraft:dragon_breath": { "protocol_id": 7 }, "minecraft:dripping_dripstone_lava": { - "protocol_id": 91 + "protocol_id": 92 }, "minecraft:dripping_dripstone_water": { - "protocol_id": 93 + "protocol_id": 94 }, "minecraft:dripping_honey": { - "protocol_id": 75 + "protocol_id": 76 }, "minecraft:dripping_lava": { "protocol_id": 8 }, "minecraft:dripping_obsidian_tear": { - "protocol_id": 84 + "protocol_id": 85 }, "minecraft:dripping_water": { "protocol_id": 11 @@ -11470,22 +11568,22 @@ "protocol_id": 14 }, "minecraft:dust_pillar": { - "protocol_id": 107 + "protocol_id": 108 }, "minecraft:dust_plume": { - "protocol_id": 103 + "protocol_id": 104 }, "minecraft:effect": { "protocol_id": 15 }, "minecraft:egg_crack": { - "protocol_id": 102 + "protocol_id": 103 }, "minecraft:elder_guardian": { "protocol_id": 16 }, "minecraft:electric_spark": { - "protocol_id": 99 + "protocol_id": 100 }, "minecraft:enchant": { "protocol_id": 18 @@ -11506,32 +11604,35 @@ "protocol_id": 21 }, "minecraft:falling_dripstone_lava": { - "protocol_id": 92 + "protocol_id": 93 }, "minecraft:falling_dripstone_water": { - "protocol_id": 94 + "protocol_id": 95 }, "minecraft:falling_dust": { "protocol_id": 28 }, "minecraft:falling_honey": { - "protocol_id": 76 + "protocol_id": 77 }, "minecraft:falling_lava": { "protocol_id": 9 }, "minecraft:falling_nectar": { - "protocol_id": 78 + "protocol_id": 79 }, "minecraft:falling_obsidian_tear": { - "protocol_id": 85 + "protocol_id": 86 }, "minecraft:falling_spore_blossom": { - "protocol_id": 79 + "protocol_id": 80 }, "minecraft:falling_water": { "protocol_id": 12 }, + "minecraft:firefly": { + "protocol_id": 113 + }, "minecraft:firework": { "protocol_id": 29 }, @@ -11542,13 +11643,13 @@ "protocol_id": 31 }, "minecraft:flash": { - "protocol_id": 40 + "protocol_id": 41 }, "minecraft:glow": { - "protocol_id": 96 + "protocol_id": 97 }, "minecraft:glow_squid_ink": { - "protocol_id": 95 + "protocol_id": 96 }, "minecraft:gust": { "protocol_id": 23 @@ -11560,169 +11661,172 @@ "protocol_id": 26 }, "minecraft:happy_villager": { - "protocol_id": 41 + "protocol_id": 42 }, "minecraft:heart": { - "protocol_id": 43 + "protocol_id": 44 }, "minecraft:infested": { "protocol_id": 32 }, "minecraft:instant_effect": { - "protocol_id": 44 - }, - "minecraft:item": { "protocol_id": 45 }, + "minecraft:item": { + "protocol_id": 46 + }, "minecraft:item_cobweb": { - "protocol_id": 49 - }, - "minecraft:item_slime": { - "protocol_id": 48 - }, - "minecraft:item_snowball": { "protocol_id": 50 }, + "minecraft:item_slime": { + "protocol_id": 49 + }, + "minecraft:item_snowball": { + "protocol_id": 51 + }, "minecraft:landing_honey": { - "protocol_id": 77 + "protocol_id": 78 }, "minecraft:landing_lava": { "protocol_id": 10 }, "minecraft:landing_obsidian_tear": { - "protocol_id": 86 + "protocol_id": 87 }, "minecraft:large_smoke": { - "protocol_id": 51 - }, - "minecraft:lava": { "protocol_id": 52 }, - "minecraft:mycelium": { + "minecraft:lava": { "protocol_id": 53 }, - "minecraft:nautilus": { - "protocol_id": 71 - }, - "minecraft:note": { + "minecraft:mycelium": { "protocol_id": 54 }, + "minecraft:nautilus": { + "protocol_id": 72 + }, + "minecraft:note": { + "protocol_id": 55 + }, "minecraft:ominous_spawning": { - "protocol_id": 108 + "protocol_id": 109 }, "minecraft:pale_oak_leaves": { "protocol_id": 34 }, "minecraft:poof": { - "protocol_id": 55 - }, - "minecraft:portal": { "protocol_id": 56 }, - "minecraft:raid_omen": { - "protocol_id": 109 - }, - "minecraft:rain": { + "minecraft:portal": { "protocol_id": 57 }, + "minecraft:raid_omen": { + "protocol_id": 110 + }, + "minecraft:rain": { + "protocol_id": 58 + }, "minecraft:reverse_portal": { - "protocol_id": 87 + "protocol_id": 88 }, "minecraft:scrape": { - "protocol_id": 100 - }, - "minecraft:sculk_charge": { - "protocol_id": 36 - }, - "minecraft:sculk_charge_pop": { - "protocol_id": 37 - }, - "minecraft:sculk_soul": { - "protocol_id": 35 - }, - "minecraft:shriek": { "protocol_id": 101 }, + "minecraft:sculk_charge": { + "protocol_id": 37 + }, + "minecraft:sculk_charge_pop": { + "protocol_id": 38 + }, + "minecraft:sculk_soul": { + "protocol_id": 36 + }, + "minecraft:shriek": { + "protocol_id": 102 + }, "minecraft:small_flame": { - "protocol_id": 89 + "protocol_id": 90 }, "minecraft:small_gust": { "protocol_id": 24 }, "minecraft:smoke": { - "protocol_id": 58 + "protocol_id": 59 }, "minecraft:sneeze": { - "protocol_id": 60 + "protocol_id": 61 }, "minecraft:snowflake": { - "protocol_id": 90 + "protocol_id": 91 }, "minecraft:sonic_boom": { "protocol_id": 27 }, "minecraft:soul": { - "protocol_id": 39 + "protocol_id": 40 }, "minecraft:soul_fire_flame": { - "protocol_id": 38 + "protocol_id": 39 }, "minecraft:spit": { - "protocol_id": 61 - }, - "minecraft:splash": { - "protocol_id": 66 - }, - "minecraft:spore_blossom_air": { - "protocol_id": 83 - }, - "minecraft:squid_ink": { "protocol_id": 62 }, - "minecraft:sweep_attack": { + "minecraft:splash": { + "protocol_id": 67 + }, + "minecraft:spore_blossom_air": { + "protocol_id": 84 + }, + "minecraft:squid_ink": { "protocol_id": 63 }, - "minecraft:totem_of_undying": { + "minecraft:sweep_attack": { "protocol_id": 64 }, - "minecraft:trail": { - "protocol_id": 47 + "minecraft:tinted_leaves": { + "protocol_id": 35 }, - "minecraft:trial_omen": { - "protocol_id": 110 - }, - "minecraft:trial_spawner_detection": { - "protocol_id": 104 - }, - "minecraft:trial_spawner_detection_ominous": { - "protocol_id": 105 - }, - "minecraft:underwater": { + "minecraft:totem_of_undying": { "protocol_id": 65 }, - "minecraft:vault_connection": { + "minecraft:trail": { + "protocol_id": 48 + }, + "minecraft:trial_omen": { + "protocol_id": 111 + }, + "minecraft:trial_spawner_detection": { + "protocol_id": 105 + }, + "minecraft:trial_spawner_detection_ominous": { "protocol_id": 106 }, + "minecraft:underwater": { + "protocol_id": 66 + }, + "minecraft:vault_connection": { + "protocol_id": 107 + }, "minecraft:vibration": { - "protocol_id": 46 + "protocol_id": 47 }, "minecraft:warped_spore": { - "protocol_id": 82 + "protocol_id": 83 }, "minecraft:wax_off": { - "protocol_id": 98 + "protocol_id": 99 }, "minecraft:wax_on": { - "protocol_id": 97 + "protocol_id": 98 }, "minecraft:white_ash": { - "protocol_id": 88 + "protocol_id": 89 }, "minecraft:white_smoke": { - "protocol_id": 59 + "protocol_id": 60 }, "minecraft:witch": { - "protocol_id": 67 + "protocol_id": 68 } }, "protocol_id": 8 @@ -12002,7 +12106,7 @@ "protocol_id": 10 } }, - "protocol_id": 79 + "protocol_id": 77 }, "minecraft:recipe_display": { "entries": { @@ -12022,7 +12126,7 @@ "protocol_id": 3 } }, - "protocol_id": 77 + "protocol_id": 75 }, "minecraft:recipe_serializer": { "entries": { @@ -12289,7 +12393,7 @@ "protocol_id": 6 } }, - "protocol_id": 78 + "protocol_id": 76 }, "minecraft:sound_event": { "entries": { @@ -12522,19 +12626,19 @@ "protocol_id": 127 }, "minecraft:block.bamboo_wood_hanging_sign.break": { - "protocol_id": 693 + "protocol_id": 697 }, "minecraft:block.bamboo_wood_hanging_sign.fall": { - "protocol_id": 694 + "protocol_id": 698 }, "minecraft:block.bamboo_wood_hanging_sign.hit": { - "protocol_id": 695 + "protocol_id": 699 }, "minecraft:block.bamboo_wood_hanging_sign.place": { - "protocol_id": 696 + "protocol_id": 700 }, "minecraft:block.bamboo_wood_hanging_sign.step": { - "protocol_id": 692 + "protocol_id": 696 }, "minecraft:block.bamboo_wood_pressure_plate.click_off": { "protocol_id": 124 @@ -12618,10 +12722,10 @@ "protocol_id": 161 }, "minecraft:block.big_dripleaf.tilt_down": { - "protocol_id": 464 + "protocol_id": 467 }, "minecraft:block.big_dripleaf.tilt_up": { - "protocol_id": 465 + "protocol_id": 468 }, "minecraft:block.blastfurnace.fire_crackle": { "protocol_id": 182 @@ -12659,1973 +12763,2021 @@ "minecraft:block.bubble_column.whirlpool_inside": { "protocol_id": 209 }, - "minecraft:block.cake.add_candle": { + "minecraft:block.cactus_flower.break": { "protocol_id": 227 }, - "minecraft:block.calcite.break": { + "minecraft:block.cactus_flower.place": { "protocol_id": 228 }, - "minecraft:block.calcite.fall": { - "protocol_id": 232 - }, - "minecraft:block.calcite.hit": { - "protocol_id": 231 - }, - "minecraft:block.calcite.place": { - "protocol_id": 230 - }, - "minecraft:block.calcite.step": { + "minecraft:block.cake.add_candle": { "protocol_id": 229 }, + "minecraft:block.calcite.break": { + "protocol_id": 230 + }, + "minecraft:block.calcite.fall": { + "protocol_id": 234 + }, + "minecraft:block.calcite.hit": { + "protocol_id": 233 + }, + "minecraft:block.calcite.place": { + "protocol_id": 232 + }, + "minecraft:block.calcite.step": { + "protocol_id": 231 + }, "minecraft:block.campfire.crackle": { - "protocol_id": 244 - }, - "minecraft:block.candle.ambient": { - "protocol_id": 245 - }, - "minecraft:block.candle.break": { "protocol_id": 246 }, - "minecraft:block.candle.extinguish": { + "minecraft:block.candle.ambient": { "protocol_id": 247 }, - "minecraft:block.candle.fall": { + "minecraft:block.candle.break": { "protocol_id": 248 }, - "minecraft:block.candle.hit": { + "minecraft:block.candle.extinguish": { "protocol_id": 249 }, - "minecraft:block.candle.place": { + "minecraft:block.candle.fall": { "protocol_id": 250 }, - "minecraft:block.candle.step": { + "minecraft:block.candle.hit": { "protocol_id": 251 }, + "minecraft:block.candle.place": { + "protocol_id": 252 + }, + "minecraft:block.candle.step": { + "protocol_id": 253 + }, "minecraft:block.cave_vines.break": { - "protocol_id": 261 - }, - "minecraft:block.cave_vines.fall": { - "protocol_id": 262 - }, - "minecraft:block.cave_vines.hit": { "protocol_id": 263 }, - "minecraft:block.cave_vines.pick_berries": { - "protocol_id": 266 - }, - "minecraft:block.cave_vines.place": { + "minecraft:block.cave_vines.fall": { "protocol_id": 264 }, - "minecraft:block.cave_vines.step": { + "minecraft:block.cave_vines.hit": { "protocol_id": 265 }, - "minecraft:block.chain.break": { - "protocol_id": 267 - }, - "minecraft:block.chain.fall": { + "minecraft:block.cave_vines.pick_berries": { "protocol_id": 268 }, - "minecraft:block.chain.hit": { + "minecraft:block.cave_vines.place": { + "protocol_id": 266 + }, + "minecraft:block.cave_vines.step": { + "protocol_id": 267 + }, + "minecraft:block.chain.break": { "protocol_id": 269 }, - "minecraft:block.chain.place": { + "minecraft:block.chain.fall": { "protocol_id": 270 }, - "minecraft:block.chain.step": { + "minecraft:block.chain.hit": { "protocol_id": 271 }, - "minecraft:block.cherry_leaves.break": { - "protocol_id": 282 - }, - "minecraft:block.cherry_leaves.fall": { - "protocol_id": 283 - }, - "minecraft:block.cherry_leaves.hit": { - "protocol_id": 284 - }, - "minecraft:block.cherry_leaves.place": { - "protocol_id": 285 - }, - "minecraft:block.cherry_leaves.step": { - "protocol_id": 286 - }, - "minecraft:block.cherry_sapling.break": { - "protocol_id": 277 - }, - "minecraft:block.cherry_sapling.fall": { - "protocol_id": 278 - }, - "minecraft:block.cherry_sapling.hit": { - "protocol_id": 279 - }, - "minecraft:block.cherry_sapling.place": { - "protocol_id": 280 - }, - "minecraft:block.cherry_sapling.step": { - "protocol_id": 281 - }, - "minecraft:block.cherry_wood.break": { + "minecraft:block.chain.place": { "protocol_id": 272 }, - "minecraft:block.cherry_wood.fall": { + "minecraft:block.chain.step": { "protocol_id": 273 }, - "minecraft:block.cherry_wood.hit": { - "protocol_id": 274 + "minecraft:block.cherry_leaves.break": { + "protocol_id": 284 }, - "minecraft:block.cherry_wood.place": { - "protocol_id": 275 + "minecraft:block.cherry_leaves.fall": { + "protocol_id": 285 }, - "minecraft:block.cherry_wood.step": { - "protocol_id": 276 + "minecraft:block.cherry_leaves.hit": { + "protocol_id": 286 }, - "minecraft:block.cherry_wood_button.click_off": { - "protocol_id": 296 - }, - "minecraft:block.cherry_wood_button.click_on": { - "protocol_id": 297 - }, - "minecraft:block.cherry_wood_door.close": { - "protocol_id": 292 - }, - "minecraft:block.cherry_wood_door.open": { - "protocol_id": 293 - }, - "minecraft:block.cherry_wood_fence_gate.close": { - "protocol_id": 300 - }, - "minecraft:block.cherry_wood_fence_gate.open": { - "protocol_id": 301 - }, - "minecraft:block.cherry_wood_hanging_sign.break": { - "protocol_id": 288 - }, - "minecraft:block.cherry_wood_hanging_sign.fall": { - "protocol_id": 289 - }, - "minecraft:block.cherry_wood_hanging_sign.hit": { - "protocol_id": 290 - }, - "minecraft:block.cherry_wood_hanging_sign.place": { - "protocol_id": 291 - }, - "minecraft:block.cherry_wood_hanging_sign.step": { + "minecraft:block.cherry_leaves.place": { "protocol_id": 287 }, - "minecraft:block.cherry_wood_pressure_plate.click_off": { + "minecraft:block.cherry_leaves.step": { + "protocol_id": 288 + }, + "minecraft:block.cherry_sapling.break": { + "protocol_id": 279 + }, + "minecraft:block.cherry_sapling.fall": { + "protocol_id": 280 + }, + "minecraft:block.cherry_sapling.hit": { + "protocol_id": 281 + }, + "minecraft:block.cherry_sapling.place": { + "protocol_id": 282 + }, + "minecraft:block.cherry_sapling.step": { + "protocol_id": 283 + }, + "minecraft:block.cherry_wood.break": { + "protocol_id": 274 + }, + "minecraft:block.cherry_wood.fall": { + "protocol_id": 275 + }, + "minecraft:block.cherry_wood.hit": { + "protocol_id": 276 + }, + "minecraft:block.cherry_wood.place": { + "protocol_id": 277 + }, + "minecraft:block.cherry_wood.step": { + "protocol_id": 278 + }, + "minecraft:block.cherry_wood_button.click_off": { "protocol_id": 298 }, - "minecraft:block.cherry_wood_pressure_plate.click_on": { + "minecraft:block.cherry_wood_button.click_on": { "protocol_id": 299 }, - "minecraft:block.cherry_wood_trapdoor.close": { + "minecraft:block.cherry_wood_door.close": { "protocol_id": 294 }, - "minecraft:block.cherry_wood_trapdoor.open": { + "minecraft:block.cherry_wood_door.open": { "protocol_id": 295 }, - "minecraft:block.chest.close": { + "minecraft:block.cherry_wood_fence_gate.close": { "protocol_id": 302 }, - "minecraft:block.chest.locked": { + "minecraft:block.cherry_wood_fence_gate.open": { "protocol_id": 303 }, - "minecraft:block.chest.open": { + "minecraft:block.cherry_wood_hanging_sign.break": { + "protocol_id": 290 + }, + "minecraft:block.cherry_wood_hanging_sign.fall": { + "protocol_id": 291 + }, + "minecraft:block.cherry_wood_hanging_sign.hit": { + "protocol_id": 292 + }, + "minecraft:block.cherry_wood_hanging_sign.place": { + "protocol_id": 293 + }, + "minecraft:block.cherry_wood_hanging_sign.step": { + "protocol_id": 289 + }, + "minecraft:block.cherry_wood_pressure_plate.click_off": { + "protocol_id": 300 + }, + "minecraft:block.cherry_wood_pressure_plate.click_on": { + "protocol_id": 301 + }, + "minecraft:block.cherry_wood_trapdoor.close": { + "protocol_id": 296 + }, + "minecraft:block.cherry_wood_trapdoor.open": { + "protocol_id": 297 + }, + "minecraft:block.chest.close": { "protocol_id": 304 }, + "minecraft:block.chest.locked": { + "protocol_id": 305 + }, + "minecraft:block.chest.open": { + "protocol_id": 306 + }, "minecraft:block.chiseled_bookshelf.break": { - "protocol_id": 310 - }, - "minecraft:block.chiseled_bookshelf.fall": { - "protocol_id": 311 - }, - "minecraft:block.chiseled_bookshelf.hit": { "protocol_id": 312 }, - "minecraft:block.chiseled_bookshelf.insert": { + "minecraft:block.chiseled_bookshelf.fall": { "protocol_id": 313 }, - "minecraft:block.chiseled_bookshelf.insert.enchanted": { + "minecraft:block.chiseled_bookshelf.hit": { "protocol_id": 314 }, - "minecraft:block.chiseled_bookshelf.pickup": { - "protocol_id": 316 - }, - "minecraft:block.chiseled_bookshelf.pickup.enchanted": { - "protocol_id": 317 - }, - "minecraft:block.chiseled_bookshelf.place": { - "protocol_id": 318 - }, - "minecraft:block.chiseled_bookshelf.step": { + "minecraft:block.chiseled_bookshelf.insert": { "protocol_id": 315 }, - "minecraft:block.chorus_flower.death": { + "minecraft:block.chiseled_bookshelf.insert.enchanted": { + "protocol_id": 316 + }, + "minecraft:block.chiseled_bookshelf.pickup": { + "protocol_id": 318 + }, + "minecraft:block.chiseled_bookshelf.pickup.enchanted": { "protocol_id": 319 }, - "minecraft:block.chorus_flower.grow": { + "minecraft:block.chiseled_bookshelf.place": { "protocol_id": 320 }, - "minecraft:block.cobweb.break": { + "minecraft:block.chiseled_bookshelf.step": { + "protocol_id": 317 + }, + "minecraft:block.chorus_flower.death": { + "protocol_id": 321 + }, + "minecraft:block.chorus_flower.grow": { "protocol_id": 322 }, - "minecraft:block.cobweb.fall": { - "protocol_id": 326 - }, - "minecraft:block.cobweb.hit": { - "protocol_id": 325 - }, - "minecraft:block.cobweb.place": { + "minecraft:block.cobweb.break": { "protocol_id": 324 }, + "minecraft:block.cobweb.fall": { + "protocol_id": 328 + }, + "minecraft:block.cobweb.hit": { + "protocol_id": 327 + }, + "minecraft:block.cobweb.place": { + "protocol_id": 326 + }, "minecraft:block.cobweb.step": { - "protocol_id": 323 + "protocol_id": 325 }, "minecraft:block.comparator.click": { - "protocol_id": 331 - }, - "minecraft:block.composter.empty": { - "protocol_id": 332 - }, - "minecraft:block.composter.fill": { "protocol_id": 333 }, - "minecraft:block.composter.fill_success": { + "minecraft:block.composter.empty": { "protocol_id": 334 }, - "minecraft:block.composter.ready": { + "minecraft:block.composter.fill": { "protocol_id": 335 }, - "minecraft:block.conduit.activate": { + "minecraft:block.composter.fill_success": { "protocol_id": 336 }, - "minecraft:block.conduit.ambient": { + "minecraft:block.composter.ready": { "protocol_id": 337 }, - "minecraft:block.conduit.ambient.short": { + "minecraft:block.conduit.activate": { "protocol_id": 338 }, - "minecraft:block.conduit.attack.target": { + "minecraft:block.conduit.ambient": { "protocol_id": 339 }, - "minecraft:block.conduit.deactivate": { + "minecraft:block.conduit.ambient.short": { "protocol_id": 340 }, - "minecraft:block.copper.break": { - "protocol_id": 348 - }, - "minecraft:block.copper.fall": { - "protocol_id": 352 - }, - "minecraft:block.copper.hit": { - "protocol_id": 351 - }, - "minecraft:block.copper.place": { - "protocol_id": 350 - }, - "minecraft:block.copper.step": { - "protocol_id": 349 - }, - "minecraft:block.copper_bulb.break": { + "minecraft:block.conduit.attack.target": { "protocol_id": 341 }, - "minecraft:block.copper_bulb.fall": { - "protocol_id": 345 - }, - "minecraft:block.copper_bulb.hit": { - "protocol_id": 344 - }, - "minecraft:block.copper_bulb.place": { - "protocol_id": 343 - }, - "minecraft:block.copper_bulb.step": { + "minecraft:block.conduit.deactivate": { "protocol_id": 342 }, - "minecraft:block.copper_bulb.turn_off": { - "protocol_id": 347 + "minecraft:block.copper.break": { + "protocol_id": 350 }, - "minecraft:block.copper_bulb.turn_on": { - "protocol_id": 346 - }, - "minecraft:block.copper_door.close": { - "protocol_id": 353 - }, - "minecraft:block.copper_door.open": { + "minecraft:block.copper.fall": { "protocol_id": 354 }, - "minecraft:block.copper_grate.break": { + "minecraft:block.copper.hit": { + "protocol_id": 353 + }, + "minecraft:block.copper.place": { + "protocol_id": 352 + }, + "minecraft:block.copper.step": { + "protocol_id": 351 + }, + "minecraft:block.copper_bulb.break": { + "protocol_id": 343 + }, + "minecraft:block.copper_bulb.fall": { + "protocol_id": 347 + }, + "minecraft:block.copper_bulb.hit": { + "protocol_id": 346 + }, + "minecraft:block.copper_bulb.place": { + "protocol_id": 345 + }, + "minecraft:block.copper_bulb.step": { + "protocol_id": 344 + }, + "minecraft:block.copper_bulb.turn_off": { + "protocol_id": 349 + }, + "minecraft:block.copper_bulb.turn_on": { + "protocol_id": 348 + }, + "minecraft:block.copper_door.close": { "protocol_id": 355 }, - "minecraft:block.copper_grate.fall": { - "protocol_id": 359 - }, - "minecraft:block.copper_grate.hit": { - "protocol_id": 358 - }, - "minecraft:block.copper_grate.place": { - "protocol_id": 357 - }, - "minecraft:block.copper_grate.step": { + "minecraft:block.copper_door.open": { "protocol_id": 356 }, - "minecraft:block.copper_trapdoor.close": { - "protocol_id": 360 + "minecraft:block.copper_grate.break": { + "protocol_id": 357 }, - "minecraft:block.copper_trapdoor.open": { + "minecraft:block.copper_grate.fall": { "protocol_id": 361 }, - "minecraft:block.coral_block.break": { + "minecraft:block.copper_grate.hit": { + "protocol_id": 360 + }, + "minecraft:block.copper_grate.place": { + "protocol_id": 359 + }, + "minecraft:block.copper_grate.step": { + "protocol_id": 358 + }, + "minecraft:block.copper_trapdoor.close": { "protocol_id": 362 }, - "minecraft:block.coral_block.fall": { + "minecraft:block.copper_trapdoor.open": { "protocol_id": 363 }, - "minecraft:block.coral_block.hit": { + "minecraft:block.coral_block.break": { "protocol_id": 364 }, - "minecraft:block.coral_block.place": { + "minecraft:block.coral_block.fall": { "protocol_id": 365 }, - "minecraft:block.coral_block.step": { + "minecraft:block.coral_block.hit": { "protocol_id": 366 }, + "minecraft:block.coral_block.place": { + "protocol_id": 367 + }, + "minecraft:block.coral_block.step": { + "protocol_id": 368 + }, "minecraft:block.crafter.craft": { - "protocol_id": 372 + "protocol_id": 374 }, "minecraft:block.crafter.fail": { - "protocol_id": 373 + "protocol_id": 375 }, "minecraft:block.creaking_heart.break": { - "protocol_id": 385 - }, - "minecraft:block.creaking_heart.fall": { - "protocol_id": 386 - }, - "minecraft:block.creaking_heart.hit": { "protocol_id": 387 }, - "minecraft:block.creaking_heart.hurt": { + "minecraft:block.creaking_heart.fall": { "protocol_id": 388 }, - "minecraft:block.creaking_heart.idle": { - "protocol_id": 391 - }, - "minecraft:block.creaking_heart.place": { + "minecraft:block.creaking_heart.hit": { "protocol_id": 389 }, - "minecraft:block.creaking_heart.spawn": { - "protocol_id": 392 - }, - "minecraft:block.creaking_heart.step": { + "minecraft:block.creaking_heart.hurt": { "protocol_id": 390 }, + "minecraft:block.creaking_heart.idle": { + "protocol_id": 393 + }, + "minecraft:block.creaking_heart.place": { + "protocol_id": 391 + }, + "minecraft:block.creaking_heart.spawn": { + "protocol_id": 394 + }, + "minecraft:block.creaking_heart.step": { + "protocol_id": 392 + }, "minecraft:block.crop.break": { - "protocol_id": 396 + "protocol_id": 398 }, - "minecraft:block.decorated_pot.break": { - "protocol_id": 406 - }, - "minecraft:block.decorated_pot.fall": { - "protocol_id": 407 - }, - "minecraft:block.decorated_pot.hit": { + "minecraft:block.deadbush.idle": { "protocol_id": 408 }, - "minecraft:block.decorated_pot.insert": { + "minecraft:block.decorated_pot.break": { "protocol_id": 409 }, - "minecraft:block.decorated_pot.insert_fail": { + "minecraft:block.decorated_pot.fall": { "protocol_id": 410 }, - "minecraft:block.decorated_pot.place": { - "protocol_id": 412 - }, - "minecraft:block.decorated_pot.shatter": { - "protocol_id": 413 - }, - "minecraft:block.decorated_pot.step": { + "minecraft:block.decorated_pot.hit": { "protocol_id": 411 }, - "minecraft:block.deepslate.break": { - "protocol_id": 419 + "minecraft:block.decorated_pot.insert": { + "protocol_id": 412 }, - "minecraft:block.deepslate.fall": { - "protocol_id": 420 + "minecraft:block.decorated_pot.insert_fail": { + "protocol_id": 413 }, - "minecraft:block.deepslate.hit": { - "protocol_id": 421 - }, - "minecraft:block.deepslate.place": { - "protocol_id": 422 - }, - "minecraft:block.deepslate.step": { - "protocol_id": 423 - }, - "minecraft:block.deepslate_bricks.break": { - "protocol_id": 414 - }, - "minecraft:block.deepslate_bricks.fall": { + "minecraft:block.decorated_pot.place": { "protocol_id": 415 }, - "minecraft:block.deepslate_bricks.hit": { + "minecraft:block.decorated_pot.shatter": { "protocol_id": 416 }, - "minecraft:block.deepslate_bricks.place": { - "protocol_id": 417 + "minecraft:block.decorated_pot.step": { + "protocol_id": 414 }, - "minecraft:block.deepslate_bricks.step": { - "protocol_id": 418 + "minecraft:block.deepslate.break": { + "protocol_id": 422 }, - "minecraft:block.deepslate_tiles.break": { + "minecraft:block.deepslate.fall": { + "protocol_id": 423 + }, + "minecraft:block.deepslate.hit": { "protocol_id": 424 }, - "minecraft:block.deepslate_tiles.fall": { + "minecraft:block.deepslate.place": { "protocol_id": 425 }, - "minecraft:block.deepslate_tiles.hit": { + "minecraft:block.deepslate.step": { "protocol_id": 426 }, - "minecraft:block.deepslate_tiles.place": { + "minecraft:block.deepslate_bricks.break": { + "protocol_id": 417 + }, + "minecraft:block.deepslate_bricks.fall": { + "protocol_id": 418 + }, + "minecraft:block.deepslate_bricks.hit": { + "protocol_id": 419 + }, + "minecraft:block.deepslate_bricks.place": { + "protocol_id": 420 + }, + "minecraft:block.deepslate_bricks.step": { + "protocol_id": 421 + }, + "minecraft:block.deepslate_tiles.break": { "protocol_id": 427 }, - "minecraft:block.deepslate_tiles.step": { + "minecraft:block.deepslate_tiles.fall": { "protocol_id": 428 }, - "minecraft:block.dispenser.dispense": { + "minecraft:block.deepslate_tiles.hit": { "protocol_id": 429 }, - "minecraft:block.dispenser.fail": { + "minecraft:block.deepslate_tiles.place": { "protocol_id": 430 }, - "minecraft:block.dispenser.launch": { + "minecraft:block.deepslate_tiles.step": { "protocol_id": 431 }, + "minecraft:block.dispenser.dispense": { + "protocol_id": 432 + }, + "minecraft:block.dispenser.fail": { + "protocol_id": 433 + }, + "minecraft:block.dispenser.launch": { + "protocol_id": 434 + }, "minecraft:block.dripstone_block.break": { - "protocol_id": 449 - }, - "minecraft:block.dripstone_block.fall": { - "protocol_id": 453 - }, - "minecraft:block.dripstone_block.hit": { "protocol_id": 452 }, - "minecraft:block.dripstone_block.place": { - "protocol_id": 451 - }, - "minecraft:block.dripstone_block.step": { - "protocol_id": 450 - }, - "minecraft:block.enchantment_table.use": { - "protocol_id": 486 - }, - "minecraft:block.end_gateway.spawn": { - "protocol_id": 509 - }, - "minecraft:block.end_portal.spawn": { - "protocol_id": 511 - }, - "minecraft:block.end_portal_frame.fill": { - "protocol_id": 510 - }, - "minecraft:block.ender_chest.close": { - "protocol_id": 487 - }, - "minecraft:block.ender_chest.open": { - "protocol_id": 488 - }, - "minecraft:block.eyeblossom.close": { - "protocol_id": 526 - }, - "minecraft:block.eyeblossom.close_long": { - "protocol_id": 525 - }, - "minecraft:block.eyeblossom.idle": { - "protocol_id": 527 - }, - "minecraft:block.eyeblossom.open": { - "protocol_id": 524 - }, - "minecraft:block.eyeblossom.open_long": { - "protocol_id": 523 - }, - "minecraft:block.fence_gate.close": { - "protocol_id": 528 - }, - "minecraft:block.fence_gate.open": { - "protocol_id": 529 - }, - "minecraft:block.fire.ambient": { - "protocol_id": 539 - }, - "minecraft:block.fire.extinguish": { - "protocol_id": 540 - }, - "minecraft:block.flowering_azalea.break": { - "protocol_id": 546 - }, - "minecraft:block.flowering_azalea.fall": { - "protocol_id": 547 - }, - "minecraft:block.flowering_azalea.hit": { - "protocol_id": 548 - }, - "minecraft:block.flowering_azalea.place": { - "protocol_id": 549 - }, - "minecraft:block.flowering_azalea.step": { - "protocol_id": 550 - }, - "minecraft:block.froglight.break": { - "protocol_id": 572 - }, - "minecraft:block.froglight.fall": { - "protocol_id": 573 - }, - "minecraft:block.froglight.hit": { - "protocol_id": 574 - }, - "minecraft:block.froglight.place": { - "protocol_id": 575 - }, - "minecraft:block.froglight.step": { - "protocol_id": 576 - }, - "minecraft:block.frogspawn.break": { - "protocol_id": 578 - }, - "minecraft:block.frogspawn.fall": { - "protocol_id": 579 - }, - "minecraft:block.frogspawn.hatch": { - "protocol_id": 580 - }, - "minecraft:block.frogspawn.hit": { - "protocol_id": 581 - }, - "minecraft:block.frogspawn.place": { - "protocol_id": 582 - }, - "minecraft:block.frogspawn.step": { - "protocol_id": 577 - }, - "minecraft:block.fungus.break": { - "protocol_id": 985 - }, - "minecraft:block.fungus.fall": { - "protocol_id": 989 - }, - "minecraft:block.fungus.hit": { - "protocol_id": 988 - }, - "minecraft:block.fungus.place": { - "protocol_id": 987 - }, - "minecraft:block.fungus.step": { - "protocol_id": 986 - }, - "minecraft:block.furnace.fire_crackle": { - "protocol_id": 596 - }, - "minecraft:block.gilded_blackstone.break": { - "protocol_id": 614 - }, - "minecraft:block.gilded_blackstone.fall": { - "protocol_id": 615 - }, - "minecraft:block.gilded_blackstone.hit": { - "protocol_id": 616 - }, - "minecraft:block.gilded_blackstone.place": { - "protocol_id": 617 - }, - "minecraft:block.gilded_blackstone.step": { - "protocol_id": 618 - }, - "minecraft:block.glass.break": { - "protocol_id": 619 - }, - "minecraft:block.glass.fall": { - "protocol_id": 620 - }, - "minecraft:block.glass.hit": { - "protocol_id": 621 - }, - "minecraft:block.glass.place": { - "protocol_id": 622 - }, - "minecraft:block.glass.step": { - "protocol_id": 623 - }, - "minecraft:block.grass.break": { - "protocol_id": 652 - }, - "minecraft:block.grass.fall": { - "protocol_id": 653 - }, - "minecraft:block.grass.hit": { - "protocol_id": 654 - }, - "minecraft:block.grass.place": { - "protocol_id": 655 - }, - "minecraft:block.grass.step": { - "protocol_id": 656 - }, - "minecraft:block.gravel.break": { - "protocol_id": 657 - }, - "minecraft:block.gravel.fall": { - "protocol_id": 658 - }, - "minecraft:block.gravel.hit": { - "protocol_id": 659 - }, - "minecraft:block.gravel.place": { - "protocol_id": 660 - }, - "minecraft:block.gravel.step": { - "protocol_id": 661 - }, - "minecraft:block.grindstone.use": { - "protocol_id": 662 - }, - "minecraft:block.growing_plant.crop": { - "protocol_id": 663 - }, - "minecraft:block.hanging_roots.break": { - "protocol_id": 672 - }, - "minecraft:block.hanging_roots.fall": { - "protocol_id": 673 - }, - "minecraft:block.hanging_roots.hit": { - "protocol_id": 674 - }, - "minecraft:block.hanging_roots.place": { - "protocol_id": 675 - }, - "minecraft:block.hanging_roots.step": { - "protocol_id": 676 - }, - "minecraft:block.hanging_sign.break": { - "protocol_id": 678 - }, - "minecraft:block.hanging_sign.fall": { - "protocol_id": 679 - }, - "minecraft:block.hanging_sign.hit": { - "protocol_id": 680 - }, - "minecraft:block.hanging_sign.place": { - "protocol_id": 681 - }, - "minecraft:block.hanging_sign.step": { - "protocol_id": 677 - }, - "minecraft:block.hanging_sign.waxed_interact_fail": { - "protocol_id": 1554 - }, - "minecraft:block.heavy_core.break": { - "protocol_id": 682 - }, - "minecraft:block.heavy_core.fall": { - "protocol_id": 683 - }, - "minecraft:block.heavy_core.hit": { - "protocol_id": 684 - }, - "minecraft:block.heavy_core.place": { - "protocol_id": 685 - }, - "minecraft:block.heavy_core.step": { - "protocol_id": 686 - }, - "minecraft:block.honey_block.break": { - "protocol_id": 722 - }, - "minecraft:block.honey_block.fall": { - "protocol_id": 723 - }, - "minecraft:block.honey_block.hit": { - "protocol_id": 724 - }, - "minecraft:block.honey_block.place": { - "protocol_id": 725 - }, - "minecraft:block.honey_block.slide": { - "protocol_id": 726 - }, - "minecraft:block.honey_block.step": { - "protocol_id": 727 - }, - "minecraft:block.iron_door.close": { - "protocol_id": 770 - }, - "minecraft:block.iron_door.open": { - "protocol_id": 771 - }, - "minecraft:block.iron_trapdoor.close": { - "protocol_id": 778 - }, - "minecraft:block.iron_trapdoor.open": { - "protocol_id": 779 - }, - "minecraft:block.ladder.break": { - "protocol_id": 787 - }, - "minecraft:block.ladder.fall": { - "protocol_id": 788 - }, - "minecraft:block.ladder.hit": { - "protocol_id": 789 - }, - "minecraft:block.ladder.place": { - "protocol_id": 790 - }, - "minecraft:block.ladder.step": { - "protocol_id": 791 - }, - "minecraft:block.lantern.break": { - "protocol_id": 792 - }, - "minecraft:block.lantern.fall": { - "protocol_id": 793 - }, - "minecraft:block.lantern.hit": { - "protocol_id": 794 - }, - "minecraft:block.lantern.place": { - "protocol_id": 795 - }, - "minecraft:block.lantern.step": { - "protocol_id": 796 - }, - "minecraft:block.large_amethyst_bud.break": { - "protocol_id": 797 - }, - "minecraft:block.large_amethyst_bud.place": { - "protocol_id": 798 - }, - "minecraft:block.lava.ambient": { - "protocol_id": 799 - }, - "minecraft:block.lava.extinguish": { - "protocol_id": 800 - }, - "minecraft:block.lava.pop": { - "protocol_id": 801 - }, - "minecraft:block.lever.click": { - "protocol_id": 804 - }, - "minecraft:block.lily_pad.place": { - "protocol_id": 1523 - }, - "minecraft:block.lodestone.break": { - "protocol_id": 818 - }, - "minecraft:block.lodestone.fall": { - "protocol_id": 822 - }, - "minecraft:block.lodestone.hit": { - "protocol_id": 821 - }, - "minecraft:block.lodestone.place": { - "protocol_id": 820 - }, - "minecraft:block.lodestone.step": { - "protocol_id": 819 - }, - "minecraft:block.mangrove_roots.break": { - "protocol_id": 833 - }, - "minecraft:block.mangrove_roots.fall": { - "protocol_id": 834 - }, - "minecraft:block.mangrove_roots.hit": { - "protocol_id": 835 - }, - "minecraft:block.mangrove_roots.place": { - "protocol_id": 836 - }, - "minecraft:block.mangrove_roots.step": { - "protocol_id": 837 - }, - "minecraft:block.medium_amethyst_bud.break": { - "protocol_id": 838 - }, - "minecraft:block.medium_amethyst_bud.place": { - "protocol_id": 839 - }, - "minecraft:block.metal.break": { - "protocol_id": 840 - }, - "minecraft:block.metal.fall": { - "protocol_id": 841 - }, - "minecraft:block.metal.hit": { - "protocol_id": 842 - }, - "minecraft:block.metal.place": { - "protocol_id": 843 - }, - "minecraft:block.metal.step": { - "protocol_id": 846 - }, - "minecraft:block.metal_pressure_plate.click_off": { - "protocol_id": 844 - }, - "minecraft:block.metal_pressure_plate.click_on": { - "protocol_id": 845 - }, - "minecraft:block.moss.break": { - "protocol_id": 865 - }, - "minecraft:block.moss.fall": { - "protocol_id": 866 - }, - "minecraft:block.moss.hit": { - "protocol_id": 867 - }, - "minecraft:block.moss.place": { - "protocol_id": 868 - }, - "minecraft:block.moss.step": { - "protocol_id": 869 - }, - "minecraft:block.moss_carpet.break": { - "protocol_id": 855 - }, - "minecraft:block.moss_carpet.fall": { - "protocol_id": 856 - }, - "minecraft:block.moss_carpet.hit": { - "protocol_id": 857 - }, - "minecraft:block.moss_carpet.place": { - "protocol_id": 858 - }, - "minecraft:block.moss_carpet.step": { - "protocol_id": 859 - }, - "minecraft:block.mud.break": { - "protocol_id": 870 - }, - "minecraft:block.mud.fall": { - "protocol_id": 871 - }, - "minecraft:block.mud.hit": { - "protocol_id": 872 - }, - "minecraft:block.mud.place": { - "protocol_id": 873 - }, - "minecraft:block.mud.step": { - "protocol_id": 874 - }, - "minecraft:block.mud_bricks.break": { - "protocol_id": 875 - }, - "minecraft:block.mud_bricks.fall": { - "protocol_id": 876 - }, - "minecraft:block.mud_bricks.hit": { - "protocol_id": 877 - }, - "minecraft:block.mud_bricks.place": { - "protocol_id": 878 - }, - "minecraft:block.mud_bricks.step": { - "protocol_id": 879 - }, - "minecraft:block.muddy_mangrove_roots.break": { - "protocol_id": 880 - }, - "minecraft:block.muddy_mangrove_roots.fall": { - "protocol_id": 881 - }, - "minecraft:block.muddy_mangrove_roots.hit": { - "protocol_id": 882 - }, - "minecraft:block.muddy_mangrove_roots.place": { - "protocol_id": 883 - }, - "minecraft:block.muddy_mangrove_roots.step": { - "protocol_id": 884 - }, - "minecraft:block.nether_bricks.break": { - "protocol_id": 942 - }, - "minecraft:block.nether_bricks.fall": { - "protocol_id": 946 - }, - "minecraft:block.nether_bricks.hit": { - "protocol_id": 945 - }, - "minecraft:block.nether_bricks.place": { - "protocol_id": 944 - }, - "minecraft:block.nether_bricks.step": { - "protocol_id": 943 - }, - "minecraft:block.nether_gold_ore.break": { - "protocol_id": 1187 - }, - "minecraft:block.nether_gold_ore.fall": { - "protocol_id": 1188 - }, - "minecraft:block.nether_gold_ore.hit": { - "protocol_id": 1189 - }, - "minecraft:block.nether_gold_ore.place": { - "protocol_id": 1190 - }, - "minecraft:block.nether_gold_ore.step": { - "protocol_id": 1191 - }, - "minecraft:block.nether_ore.break": { - "protocol_id": 1192 - }, - "minecraft:block.nether_ore.fall": { - "protocol_id": 1193 - }, - "minecraft:block.nether_ore.hit": { - "protocol_id": 1194 - }, - "minecraft:block.nether_ore.place": { - "protocol_id": 1195 - }, - "minecraft:block.nether_ore.step": { - "protocol_id": 1196 - }, - "minecraft:block.nether_sprouts.break": { - "protocol_id": 980 - }, - "minecraft:block.nether_sprouts.fall": { - "protocol_id": 984 - }, - "minecraft:block.nether_sprouts.hit": { - "protocol_id": 983 - }, - "minecraft:block.nether_sprouts.place": { - "protocol_id": 982 - }, - "minecraft:block.nether_sprouts.step": { - "protocol_id": 981 - }, - "minecraft:block.nether_wart.break": { - "protocol_id": 947 - }, - "minecraft:block.nether_wood.break": { - "protocol_id": 949 - }, - "minecraft:block.nether_wood.fall": { - "protocol_id": 950 - }, - "minecraft:block.nether_wood.hit": { - "protocol_id": 951 - }, - "minecraft:block.nether_wood.place": { - "protocol_id": 952 - }, - "minecraft:block.nether_wood.step": { - "protocol_id": 953 - }, - "minecraft:block.nether_wood_button.click_off": { - "protocol_id": 958 - }, - "minecraft:block.nether_wood_button.click_on": { - "protocol_id": 959 - }, - "minecraft:block.nether_wood_door.close": { - "protocol_id": 954 - }, - "minecraft:block.nether_wood_door.open": { - "protocol_id": 955 - }, - "minecraft:block.nether_wood_fence_gate.close": { - "protocol_id": 962 - }, - "minecraft:block.nether_wood_fence_gate.open": { - "protocol_id": 963 - }, - "minecraft:block.nether_wood_hanging_sign.break": { - "protocol_id": 688 - }, - "minecraft:block.nether_wood_hanging_sign.fall": { - "protocol_id": 689 - }, - "minecraft:block.nether_wood_hanging_sign.hit": { - "protocol_id": 690 - }, - "minecraft:block.nether_wood_hanging_sign.place": { - "protocol_id": 691 - }, - "minecraft:block.nether_wood_hanging_sign.step": { - "protocol_id": 687 - }, - "minecraft:block.nether_wood_pressure_plate.click_off": { - "protocol_id": 960 - }, - "minecraft:block.nether_wood_pressure_plate.click_on": { - "protocol_id": 961 - }, - "minecraft:block.nether_wood_trapdoor.close": { - "protocol_id": 956 - }, - "minecraft:block.nether_wood_trapdoor.open": { - "protocol_id": 957 - }, - "minecraft:block.netherite_block.break": { - "protocol_id": 1000 - }, - "minecraft:block.netherite_block.fall": { - "protocol_id": 1004 - }, - "minecraft:block.netherite_block.hit": { - "protocol_id": 1003 - }, - "minecraft:block.netherite_block.place": { - "protocol_id": 1002 - }, - "minecraft:block.netherite_block.step": { - "protocol_id": 1001 - }, - "minecraft:block.netherrack.break": { - "protocol_id": 1005 - }, - "minecraft:block.netherrack.fall": { - "protocol_id": 1009 - }, - "minecraft:block.netherrack.hit": { - "protocol_id": 1008 - }, - "minecraft:block.netherrack.place": { - "protocol_id": 1007 - }, - "minecraft:block.netherrack.step": { - "protocol_id": 1006 - }, - "minecraft:block.note_block.banjo": { - "protocol_id": 1025 - }, - "minecraft:block.note_block.basedrum": { - "protocol_id": 1010 - }, - "minecraft:block.note_block.bass": { - "protocol_id": 1011 - }, - "minecraft:block.note_block.bell": { - "protocol_id": 1012 - }, - "minecraft:block.note_block.bit": { - "protocol_id": 1024 - }, - "minecraft:block.note_block.chime": { - "protocol_id": 1013 - }, - "minecraft:block.note_block.cow_bell": { - "protocol_id": 1022 - }, - "minecraft:block.note_block.didgeridoo": { - "protocol_id": 1023 - }, - "minecraft:block.note_block.flute": { - "protocol_id": 1014 - }, - "minecraft:block.note_block.guitar": { - "protocol_id": 1015 - }, - "minecraft:block.note_block.harp": { - "protocol_id": 1016 - }, - "minecraft:block.note_block.hat": { - "protocol_id": 1017 - }, - "minecraft:block.note_block.imitate.creeper": { - "protocol_id": 1028 - }, - "minecraft:block.note_block.imitate.ender_dragon": { - "protocol_id": 1029 - }, - "minecraft:block.note_block.imitate.piglin": { - "protocol_id": 1031 - }, - "minecraft:block.note_block.imitate.skeleton": { - "protocol_id": 1027 - }, - "minecraft:block.note_block.imitate.wither_skeleton": { - "protocol_id": 1030 - }, - "minecraft:block.note_block.imitate.zombie": { - "protocol_id": 1026 - }, - "minecraft:block.note_block.iron_xylophone": { - "protocol_id": 1021 - }, - "minecraft:block.note_block.pling": { - "protocol_id": 1018 - }, - "minecraft:block.note_block.snare": { - "protocol_id": 1019 - }, - "minecraft:block.note_block.xylophone": { - "protocol_id": 1020 - }, - "minecraft:block.nylium.break": { - "protocol_id": 975 - }, - "minecraft:block.nylium.fall": { - "protocol_id": 979 - }, - "minecraft:block.nylium.hit": { - "protocol_id": 978 - }, - "minecraft:block.nylium.place": { - "protocol_id": 977 - }, - "minecraft:block.nylium.step": { - "protocol_id": 976 - }, - "minecraft:block.packed_mud.break": { - "protocol_id": 965 - }, - "minecraft:block.packed_mud.fall": { - "protocol_id": 966 - }, - "minecraft:block.packed_mud.hit": { - "protocol_id": 967 - }, - "minecraft:block.packed_mud.place": { - "protocol_id": 968 - }, - "minecraft:block.packed_mud.step": { - "protocol_id": 969 - }, - "minecraft:block.pale_hanging_moss.idle": { - "protocol_id": 1038 - }, - "minecraft:block.pink_petals.break": { - "protocol_id": 860 - }, - "minecraft:block.pink_petals.fall": { - "protocol_id": 861 - }, - "minecraft:block.pink_petals.hit": { - "protocol_id": 862 - }, - "minecraft:block.pink_petals.place": { - "protocol_id": 863 - }, - "minecraft:block.pink_petals.step": { - "protocol_id": 864 - }, - "minecraft:block.piston.contract": { - "protocol_id": 1123 - }, - "minecraft:block.piston.extend": { - "protocol_id": 1124 - }, - "minecraft:block.pointed_dripstone.break": { - "protocol_id": 454 - }, - "minecraft:block.pointed_dripstone.drip_lava": { - "protocol_id": 460 - }, - "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": { - "protocol_id": 462 - }, - "minecraft:block.pointed_dripstone.drip_water": { - "protocol_id": 461 - }, - "minecraft:block.pointed_dripstone.drip_water_into_cauldron": { - "protocol_id": 463 - }, - "minecraft:block.pointed_dripstone.fall": { - "protocol_id": 458 - }, - "minecraft:block.pointed_dripstone.hit": { - "protocol_id": 457 - }, - "minecraft:block.pointed_dripstone.land": { - "protocol_id": 459 - }, - "minecraft:block.pointed_dripstone.place": { + "minecraft:block.dripstone_block.fall": { "protocol_id": 456 }, - "minecraft:block.pointed_dripstone.step": { + "minecraft:block.dripstone_block.hit": { "protocol_id": 455 }, - "minecraft:block.polished_deepslate.break": { - "protocol_id": 1152 + "minecraft:block.dripstone_block.place": { + "protocol_id": 454 }, - "minecraft:block.polished_deepslate.fall": { - "protocol_id": 1153 + "minecraft:block.dripstone_block.step": { + "protocol_id": 453 }, - "minecraft:block.polished_deepslate.hit": { - "protocol_id": 1154 + "minecraft:block.enchantment_table.use": { + "protocol_id": 489 }, - "minecraft:block.polished_deepslate.place": { - "protocol_id": 1155 + "minecraft:block.end_gateway.spawn": { + "protocol_id": 512 }, - "minecraft:block.polished_deepslate.step": { - "protocol_id": 1156 + "minecraft:block.end_portal.spawn": { + "protocol_id": 514 }, - "minecraft:block.polished_tuff.break": { - "protocol_id": 1450 + "minecraft:block.end_portal_frame.fill": { + "protocol_id": 513 }, - "minecraft:block.polished_tuff.fall": { - "protocol_id": 1451 + "minecraft:block.ender_chest.close": { + "protocol_id": 490 }, - "minecraft:block.polished_tuff.hit": { - "protocol_id": 1452 + "minecraft:block.ender_chest.open": { + "protocol_id": 491 }, - "minecraft:block.polished_tuff.place": { - "protocol_id": 1453 + "minecraft:block.eyeblossom.close": { + "protocol_id": 529 }, - "minecraft:block.polished_tuff.step": { - "protocol_id": 1454 + "minecraft:block.eyeblossom.close_long": { + "protocol_id": 528 }, - "minecraft:block.portal.ambient": { - "protocol_id": 1157 + "minecraft:block.eyeblossom.idle": { + "protocol_id": 530 }, - "minecraft:block.portal.travel": { - "protocol_id": 1158 + "minecraft:block.eyeblossom.open": { + "protocol_id": 527 }, - "minecraft:block.portal.trigger": { - "protocol_id": 1159 + "minecraft:block.eyeblossom.open_long": { + "protocol_id": 526 }, - "minecraft:block.powder_snow.break": { - "protocol_id": 1160 + "minecraft:block.fence_gate.close": { + "protocol_id": 531 }, - "minecraft:block.powder_snow.fall": { - "protocol_id": 1161 + "minecraft:block.fence_gate.open": { + "protocol_id": 532 }, - "minecraft:block.powder_snow.hit": { - "protocol_id": 1162 + "minecraft:block.fire.ambient": { + "protocol_id": 543 }, - "minecraft:block.powder_snow.place": { - "protocol_id": 1163 + "minecraft:block.fire.extinguish": { + "protocol_id": 544 }, - "minecraft:block.powder_snow.step": { - "protocol_id": 1164 + "minecraft:block.firefly_bush.idle": { + "protocol_id": 534 }, - "minecraft:block.pumpkin.carve": { - "protocol_id": 1172 + "minecraft:block.flowering_azalea.break": { + "protocol_id": 550 }, - "minecraft:block.redstone_torch.burnout": { - "protocol_id": 1197 + "minecraft:block.flowering_azalea.fall": { + "protocol_id": 551 }, - "minecraft:block.resin.break": { - "protocol_id": 1328 + "minecraft:block.flowering_azalea.hit": { + "protocol_id": 552 }, - "minecraft:block.resin.fall": { - "protocol_id": 1329 + "minecraft:block.flowering_azalea.place": { + "protocol_id": 553 }, - "minecraft:block.resin.place": { - "protocol_id": 1330 + "minecraft:block.flowering_azalea.step": { + "protocol_id": 554 }, - "minecraft:block.resin.step": { - "protocol_id": 1331 + "minecraft:block.froglight.break": { + "protocol_id": 576 }, - "minecraft:block.resin_bricks.break": { - "protocol_id": 1332 + "minecraft:block.froglight.fall": { + "protocol_id": 577 }, - "minecraft:block.resin_bricks.fall": { - "protocol_id": 1333 + "minecraft:block.froglight.hit": { + "protocol_id": 578 }, - "minecraft:block.resin_bricks.hit": { - "protocol_id": 1334 + "minecraft:block.froglight.place": { + "protocol_id": 579 }, - "minecraft:block.resin_bricks.place": { - "protocol_id": 1335 + "minecraft:block.froglight.step": { + "protocol_id": 580 }, - "minecraft:block.resin_bricks.step": { - "protocol_id": 1336 + "minecraft:block.frogspawn.break": { + "protocol_id": 582 }, - "minecraft:block.respawn_anchor.ambient": { - "protocol_id": 1198 + "minecraft:block.frogspawn.fall": { + "protocol_id": 583 }, - "minecraft:block.respawn_anchor.charge": { - "protocol_id": 1199 + "minecraft:block.frogspawn.hatch": { + "protocol_id": 584 }, - "minecraft:block.respawn_anchor.deplete": { - "protocol_id": 1200 + "minecraft:block.frogspawn.hit": { + "protocol_id": 585 }, - "minecraft:block.respawn_anchor.set_spawn": { - "protocol_id": 1201 + "minecraft:block.frogspawn.place": { + "protocol_id": 586 }, - "minecraft:block.rooted_dirt.break": { - "protocol_id": 1202 + "minecraft:block.frogspawn.step": { + "protocol_id": 581 }, - "minecraft:block.rooted_dirt.fall": { - "protocol_id": 1203 - }, - "minecraft:block.rooted_dirt.hit": { - "protocol_id": 1204 - }, - "minecraft:block.rooted_dirt.place": { - "protocol_id": 1205 - }, - "minecraft:block.rooted_dirt.step": { - "protocol_id": 1206 - }, - "minecraft:block.roots.break": { - "protocol_id": 591 - }, - "minecraft:block.roots.fall": { - "protocol_id": 595 - }, - "minecraft:block.roots.hit": { - "protocol_id": 594 - }, - "minecraft:block.roots.place": { - "protocol_id": 593 - }, - "minecraft:block.roots.step": { - "protocol_id": 592 - }, - "minecraft:block.sand.break": { - "protocol_id": 1211 - }, - "minecraft:block.sand.fall": { - "protocol_id": 1212 - }, - "minecraft:block.sand.hit": { - "protocol_id": 1213 - }, - "minecraft:block.sand.place": { - "protocol_id": 1214 - }, - "minecraft:block.sand.step": { - "protocol_id": 1215 - }, - "minecraft:block.scaffolding.break": { - "protocol_id": 1216 - }, - "minecraft:block.scaffolding.fall": { - "protocol_id": 1217 - }, - "minecraft:block.scaffolding.hit": { - "protocol_id": 1218 - }, - "minecraft:block.scaffolding.place": { - "protocol_id": 1219 - }, - "minecraft:block.scaffolding.step": { - "protocol_id": 1220 - }, - "minecraft:block.sculk.break": { - "protocol_id": 1223 - }, - "minecraft:block.sculk.charge": { - "protocol_id": 1222 - }, - "minecraft:block.sculk.fall": { - "protocol_id": 1224 - }, - "minecraft:block.sculk.hit": { - "protocol_id": 1225 - }, - "minecraft:block.sculk.place": { - "protocol_id": 1226 - }, - "minecraft:block.sculk.spread": { - "protocol_id": 1221 - }, - "minecraft:block.sculk.step": { - "protocol_id": 1227 - }, - "minecraft:block.sculk_catalyst.bloom": { - "protocol_id": 1228 - }, - "minecraft:block.sculk_catalyst.break": { - "protocol_id": 1229 - }, - "minecraft:block.sculk_catalyst.fall": { - "protocol_id": 1230 - }, - "minecraft:block.sculk_catalyst.hit": { - "protocol_id": 1231 - }, - "minecraft:block.sculk_catalyst.place": { - "protocol_id": 1232 - }, - "minecraft:block.sculk_catalyst.step": { - "protocol_id": 1233 - }, - "minecraft:block.sculk_sensor.break": { - "protocol_id": 1236 - }, - "minecraft:block.sculk_sensor.clicking": { - "protocol_id": 1234 - }, - "minecraft:block.sculk_sensor.clicking_stop": { - "protocol_id": 1235 - }, - "minecraft:block.sculk_sensor.fall": { - "protocol_id": 1237 - }, - "minecraft:block.sculk_sensor.hit": { - "protocol_id": 1238 - }, - "minecraft:block.sculk_sensor.place": { - "protocol_id": 1239 - }, - "minecraft:block.sculk_sensor.step": { - "protocol_id": 1240 - }, - "minecraft:block.sculk_shrieker.break": { - "protocol_id": 1241 - }, - "minecraft:block.sculk_shrieker.fall": { - "protocol_id": 1242 - }, - "minecraft:block.sculk_shrieker.hit": { - "protocol_id": 1243 - }, - "minecraft:block.sculk_shrieker.place": { - "protocol_id": 1244 - }, - "minecraft:block.sculk_shrieker.shriek": { - "protocol_id": 1245 - }, - "minecraft:block.sculk_shrieker.step": { - "protocol_id": 1246 - }, - "minecraft:block.sculk_vein.break": { - "protocol_id": 1247 - }, - "minecraft:block.sculk_vein.fall": { - "protocol_id": 1248 - }, - "minecraft:block.sculk_vein.hit": { - "protocol_id": 1249 - }, - "minecraft:block.sculk_vein.place": { - "protocol_id": 1250 - }, - "minecraft:block.sculk_vein.step": { - "protocol_id": 1251 - }, - "minecraft:block.shroomlight.break": { - "protocol_id": 1259 - }, - "minecraft:block.shroomlight.fall": { - "protocol_id": 1263 - }, - "minecraft:block.shroomlight.hit": { - "protocol_id": 1262 - }, - "minecraft:block.shroomlight.place": { - "protocol_id": 1261 - }, - "minecraft:block.shroomlight.step": { - "protocol_id": 1260 - }, - "minecraft:block.shulker_box.close": { - "protocol_id": 1266 - }, - "minecraft:block.shulker_box.open": { - "protocol_id": 1267 - }, - "minecraft:block.sign.waxed_interact_fail": { - "protocol_id": 1555 - }, - "minecraft:block.slime_block.break": { - "protocol_id": 1300 - }, - "minecraft:block.slime_block.fall": { - "protocol_id": 1301 - }, - "minecraft:block.slime_block.hit": { - "protocol_id": 1302 - }, - "minecraft:block.slime_block.place": { - "protocol_id": 1303 - }, - "minecraft:block.slime_block.step": { - "protocol_id": 1304 - }, - "minecraft:block.small_amethyst_bud.break": { - "protocol_id": 1305 - }, - "minecraft:block.small_amethyst_bud.place": { - "protocol_id": 1306 - }, - "minecraft:block.small_dripleaf.break": { - "protocol_id": 1307 - }, - "minecraft:block.small_dripleaf.fall": { - "protocol_id": 1308 - }, - "minecraft:block.small_dripleaf.hit": { - "protocol_id": 1309 - }, - "minecraft:block.small_dripleaf.place": { - "protocol_id": 1310 - }, - "minecraft:block.small_dripleaf.step": { - "protocol_id": 1311 - }, - "minecraft:block.smithing_table.use": { - "protocol_id": 1355 - }, - "minecraft:block.smoker.smoke": { - "protocol_id": 1356 - }, - "minecraft:block.sniffer_egg.crack": { - "protocol_id": 1370 - }, - "minecraft:block.sniffer_egg.hatch": { - "protocol_id": 1371 - }, - "minecraft:block.sniffer_egg.plop": { - "protocol_id": 1369 - }, - "minecraft:block.snow.break": { - "protocol_id": 1373 - }, - "minecraft:block.snow.fall": { - "protocol_id": 1374 - }, - "minecraft:block.snow.hit": { - "protocol_id": 1380 - }, - "minecraft:block.snow.place": { - "protocol_id": 1381 - }, - "minecraft:block.snow.step": { - "protocol_id": 1382 - }, - "minecraft:block.soul_sand.break": { - "protocol_id": 1312 - }, - "minecraft:block.soul_sand.fall": { - "protocol_id": 1316 - }, - "minecraft:block.soul_sand.hit": { - "protocol_id": 1315 - }, - "minecraft:block.soul_sand.place": { - "protocol_id": 1314 - }, - "minecraft:block.soul_sand.step": { - "protocol_id": 1313 - }, - "minecraft:block.soul_soil.break": { - "protocol_id": 1317 - }, - "minecraft:block.soul_soil.fall": { - "protocol_id": 1321 - }, - "minecraft:block.soul_soil.hit": { - "protocol_id": 1320 - }, - "minecraft:block.soul_soil.place": { - "protocol_id": 1319 - }, - "minecraft:block.soul_soil.step": { - "protocol_id": 1318 - }, - "minecraft:block.spawner.break": { - "protocol_id": 1323 - }, - "minecraft:block.spawner.fall": { - "protocol_id": 1324 - }, - "minecraft:block.spawner.hit": { - "protocol_id": 1325 - }, - "minecraft:block.spawner.place": { - "protocol_id": 1326 - }, - "minecraft:block.spawner.step": { - "protocol_id": 1327 - }, - "minecraft:block.sponge.absorb": { - "protocol_id": 1394 - }, - "minecraft:block.sponge.break": { - "protocol_id": 1389 - }, - "minecraft:block.sponge.fall": { - "protocol_id": 1390 - }, - "minecraft:block.sponge.hit": { - "protocol_id": 1391 - }, - "minecraft:block.sponge.place": { - "protocol_id": 1392 - }, - "minecraft:block.sponge.step": { - "protocol_id": 1393 - }, - "minecraft:block.spore_blossom.break": { - "protocol_id": 1337 - }, - "minecraft:block.spore_blossom.fall": { - "protocol_id": 1338 - }, - "minecraft:block.spore_blossom.hit": { - "protocol_id": 1339 - }, - "minecraft:block.spore_blossom.place": { - "protocol_id": 1340 - }, - "minecraft:block.spore_blossom.step": { - "protocol_id": 1341 - }, - "minecraft:block.stem.break": { - "protocol_id": 970 - }, - "minecraft:block.stem.fall": { - "protocol_id": 974 - }, - "minecraft:block.stem.hit": { - "protocol_id": 973 - }, - "minecraft:block.stem.place": { - "protocol_id": 972 - }, - "minecraft:block.stem.step": { - "protocol_id": 971 - }, - "minecraft:block.stone.break": { - "protocol_id": 1401 - }, - "minecraft:block.stone.fall": { - "protocol_id": 1404 - }, - "minecraft:block.stone.hit": { - "protocol_id": 1405 - }, - "minecraft:block.stone.place": { - "protocol_id": 1406 - }, - "minecraft:block.stone.step": { - "protocol_id": 1409 - }, - "minecraft:block.stone_button.click_off": { - "protocol_id": 1402 - }, - "minecraft:block.stone_button.click_on": { - "protocol_id": 1403 - }, - "minecraft:block.stone_pressure_plate.click_off": { - "protocol_id": 1407 - }, - "minecraft:block.stone_pressure_plate.click_on": { - "protocol_id": 1408 - }, - "minecraft:block.suspicious_gravel.break": { - "protocol_id": 567 - }, - "minecraft:block.suspicious_gravel.fall": { - "protocol_id": 571 - }, - "minecraft:block.suspicious_gravel.hit": { - "protocol_id": 570 - }, - "minecraft:block.suspicious_gravel.place": { - "protocol_id": 569 - }, - "minecraft:block.suspicious_gravel.step": { - "protocol_id": 568 - }, - "minecraft:block.suspicious_sand.break": { - "protocol_id": 562 - }, - "minecraft:block.suspicious_sand.fall": { - "protocol_id": 566 - }, - "minecraft:block.suspicious_sand.hit": { - "protocol_id": 565 - }, - "minecraft:block.suspicious_sand.place": { - "protocol_id": 564 - }, - "minecraft:block.suspicious_sand.step": { - "protocol_id": 563 - }, - "minecraft:block.sweet_berry_bush.break": { - "protocol_id": 1414 - }, - "minecraft:block.sweet_berry_bush.pick_berries": { - "protocol_id": 1416 - }, - "minecraft:block.sweet_berry_bush.place": { - "protocol_id": 1415 - }, - "minecraft:block.trial_spawner.about_to_spawn_item": { - "protocol_id": 703 - }, - "minecraft:block.trial_spawner.ambient": { - "protocol_id": 708 - }, - "minecraft:block.trial_spawner.ambient_ominous": { - "protocol_id": 709 - }, - "minecraft:block.trial_spawner.break": { - "protocol_id": 697 - }, - "minecraft:block.trial_spawner.close_shutter": { - "protocol_id": 711 - }, - "minecraft:block.trial_spawner.detect_player": { - "protocol_id": 706 - }, - "minecraft:block.trial_spawner.eject_item": { - "protocol_id": 712 - }, - "minecraft:block.trial_spawner.fall": { - "protocol_id": 701 - }, - "minecraft:block.trial_spawner.hit": { - "protocol_id": 700 - }, - "minecraft:block.trial_spawner.ominous_activate": { - "protocol_id": 707 - }, - "minecraft:block.trial_spawner.open_shutter": { - "protocol_id": 710 - }, - "minecraft:block.trial_spawner.place": { - "protocol_id": 699 - }, - "minecraft:block.trial_spawner.spawn_item": { - "protocol_id": 704 - }, - "minecraft:block.trial_spawner.spawn_item_begin": { - "protocol_id": 705 - }, - "minecraft:block.trial_spawner.spawn_mob": { - "protocol_id": 702 - }, - "minecraft:block.trial_spawner.step": { - "protocol_id": 698 - }, - "minecraft:block.tripwire.attach": { - "protocol_id": 1432 - }, - "minecraft:block.tripwire.click_off": { - "protocol_id": 1433 - }, - "minecraft:block.tripwire.click_on": { - "protocol_id": 1434 - }, - "minecraft:block.tripwire.detach": { - "protocol_id": 1435 - }, - "minecraft:block.tuff.break": { - "protocol_id": 1440 - }, - "minecraft:block.tuff.fall": { - "protocol_id": 1444 - }, - "minecraft:block.tuff.hit": { - "protocol_id": 1443 - }, - "minecraft:block.tuff.place": { - "protocol_id": 1442 - }, - "minecraft:block.tuff.step": { - "protocol_id": 1441 - }, - "minecraft:block.tuff_bricks.break": { - "protocol_id": 1445 - }, - "minecraft:block.tuff_bricks.fall": { - "protocol_id": 1446 - }, - "minecraft:block.tuff_bricks.hit": { - "protocol_id": 1447 - }, - "minecraft:block.tuff_bricks.place": { - "protocol_id": 1448 - }, - "minecraft:block.tuff_bricks.step": { - "protocol_id": 1449 - }, - "minecraft:block.vault.activate": { - "protocol_id": 1476 - }, - "minecraft:block.vault.ambient": { - "protocol_id": 1477 - }, - "minecraft:block.vault.break": { - "protocol_id": 1478 - }, - "minecraft:block.vault.close_shutter": { - "protocol_id": 1479 - }, - "minecraft:block.vault.deactivate": { - "protocol_id": 1480 - }, - "minecraft:block.vault.eject_item": { - "protocol_id": 1481 - }, - "minecraft:block.vault.fall": { - "protocol_id": 1483 - }, - "minecraft:block.vault.hit": { - "protocol_id": 1484 - }, - "minecraft:block.vault.insert_item": { - "protocol_id": 1485 - }, - "minecraft:block.vault.insert_item_fail": { - "protocol_id": 1486 - }, - "minecraft:block.vault.open_shutter": { - "protocol_id": 1487 - }, - "minecraft:block.vault.place": { - "protocol_id": 1488 - }, - "minecraft:block.vault.reject_rewarded_player": { - "protocol_id": 1482 - }, - "minecraft:block.vault.step": { - "protocol_id": 1489 - }, - "minecraft:block.vine.break": { - "protocol_id": 1518 - }, - "minecraft:block.vine.fall": { - "protocol_id": 1519 - }, - "minecraft:block.vine.hit": { - "protocol_id": 1520 - }, - "minecraft:block.vine.place": { - "protocol_id": 1521 - }, - "minecraft:block.vine.step": { - "protocol_id": 1522 - }, - "minecraft:block.wart_block.break": { - "protocol_id": 995 - }, - "minecraft:block.wart_block.fall": { + "minecraft:block.fungus.break": { "protocol_id": 999 }, - "minecraft:block.wart_block.hit": { - "protocol_id": 998 + "minecraft:block.fungus.fall": { + "protocol_id": 1003 }, - "minecraft:block.wart_block.place": { - "protocol_id": 997 + "minecraft:block.fungus.hit": { + "protocol_id": 1002 }, - "minecraft:block.wart_block.step": { - "protocol_id": 996 + "minecraft:block.fungus.place": { + "protocol_id": 1001 }, - "minecraft:block.water.ambient": { - "protocol_id": 1556 + "minecraft:block.fungus.step": { + "protocol_id": 1000 }, - "minecraft:block.weeping_vines.break": { - "protocol_id": 990 + "minecraft:block.furnace.fire_crackle": { + "protocol_id": 600 }, - "minecraft:block.weeping_vines.fall": { + "minecraft:block.gilded_blackstone.break": { + "protocol_id": 618 + }, + "minecraft:block.gilded_blackstone.fall": { + "protocol_id": 619 + }, + "minecraft:block.gilded_blackstone.hit": { + "protocol_id": 620 + }, + "minecraft:block.gilded_blackstone.place": { + "protocol_id": 621 + }, + "minecraft:block.gilded_blackstone.step": { + "protocol_id": 622 + }, + "minecraft:block.glass.break": { + "protocol_id": 623 + }, + "minecraft:block.glass.fall": { + "protocol_id": 624 + }, + "minecraft:block.glass.hit": { + "protocol_id": 625 + }, + "minecraft:block.glass.place": { + "protocol_id": 626 + }, + "minecraft:block.glass.step": { + "protocol_id": 627 + }, + "minecraft:block.grass.break": { + "protocol_id": 656 + }, + "minecraft:block.grass.fall": { + "protocol_id": 657 + }, + "minecraft:block.grass.hit": { + "protocol_id": 658 + }, + "minecraft:block.grass.place": { + "protocol_id": 659 + }, + "minecraft:block.grass.step": { + "protocol_id": 660 + }, + "minecraft:block.gravel.break": { + "protocol_id": 661 + }, + "minecraft:block.gravel.fall": { + "protocol_id": 662 + }, + "minecraft:block.gravel.hit": { + "protocol_id": 663 + }, + "minecraft:block.gravel.place": { + "protocol_id": 664 + }, + "minecraft:block.gravel.step": { + "protocol_id": 665 + }, + "minecraft:block.grindstone.use": { + "protocol_id": 666 + }, + "minecraft:block.growing_plant.crop": { + "protocol_id": 667 + }, + "minecraft:block.hanging_roots.break": { + "protocol_id": 676 + }, + "minecraft:block.hanging_roots.fall": { + "protocol_id": 677 + }, + "minecraft:block.hanging_roots.hit": { + "protocol_id": 678 + }, + "minecraft:block.hanging_roots.place": { + "protocol_id": 679 + }, + "minecraft:block.hanging_roots.step": { + "protocol_id": 680 + }, + "minecraft:block.hanging_sign.break": { + "protocol_id": 682 + }, + "minecraft:block.hanging_sign.fall": { + "protocol_id": 683 + }, + "minecraft:block.hanging_sign.hit": { + "protocol_id": 684 + }, + "minecraft:block.hanging_sign.place": { + "protocol_id": 685 + }, + "minecraft:block.hanging_sign.step": { + "protocol_id": 681 + }, + "minecraft:block.hanging_sign.waxed_interact_fail": { + "protocol_id": 1570 + }, + "minecraft:block.heavy_core.break": { + "protocol_id": 686 + }, + "minecraft:block.heavy_core.fall": { + "protocol_id": 687 + }, + "minecraft:block.heavy_core.hit": { + "protocol_id": 688 + }, + "minecraft:block.heavy_core.place": { + "protocol_id": 689 + }, + "minecraft:block.heavy_core.step": { + "protocol_id": 690 + }, + "minecraft:block.honey_block.break": { + "protocol_id": 726 + }, + "minecraft:block.honey_block.fall": { + "protocol_id": 727 + }, + "minecraft:block.honey_block.hit": { + "protocol_id": 728 + }, + "minecraft:block.honey_block.place": { + "protocol_id": 729 + }, + "minecraft:block.honey_block.slide": { + "protocol_id": 730 + }, + "minecraft:block.honey_block.step": { + "protocol_id": 731 + }, + "minecraft:block.iron.break": { + "protocol_id": 774 + }, + "minecraft:block.iron.fall": { + "protocol_id": 778 + }, + "minecraft:block.iron.hit": { + "protocol_id": 777 + }, + "minecraft:block.iron.place": { + "protocol_id": 776 + }, + "minecraft:block.iron.step": { + "protocol_id": 775 + }, + "minecraft:block.iron_door.close": { + "protocol_id": 779 + }, + "minecraft:block.iron_door.open": { + "protocol_id": 780 + }, + "minecraft:block.iron_trapdoor.close": { + "protocol_id": 787 + }, + "minecraft:block.iron_trapdoor.open": { + "protocol_id": 788 + }, + "minecraft:block.ladder.break": { + "protocol_id": 796 + }, + "minecraft:block.ladder.fall": { + "protocol_id": 797 + }, + "minecraft:block.ladder.hit": { + "protocol_id": 798 + }, + "minecraft:block.ladder.place": { + "protocol_id": 799 + }, + "minecraft:block.ladder.step": { + "protocol_id": 800 + }, + "minecraft:block.lantern.break": { + "protocol_id": 801 + }, + "minecraft:block.lantern.fall": { + "protocol_id": 802 + }, + "minecraft:block.lantern.hit": { + "protocol_id": 803 + }, + "minecraft:block.lantern.place": { + "protocol_id": 804 + }, + "minecraft:block.lantern.step": { + "protocol_id": 805 + }, + "minecraft:block.large_amethyst_bud.break": { + "protocol_id": 806 + }, + "minecraft:block.large_amethyst_bud.place": { + "protocol_id": 807 + }, + "minecraft:block.lava.ambient": { + "protocol_id": 808 + }, + "minecraft:block.lava.extinguish": { + "protocol_id": 809 + }, + "minecraft:block.lava.pop": { + "protocol_id": 810 + }, + "minecraft:block.leaf_litter.break": { + "protocol_id": 811 + }, + "minecraft:block.leaf_litter.fall": { + "protocol_id": 815 + }, + "minecraft:block.leaf_litter.hit": { + "protocol_id": 814 + }, + "minecraft:block.leaf_litter.place": { + "protocol_id": 813 + }, + "minecraft:block.leaf_litter.step": { + "protocol_id": 812 + }, + "minecraft:block.lever.click": { + "protocol_id": 818 + }, + "minecraft:block.lily_pad.place": { + "protocol_id": 1539 + }, + "minecraft:block.lodestone.break": { + "protocol_id": 832 + }, + "minecraft:block.lodestone.fall": { + "protocol_id": 836 + }, + "minecraft:block.lodestone.hit": { + "protocol_id": 835 + }, + "minecraft:block.lodestone.place": { + "protocol_id": 834 + }, + "minecraft:block.lodestone.step": { + "protocol_id": 833 + }, + "minecraft:block.mangrove_roots.break": { + "protocol_id": 847 + }, + "minecraft:block.mangrove_roots.fall": { + "protocol_id": 848 + }, + "minecraft:block.mangrove_roots.hit": { + "protocol_id": 849 + }, + "minecraft:block.mangrove_roots.place": { + "protocol_id": 850 + }, + "minecraft:block.mangrove_roots.step": { + "protocol_id": 851 + }, + "minecraft:block.medium_amethyst_bud.break": { + "protocol_id": 852 + }, + "minecraft:block.medium_amethyst_bud.place": { + "protocol_id": 853 + }, + "minecraft:block.metal.break": { + "protocol_id": 854 + }, + "minecraft:block.metal.fall": { + "protocol_id": 855 + }, + "minecraft:block.metal.hit": { + "protocol_id": 856 + }, + "minecraft:block.metal.place": { + "protocol_id": 857 + }, + "minecraft:block.metal.step": { + "protocol_id": 860 + }, + "minecraft:block.metal_pressure_plate.click_off": { + "protocol_id": 858 + }, + "minecraft:block.metal_pressure_plate.click_on": { + "protocol_id": 859 + }, + "minecraft:block.moss.break": { + "protocol_id": 879 + }, + "minecraft:block.moss.fall": { + "protocol_id": 880 + }, + "minecraft:block.moss.hit": { + "protocol_id": 881 + }, + "minecraft:block.moss.place": { + "protocol_id": 882 + }, + "minecraft:block.moss.step": { + "protocol_id": 883 + }, + "minecraft:block.moss_carpet.break": { + "protocol_id": 869 + }, + "minecraft:block.moss_carpet.fall": { + "protocol_id": 870 + }, + "minecraft:block.moss_carpet.hit": { + "protocol_id": 871 + }, + "minecraft:block.moss_carpet.place": { + "protocol_id": 872 + }, + "minecraft:block.moss_carpet.step": { + "protocol_id": 873 + }, + "minecraft:block.mud.break": { + "protocol_id": 884 + }, + "minecraft:block.mud.fall": { + "protocol_id": 885 + }, + "minecraft:block.mud.hit": { + "protocol_id": 886 + }, + "minecraft:block.mud.place": { + "protocol_id": 887 + }, + "minecraft:block.mud.step": { + "protocol_id": 888 + }, + "minecraft:block.mud_bricks.break": { + "protocol_id": 889 + }, + "minecraft:block.mud_bricks.fall": { + "protocol_id": 890 + }, + "minecraft:block.mud_bricks.hit": { + "protocol_id": 891 + }, + "minecraft:block.mud_bricks.place": { + "protocol_id": 892 + }, + "minecraft:block.mud_bricks.step": { + "protocol_id": 893 + }, + "minecraft:block.muddy_mangrove_roots.break": { + "protocol_id": 894 + }, + "minecraft:block.muddy_mangrove_roots.fall": { + "protocol_id": 895 + }, + "minecraft:block.muddy_mangrove_roots.hit": { + "protocol_id": 896 + }, + "minecraft:block.muddy_mangrove_roots.place": { + "protocol_id": 897 + }, + "minecraft:block.muddy_mangrove_roots.step": { + "protocol_id": 898 + }, + "minecraft:block.nether_bricks.break": { + "protocol_id": 956 + }, + "minecraft:block.nether_bricks.fall": { + "protocol_id": 960 + }, + "minecraft:block.nether_bricks.hit": { + "protocol_id": 959 + }, + "minecraft:block.nether_bricks.place": { + "protocol_id": 958 + }, + "minecraft:block.nether_bricks.step": { + "protocol_id": 957 + }, + "minecraft:block.nether_gold_ore.break": { + "protocol_id": 1201 + }, + "minecraft:block.nether_gold_ore.fall": { + "protocol_id": 1202 + }, + "minecraft:block.nether_gold_ore.hit": { + "protocol_id": 1203 + }, + "minecraft:block.nether_gold_ore.place": { + "protocol_id": 1204 + }, + "minecraft:block.nether_gold_ore.step": { + "protocol_id": 1205 + }, + "minecraft:block.nether_ore.break": { + "protocol_id": 1206 + }, + "minecraft:block.nether_ore.fall": { + "protocol_id": 1207 + }, + "minecraft:block.nether_ore.hit": { + "protocol_id": 1208 + }, + "minecraft:block.nether_ore.place": { + "protocol_id": 1209 + }, + "minecraft:block.nether_ore.step": { + "protocol_id": 1210 + }, + "minecraft:block.nether_sprouts.break": { "protocol_id": 994 }, - "minecraft:block.weeping_vines.hit": { + "minecraft:block.nether_sprouts.fall": { + "protocol_id": 998 + }, + "minecraft:block.nether_sprouts.hit": { + "protocol_id": 997 + }, + "minecraft:block.nether_sprouts.place": { + "protocol_id": 996 + }, + "minecraft:block.nether_sprouts.step": { + "protocol_id": 995 + }, + "minecraft:block.nether_wart.break": { + "protocol_id": 961 + }, + "minecraft:block.nether_wood.break": { + "protocol_id": 963 + }, + "minecraft:block.nether_wood.fall": { + "protocol_id": 964 + }, + "minecraft:block.nether_wood.hit": { + "protocol_id": 965 + }, + "minecraft:block.nether_wood.place": { + "protocol_id": 966 + }, + "minecraft:block.nether_wood.step": { + "protocol_id": 967 + }, + "minecraft:block.nether_wood_button.click_off": { + "protocol_id": 972 + }, + "minecraft:block.nether_wood_button.click_on": { + "protocol_id": 973 + }, + "minecraft:block.nether_wood_door.close": { + "protocol_id": 968 + }, + "minecraft:block.nether_wood_door.open": { + "protocol_id": 969 + }, + "minecraft:block.nether_wood_fence_gate.close": { + "protocol_id": 976 + }, + "minecraft:block.nether_wood_fence_gate.open": { + "protocol_id": 977 + }, + "minecraft:block.nether_wood_hanging_sign.break": { + "protocol_id": 692 + }, + "minecraft:block.nether_wood_hanging_sign.fall": { + "protocol_id": 693 + }, + "minecraft:block.nether_wood_hanging_sign.hit": { + "protocol_id": 694 + }, + "minecraft:block.nether_wood_hanging_sign.place": { + "protocol_id": 695 + }, + "minecraft:block.nether_wood_hanging_sign.step": { + "protocol_id": 691 + }, + "minecraft:block.nether_wood_pressure_plate.click_off": { + "protocol_id": 974 + }, + "minecraft:block.nether_wood_pressure_plate.click_on": { + "protocol_id": 975 + }, + "minecraft:block.nether_wood_trapdoor.close": { + "protocol_id": 970 + }, + "minecraft:block.nether_wood_trapdoor.open": { + "protocol_id": 971 + }, + "minecraft:block.netherite_block.break": { + "protocol_id": 1014 + }, + "minecraft:block.netherite_block.fall": { + "protocol_id": 1018 + }, + "minecraft:block.netherite_block.hit": { + "protocol_id": 1017 + }, + "minecraft:block.netherite_block.place": { + "protocol_id": 1016 + }, + "minecraft:block.netherite_block.step": { + "protocol_id": 1015 + }, + "minecraft:block.netherrack.break": { + "protocol_id": 1019 + }, + "minecraft:block.netherrack.fall": { + "protocol_id": 1023 + }, + "minecraft:block.netherrack.hit": { + "protocol_id": 1022 + }, + "minecraft:block.netherrack.place": { + "protocol_id": 1021 + }, + "minecraft:block.netherrack.step": { + "protocol_id": 1020 + }, + "minecraft:block.note_block.banjo": { + "protocol_id": 1039 + }, + "minecraft:block.note_block.basedrum": { + "protocol_id": 1024 + }, + "minecraft:block.note_block.bass": { + "protocol_id": 1025 + }, + "minecraft:block.note_block.bell": { + "protocol_id": 1026 + }, + "minecraft:block.note_block.bit": { + "protocol_id": 1038 + }, + "minecraft:block.note_block.chime": { + "protocol_id": 1027 + }, + "minecraft:block.note_block.cow_bell": { + "protocol_id": 1036 + }, + "minecraft:block.note_block.didgeridoo": { + "protocol_id": 1037 + }, + "minecraft:block.note_block.flute": { + "protocol_id": 1028 + }, + "minecraft:block.note_block.guitar": { + "protocol_id": 1029 + }, + "minecraft:block.note_block.harp": { + "protocol_id": 1030 + }, + "minecraft:block.note_block.hat": { + "protocol_id": 1031 + }, + "minecraft:block.note_block.imitate.creeper": { + "protocol_id": 1042 + }, + "minecraft:block.note_block.imitate.ender_dragon": { + "protocol_id": 1043 + }, + "minecraft:block.note_block.imitate.piglin": { + "protocol_id": 1045 + }, + "minecraft:block.note_block.imitate.skeleton": { + "protocol_id": 1041 + }, + "minecraft:block.note_block.imitate.wither_skeleton": { + "protocol_id": 1044 + }, + "minecraft:block.note_block.imitate.zombie": { + "protocol_id": 1040 + }, + "minecraft:block.note_block.iron_xylophone": { + "protocol_id": 1035 + }, + "minecraft:block.note_block.pling": { + "protocol_id": 1032 + }, + "minecraft:block.note_block.snare": { + "protocol_id": 1033 + }, + "minecraft:block.note_block.xylophone": { + "protocol_id": 1034 + }, + "minecraft:block.nylium.break": { + "protocol_id": 989 + }, + "minecraft:block.nylium.fall": { "protocol_id": 993 }, - "minecraft:block.weeping_vines.place": { + "minecraft:block.nylium.hit": { "protocol_id": 992 }, - "minecraft:block.weeping_vines.step": { + "minecraft:block.nylium.place": { "protocol_id": 991 }, + "minecraft:block.nylium.step": { + "protocol_id": 990 + }, + "minecraft:block.packed_mud.break": { + "protocol_id": 979 + }, + "minecraft:block.packed_mud.fall": { + "protocol_id": 980 + }, + "minecraft:block.packed_mud.hit": { + "protocol_id": 981 + }, + "minecraft:block.packed_mud.place": { + "protocol_id": 982 + }, + "minecraft:block.packed_mud.step": { + "protocol_id": 983 + }, + "minecraft:block.pale_hanging_moss.idle": { + "protocol_id": 1052 + }, + "minecraft:block.pink_petals.break": { + "protocol_id": 874 + }, + "minecraft:block.pink_petals.fall": { + "protocol_id": 875 + }, + "minecraft:block.pink_petals.hit": { + "protocol_id": 876 + }, + "minecraft:block.pink_petals.place": { + "protocol_id": 877 + }, + "minecraft:block.pink_petals.step": { + "protocol_id": 878 + }, + "minecraft:block.piston.contract": { + "protocol_id": 1137 + }, + "minecraft:block.piston.extend": { + "protocol_id": 1138 + }, + "minecraft:block.pointed_dripstone.break": { + "protocol_id": 457 + }, + "minecraft:block.pointed_dripstone.drip_lava": { + "protocol_id": 463 + }, + "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": { + "protocol_id": 465 + }, + "minecraft:block.pointed_dripstone.drip_water": { + "protocol_id": 464 + }, + "minecraft:block.pointed_dripstone.drip_water_into_cauldron": { + "protocol_id": 466 + }, + "minecraft:block.pointed_dripstone.fall": { + "protocol_id": 461 + }, + "minecraft:block.pointed_dripstone.hit": { + "protocol_id": 460 + }, + "minecraft:block.pointed_dripstone.land": { + "protocol_id": 462 + }, + "minecraft:block.pointed_dripstone.place": { + "protocol_id": 459 + }, + "minecraft:block.pointed_dripstone.step": { + "protocol_id": 458 + }, + "minecraft:block.polished_deepslate.break": { + "protocol_id": 1166 + }, + "minecraft:block.polished_deepslate.fall": { + "protocol_id": 1167 + }, + "minecraft:block.polished_deepslate.hit": { + "protocol_id": 1168 + }, + "minecraft:block.polished_deepslate.place": { + "protocol_id": 1169 + }, + "minecraft:block.polished_deepslate.step": { + "protocol_id": 1170 + }, + "minecraft:block.polished_tuff.break": { + "protocol_id": 1466 + }, + "minecraft:block.polished_tuff.fall": { + "protocol_id": 1467 + }, + "minecraft:block.polished_tuff.hit": { + "protocol_id": 1468 + }, + "minecraft:block.polished_tuff.place": { + "protocol_id": 1469 + }, + "minecraft:block.polished_tuff.step": { + "protocol_id": 1470 + }, + "minecraft:block.portal.ambient": { + "protocol_id": 1171 + }, + "minecraft:block.portal.travel": { + "protocol_id": 1172 + }, + "minecraft:block.portal.trigger": { + "protocol_id": 1173 + }, + "minecraft:block.powder_snow.break": { + "protocol_id": 1174 + }, + "minecraft:block.powder_snow.fall": { + "protocol_id": 1175 + }, + "minecraft:block.powder_snow.hit": { + "protocol_id": 1176 + }, + "minecraft:block.powder_snow.place": { + "protocol_id": 1177 + }, + "minecraft:block.powder_snow.step": { + "protocol_id": 1178 + }, + "minecraft:block.pumpkin.carve": { + "protocol_id": 1186 + }, + "minecraft:block.redstone_torch.burnout": { + "protocol_id": 1211 + }, + "minecraft:block.resin.break": { + "protocol_id": 1344 + }, + "minecraft:block.resin.fall": { + "protocol_id": 1345 + }, + "minecraft:block.resin.place": { + "protocol_id": 1346 + }, + "minecraft:block.resin.step": { + "protocol_id": 1347 + }, + "minecraft:block.resin_bricks.break": { + "protocol_id": 1348 + }, + "minecraft:block.resin_bricks.fall": { + "protocol_id": 1349 + }, + "minecraft:block.resin_bricks.hit": { + "protocol_id": 1350 + }, + "minecraft:block.resin_bricks.place": { + "protocol_id": 1351 + }, + "minecraft:block.resin_bricks.step": { + "protocol_id": 1352 + }, + "minecraft:block.respawn_anchor.ambient": { + "protocol_id": 1212 + }, + "minecraft:block.respawn_anchor.charge": { + "protocol_id": 1213 + }, + "minecraft:block.respawn_anchor.deplete": { + "protocol_id": 1214 + }, + "minecraft:block.respawn_anchor.set_spawn": { + "protocol_id": 1215 + }, + "minecraft:block.rooted_dirt.break": { + "protocol_id": 1216 + }, + "minecraft:block.rooted_dirt.fall": { + "protocol_id": 1217 + }, + "minecraft:block.rooted_dirt.hit": { + "protocol_id": 1218 + }, + "minecraft:block.rooted_dirt.place": { + "protocol_id": 1219 + }, + "minecraft:block.rooted_dirt.step": { + "protocol_id": 1220 + }, + "minecraft:block.roots.break": { + "protocol_id": 595 + }, + "minecraft:block.roots.fall": { + "protocol_id": 599 + }, + "minecraft:block.roots.hit": { + "protocol_id": 598 + }, + "minecraft:block.roots.place": { + "protocol_id": 597 + }, + "minecraft:block.roots.step": { + "protocol_id": 596 + }, + "minecraft:block.sand.break": { + "protocol_id": 1225 + }, + "minecraft:block.sand.fall": { + "protocol_id": 1226 + }, + "minecraft:block.sand.hit": { + "protocol_id": 1227 + }, + "minecraft:block.sand.idle": { + "protocol_id": 1230 + }, + "minecraft:block.sand.place": { + "protocol_id": 1228 + }, + "minecraft:block.sand.step": { + "protocol_id": 1229 + }, + "minecraft:block.sand.wind": { + "protocol_id": 1231 + }, + "minecraft:block.scaffolding.break": { + "protocol_id": 1232 + }, + "minecraft:block.scaffolding.fall": { + "protocol_id": 1233 + }, + "minecraft:block.scaffolding.hit": { + "protocol_id": 1234 + }, + "minecraft:block.scaffolding.place": { + "protocol_id": 1235 + }, + "minecraft:block.scaffolding.step": { + "protocol_id": 1236 + }, + "minecraft:block.sculk.break": { + "protocol_id": 1239 + }, + "minecraft:block.sculk.charge": { + "protocol_id": 1238 + }, + "minecraft:block.sculk.fall": { + "protocol_id": 1240 + }, + "minecraft:block.sculk.hit": { + "protocol_id": 1241 + }, + "minecraft:block.sculk.place": { + "protocol_id": 1242 + }, + "minecraft:block.sculk.spread": { + "protocol_id": 1237 + }, + "minecraft:block.sculk.step": { + "protocol_id": 1243 + }, + "minecraft:block.sculk_catalyst.bloom": { + "protocol_id": 1244 + }, + "minecraft:block.sculk_catalyst.break": { + "protocol_id": 1245 + }, + "minecraft:block.sculk_catalyst.fall": { + "protocol_id": 1246 + }, + "minecraft:block.sculk_catalyst.hit": { + "protocol_id": 1247 + }, + "minecraft:block.sculk_catalyst.place": { + "protocol_id": 1248 + }, + "minecraft:block.sculk_catalyst.step": { + "protocol_id": 1249 + }, + "minecraft:block.sculk_sensor.break": { + "protocol_id": 1252 + }, + "minecraft:block.sculk_sensor.clicking": { + "protocol_id": 1250 + }, + "minecraft:block.sculk_sensor.clicking_stop": { + "protocol_id": 1251 + }, + "minecraft:block.sculk_sensor.fall": { + "protocol_id": 1253 + }, + "minecraft:block.sculk_sensor.hit": { + "protocol_id": 1254 + }, + "minecraft:block.sculk_sensor.place": { + "protocol_id": 1255 + }, + "minecraft:block.sculk_sensor.step": { + "protocol_id": 1256 + }, + "minecraft:block.sculk_shrieker.break": { + "protocol_id": 1257 + }, + "minecraft:block.sculk_shrieker.fall": { + "protocol_id": 1258 + }, + "minecraft:block.sculk_shrieker.hit": { + "protocol_id": 1259 + }, + "minecraft:block.sculk_shrieker.place": { + "protocol_id": 1260 + }, + "minecraft:block.sculk_shrieker.shriek": { + "protocol_id": 1261 + }, + "minecraft:block.sculk_shrieker.step": { + "protocol_id": 1262 + }, + "minecraft:block.sculk_vein.break": { + "protocol_id": 1263 + }, + "minecraft:block.sculk_vein.fall": { + "protocol_id": 1264 + }, + "minecraft:block.sculk_vein.hit": { + "protocol_id": 1265 + }, + "minecraft:block.sculk_vein.place": { + "protocol_id": 1266 + }, + "minecraft:block.sculk_vein.step": { + "protocol_id": 1267 + }, + "minecraft:block.shroomlight.break": { + "protocol_id": 1275 + }, + "minecraft:block.shroomlight.fall": { + "protocol_id": 1279 + }, + "minecraft:block.shroomlight.hit": { + "protocol_id": 1278 + }, + "minecraft:block.shroomlight.place": { + "protocol_id": 1277 + }, + "minecraft:block.shroomlight.step": { + "protocol_id": 1276 + }, + "minecraft:block.shulker_box.close": { + "protocol_id": 1282 + }, + "minecraft:block.shulker_box.open": { + "protocol_id": 1283 + }, + "minecraft:block.sign.waxed_interact_fail": { + "protocol_id": 1571 + }, + "minecraft:block.slime_block.break": { + "protocol_id": 1316 + }, + "minecraft:block.slime_block.fall": { + "protocol_id": 1317 + }, + "minecraft:block.slime_block.hit": { + "protocol_id": 1318 + }, + "minecraft:block.slime_block.place": { + "protocol_id": 1319 + }, + "minecraft:block.slime_block.step": { + "protocol_id": 1320 + }, + "minecraft:block.small_amethyst_bud.break": { + "protocol_id": 1321 + }, + "minecraft:block.small_amethyst_bud.place": { + "protocol_id": 1322 + }, + "minecraft:block.small_dripleaf.break": { + "protocol_id": 1323 + }, + "minecraft:block.small_dripleaf.fall": { + "protocol_id": 1324 + }, + "minecraft:block.small_dripleaf.hit": { + "protocol_id": 1325 + }, + "minecraft:block.small_dripleaf.place": { + "protocol_id": 1326 + }, + "minecraft:block.small_dripleaf.step": { + "protocol_id": 1327 + }, + "minecraft:block.smithing_table.use": { + "protocol_id": 1371 + }, + "minecraft:block.smoker.smoke": { + "protocol_id": 1372 + }, + "minecraft:block.sniffer_egg.crack": { + "protocol_id": 1386 + }, + "minecraft:block.sniffer_egg.hatch": { + "protocol_id": 1387 + }, + "minecraft:block.sniffer_egg.plop": { + "protocol_id": 1385 + }, + "minecraft:block.snow.break": { + "protocol_id": 1389 + }, + "minecraft:block.snow.fall": { + "protocol_id": 1390 + }, + "minecraft:block.snow.hit": { + "protocol_id": 1396 + }, + "minecraft:block.snow.place": { + "protocol_id": 1397 + }, + "minecraft:block.snow.step": { + "protocol_id": 1398 + }, + "minecraft:block.soul_sand.break": { + "protocol_id": 1328 + }, + "minecraft:block.soul_sand.fall": { + "protocol_id": 1332 + }, + "minecraft:block.soul_sand.hit": { + "protocol_id": 1331 + }, + "minecraft:block.soul_sand.place": { + "protocol_id": 1330 + }, + "minecraft:block.soul_sand.step": { + "protocol_id": 1329 + }, + "minecraft:block.soul_soil.break": { + "protocol_id": 1333 + }, + "minecraft:block.soul_soil.fall": { + "protocol_id": 1337 + }, + "minecraft:block.soul_soil.hit": { + "protocol_id": 1336 + }, + "minecraft:block.soul_soil.place": { + "protocol_id": 1335 + }, + "minecraft:block.soul_soil.step": { + "protocol_id": 1334 + }, + "minecraft:block.spawner.break": { + "protocol_id": 1339 + }, + "minecraft:block.spawner.fall": { + "protocol_id": 1340 + }, + "minecraft:block.spawner.hit": { + "protocol_id": 1341 + }, + "minecraft:block.spawner.place": { + "protocol_id": 1342 + }, + "minecraft:block.spawner.step": { + "protocol_id": 1343 + }, + "minecraft:block.sponge.absorb": { + "protocol_id": 1410 + }, + "minecraft:block.sponge.break": { + "protocol_id": 1405 + }, + "minecraft:block.sponge.fall": { + "protocol_id": 1406 + }, + "minecraft:block.sponge.hit": { + "protocol_id": 1407 + }, + "minecraft:block.sponge.place": { + "protocol_id": 1408 + }, + "minecraft:block.sponge.step": { + "protocol_id": 1409 + }, + "minecraft:block.spore_blossom.break": { + "protocol_id": 1353 + }, + "minecraft:block.spore_blossom.fall": { + "protocol_id": 1354 + }, + "minecraft:block.spore_blossom.hit": { + "protocol_id": 1355 + }, + "minecraft:block.spore_blossom.place": { + "protocol_id": 1356 + }, + "minecraft:block.spore_blossom.step": { + "protocol_id": 1357 + }, + "minecraft:block.stem.break": { + "protocol_id": 984 + }, + "minecraft:block.stem.fall": { + "protocol_id": 988 + }, + "minecraft:block.stem.hit": { + "protocol_id": 987 + }, + "minecraft:block.stem.place": { + "protocol_id": 986 + }, + "minecraft:block.stem.step": { + "protocol_id": 985 + }, + "minecraft:block.stone.break": { + "protocol_id": 1417 + }, + "minecraft:block.stone.fall": { + "protocol_id": 1420 + }, + "minecraft:block.stone.hit": { + "protocol_id": 1421 + }, + "minecraft:block.stone.place": { + "protocol_id": 1422 + }, + "minecraft:block.stone.step": { + "protocol_id": 1425 + }, + "minecraft:block.stone_button.click_off": { + "protocol_id": 1418 + }, + "minecraft:block.stone_button.click_on": { + "protocol_id": 1419 + }, + "minecraft:block.stone_pressure_plate.click_off": { + "protocol_id": 1423 + }, + "minecraft:block.stone_pressure_plate.click_on": { + "protocol_id": 1424 + }, + "minecraft:block.suspicious_gravel.break": { + "protocol_id": 571 + }, + "minecraft:block.suspicious_gravel.fall": { + "protocol_id": 575 + }, + "minecraft:block.suspicious_gravel.hit": { + "protocol_id": 574 + }, + "minecraft:block.suspicious_gravel.place": { + "protocol_id": 573 + }, + "minecraft:block.suspicious_gravel.step": { + "protocol_id": 572 + }, + "minecraft:block.suspicious_sand.break": { + "protocol_id": 566 + }, + "minecraft:block.suspicious_sand.fall": { + "protocol_id": 570 + }, + "minecraft:block.suspicious_sand.hit": { + "protocol_id": 569 + }, + "minecraft:block.suspicious_sand.place": { + "protocol_id": 568 + }, + "minecraft:block.suspicious_sand.step": { + "protocol_id": 567 + }, + "minecraft:block.sweet_berry_bush.break": { + "protocol_id": 1430 + }, + "minecraft:block.sweet_berry_bush.pick_berries": { + "protocol_id": 1432 + }, + "minecraft:block.sweet_berry_bush.place": { + "protocol_id": 1431 + }, + "minecraft:block.trial_spawner.about_to_spawn_item": { + "protocol_id": 707 + }, + "minecraft:block.trial_spawner.ambient": { + "protocol_id": 712 + }, + "minecraft:block.trial_spawner.ambient_ominous": { + "protocol_id": 713 + }, + "minecraft:block.trial_spawner.break": { + "protocol_id": 701 + }, + "minecraft:block.trial_spawner.close_shutter": { + "protocol_id": 715 + }, + "minecraft:block.trial_spawner.detect_player": { + "protocol_id": 710 + }, + "minecraft:block.trial_spawner.eject_item": { + "protocol_id": 716 + }, + "minecraft:block.trial_spawner.fall": { + "protocol_id": 705 + }, + "minecraft:block.trial_spawner.hit": { + "protocol_id": 704 + }, + "minecraft:block.trial_spawner.ominous_activate": { + "protocol_id": 711 + }, + "minecraft:block.trial_spawner.open_shutter": { + "protocol_id": 714 + }, + "minecraft:block.trial_spawner.place": { + "protocol_id": 703 + }, + "minecraft:block.trial_spawner.spawn_item": { + "protocol_id": 708 + }, + "minecraft:block.trial_spawner.spawn_item_begin": { + "protocol_id": 709 + }, + "minecraft:block.trial_spawner.spawn_mob": { + "protocol_id": 706 + }, + "minecraft:block.trial_spawner.step": { + "protocol_id": 702 + }, + "minecraft:block.tripwire.attach": { + "protocol_id": 1448 + }, + "minecraft:block.tripwire.click_off": { + "protocol_id": 1449 + }, + "minecraft:block.tripwire.click_on": { + "protocol_id": 1450 + }, + "minecraft:block.tripwire.detach": { + "protocol_id": 1451 + }, + "minecraft:block.tuff.break": { + "protocol_id": 1456 + }, + "minecraft:block.tuff.fall": { + "protocol_id": 1460 + }, + "minecraft:block.tuff.hit": { + "protocol_id": 1459 + }, + "minecraft:block.tuff.place": { + "protocol_id": 1458 + }, + "minecraft:block.tuff.step": { + "protocol_id": 1457 + }, + "minecraft:block.tuff_bricks.break": { + "protocol_id": 1461 + }, + "minecraft:block.tuff_bricks.fall": { + "protocol_id": 1462 + }, + "minecraft:block.tuff_bricks.hit": { + "protocol_id": 1463 + }, + "minecraft:block.tuff_bricks.place": { + "protocol_id": 1464 + }, + "minecraft:block.tuff_bricks.step": { + "protocol_id": 1465 + }, + "minecraft:block.vault.activate": { + "protocol_id": 1492 + }, + "minecraft:block.vault.ambient": { + "protocol_id": 1493 + }, + "minecraft:block.vault.break": { + "protocol_id": 1494 + }, + "minecraft:block.vault.close_shutter": { + "protocol_id": 1495 + }, + "minecraft:block.vault.deactivate": { + "protocol_id": 1496 + }, + "minecraft:block.vault.eject_item": { + "protocol_id": 1497 + }, + "minecraft:block.vault.fall": { + "protocol_id": 1499 + }, + "minecraft:block.vault.hit": { + "protocol_id": 1500 + }, + "minecraft:block.vault.insert_item": { + "protocol_id": 1501 + }, + "minecraft:block.vault.insert_item_fail": { + "protocol_id": 1502 + }, + "minecraft:block.vault.open_shutter": { + "protocol_id": 1503 + }, + "minecraft:block.vault.place": { + "protocol_id": 1504 + }, + "minecraft:block.vault.reject_rewarded_player": { + "protocol_id": 1498 + }, + "minecraft:block.vault.step": { + "protocol_id": 1505 + }, + "minecraft:block.vine.break": { + "protocol_id": 1534 + }, + "minecraft:block.vine.fall": { + "protocol_id": 1535 + }, + "minecraft:block.vine.hit": { + "protocol_id": 1536 + }, + "minecraft:block.vine.place": { + "protocol_id": 1537 + }, + "minecraft:block.vine.step": { + "protocol_id": 1538 + }, + "minecraft:block.wart_block.break": { + "protocol_id": 1009 + }, + "minecraft:block.wart_block.fall": { + "protocol_id": 1013 + }, + "minecraft:block.wart_block.hit": { + "protocol_id": 1012 + }, + "minecraft:block.wart_block.place": { + "protocol_id": 1011 + }, + "minecraft:block.wart_block.step": { + "protocol_id": 1010 + }, + "minecraft:block.water.ambient": { + "protocol_id": 1572 + }, + "minecraft:block.weeping_vines.break": { + "protocol_id": 1004 + }, + "minecraft:block.weeping_vines.fall": { + "protocol_id": 1008 + }, + "minecraft:block.weeping_vines.hit": { + "protocol_id": 1007 + }, + "minecraft:block.weeping_vines.place": { + "protocol_id": 1006 + }, + "minecraft:block.weeping_vines.step": { + "protocol_id": 1005 + }, "minecraft:block.wet_grass.break": { - "protocol_id": 1559 + "protocol_id": 1575 }, "minecraft:block.wet_grass.fall": { - "protocol_id": 1560 + "protocol_id": 1576 }, "minecraft:block.wet_grass.hit": { - "protocol_id": 1561 + "protocol_id": 1577 }, "minecraft:block.wet_grass.place": { - "protocol_id": 1562 + "protocol_id": 1578 }, "minecraft:block.wet_grass.step": { - "protocol_id": 1563 + "protocol_id": 1579 }, "minecraft:block.wet_sponge.break": { - "protocol_id": 1564 + "protocol_id": 1580 }, "minecraft:block.wet_sponge.dries": { - "protocol_id": 1565 + "protocol_id": 1581 }, "minecraft:block.wet_sponge.fall": { - "protocol_id": 1566 + "protocol_id": 1582 }, "minecraft:block.wet_sponge.hit": { - "protocol_id": 1567 + "protocol_id": 1583 }, "minecraft:block.wet_sponge.place": { - "protocol_id": 1568 + "protocol_id": 1584 }, "minecraft:block.wet_sponge.step": { - "protocol_id": 1569 + "protocol_id": 1585 }, "minecraft:block.wood.break": { - "protocol_id": 1609 + "protocol_id": 1660 }, "minecraft:block.wood.fall": { - "protocol_id": 1610 + "protocol_id": 1661 }, "minecraft:block.wood.hit": { - "protocol_id": 1611 + "protocol_id": 1662 }, "minecraft:block.wood.place": { - "protocol_id": 1612 + "protocol_id": 1663 }, "minecraft:block.wood.step": { - "protocol_id": 1613 + "protocol_id": 1664 }, "minecraft:block.wooden_button.click_off": { - "protocol_id": 1605 + "protocol_id": 1656 }, "minecraft:block.wooden_button.click_on": { - "protocol_id": 1606 + "protocol_id": 1657 }, "minecraft:block.wooden_door.close": { - "protocol_id": 1601 + "protocol_id": 1652 }, "minecraft:block.wooden_door.open": { - "protocol_id": 1602 + "protocol_id": 1653 }, "minecraft:block.wooden_pressure_plate.click_off": { - "protocol_id": 1607 + "protocol_id": 1658 }, "minecraft:block.wooden_pressure_plate.click_on": { - "protocol_id": 1608 + "protocol_id": 1659 }, "minecraft:block.wooden_trapdoor.close": { - "protocol_id": 1603 + "protocol_id": 1654 }, "minecraft:block.wooden_trapdoor.open": { - "protocol_id": 1604 + "protocol_id": 1655 }, "minecraft:block.wool.break": { - "protocol_id": 1614 + "protocol_id": 1665 }, "minecraft:block.wool.fall": { - "protocol_id": 1615 + "protocol_id": 1666 }, "minecraft:block.wool.hit": { - "protocol_id": 1616 + "protocol_id": 1667 }, "minecraft:block.wool.place": { - "protocol_id": 1617 + "protocol_id": 1668 }, "minecraft:block.wool.step": { - "protocol_id": 1618 + "protocol_id": 1669 }, "minecraft:enchant.thorns.hit": { - "protocol_id": 1421 + "protocol_id": 1437 }, "minecraft:entity.allay.ambient_with_item": { "protocol_id": 0 @@ -14838,1948 +14990,2053 @@ "protocol_id": 198 }, "minecraft:entity.camel.ambient": { - "protocol_id": 233 - }, - "minecraft:entity.camel.dash": { - "protocol_id": 234 - }, - "minecraft:entity.camel.dash_ready": { "protocol_id": 235 }, - "minecraft:entity.camel.death": { + "minecraft:entity.camel.dash": { "protocol_id": 236 }, - "minecraft:entity.camel.eat": { + "minecraft:entity.camel.dash_ready": { "protocol_id": 237 }, - "minecraft:entity.camel.hurt": { + "minecraft:entity.camel.death": { "protocol_id": 238 }, - "minecraft:entity.camel.saddle": { + "minecraft:entity.camel.eat": { "protocol_id": 239 }, - "minecraft:entity.camel.sit": { + "minecraft:entity.camel.hurt": { "protocol_id": 240 }, - "minecraft:entity.camel.stand": { + "minecraft:entity.camel.saddle": { "protocol_id": 241 }, - "minecraft:entity.camel.step": { + "minecraft:entity.camel.sit": { "protocol_id": 242 }, - "minecraft:entity.camel.step_sand": { + "minecraft:entity.camel.stand": { "protocol_id": 243 }, + "minecraft:entity.camel.step": { + "protocol_id": 244 + }, + "minecraft:entity.camel.step_sand": { + "protocol_id": 245 + }, "minecraft:entity.cat.ambient": { - "protocol_id": 252 - }, - "minecraft:entity.cat.beg_for_food": { - "protocol_id": 257 - }, - "minecraft:entity.cat.death": { "protocol_id": 254 }, - "minecraft:entity.cat.eat": { - "protocol_id": 255 - }, - "minecraft:entity.cat.hiss": { - "protocol_id": 256 - }, - "minecraft:entity.cat.hurt": { - "protocol_id": 258 - }, - "minecraft:entity.cat.purr": { + "minecraft:entity.cat.beg_for_food": { "protocol_id": 259 }, - "minecraft:entity.cat.purreow": { + "minecraft:entity.cat.death": { + "protocol_id": 256 + }, + "minecraft:entity.cat.eat": { + "protocol_id": 257 + }, + "minecraft:entity.cat.hiss": { + "protocol_id": 258 + }, + "minecraft:entity.cat.hurt": { "protocol_id": 260 }, + "minecraft:entity.cat.purr": { + "protocol_id": 261 + }, + "minecraft:entity.cat.purreow": { + "protocol_id": 262 + }, "minecraft:entity.cat.stray_ambient": { - "protocol_id": 253 + "protocol_id": 255 }, "minecraft:entity.chicken.ambient": { - "protocol_id": 305 - }, - "minecraft:entity.chicken.death": { - "protocol_id": 306 - }, - "minecraft:entity.chicken.egg": { "protocol_id": 307 }, - "minecraft:entity.chicken.hurt": { + "minecraft:entity.chicken.death": { "protocol_id": 308 }, - "minecraft:entity.chicken.step": { + "minecraft:entity.chicken.egg": { "protocol_id": 309 }, + "minecraft:entity.chicken.hurt": { + "protocol_id": 310 + }, + "minecraft:entity.chicken.step": { + "protocol_id": 311 + }, "minecraft:entity.cod.ambient": { - "protocol_id": 327 - }, - "minecraft:entity.cod.death": { - "protocol_id": 328 - }, - "minecraft:entity.cod.flop": { "protocol_id": 329 }, - "minecraft:entity.cod.hurt": { + "minecraft:entity.cod.death": { "protocol_id": 330 }, + "minecraft:entity.cod.flop": { + "protocol_id": 331 + }, + "minecraft:entity.cod.hurt": { + "protocol_id": 332 + }, "minecraft:entity.cow.ambient": { - "protocol_id": 367 - }, - "minecraft:entity.cow.death": { - "protocol_id": 368 - }, - "minecraft:entity.cow.hurt": { "protocol_id": 369 }, - "minecraft:entity.cow.milk": { + "minecraft:entity.cow.death": { "protocol_id": 370 }, - "minecraft:entity.cow.step": { + "minecraft:entity.cow.hurt": { "protocol_id": 371 }, + "minecraft:entity.cow.milk": { + "protocol_id": 372 + }, + "minecraft:entity.cow.step": { + "protocol_id": 373 + }, "minecraft:entity.creaking.activate": { - "protocol_id": 375 - }, - "minecraft:entity.creaking.ambient": { - "protocol_id": 374 - }, - "minecraft:entity.creaking.attack": { "protocol_id": 377 }, - "minecraft:entity.creaking.deactivate": { + "minecraft:entity.creaking.ambient": { "protocol_id": 376 }, - "minecraft:entity.creaking.death": { - "protocol_id": 378 - }, - "minecraft:entity.creaking.freeze": { - "protocol_id": 380 - }, - "minecraft:entity.creaking.spawn": { - "protocol_id": 382 - }, - "minecraft:entity.creaking.step": { + "minecraft:entity.creaking.attack": { "protocol_id": 379 }, - "minecraft:entity.creaking.sway": { - "protocol_id": 383 + "minecraft:entity.creaking.deactivate": { + "protocol_id": 378 }, - "minecraft:entity.creaking.twitch": { + "minecraft:entity.creaking.death": { + "protocol_id": 380 + }, + "minecraft:entity.creaking.freeze": { + "protocol_id": 382 + }, + "minecraft:entity.creaking.spawn": { "protocol_id": 384 }, - "minecraft:entity.creaking.unfreeze": { + "minecraft:entity.creaking.step": { "protocol_id": 381 }, + "minecraft:entity.creaking.sway": { + "protocol_id": 385 + }, + "minecraft:entity.creaking.twitch": { + "protocol_id": 386 + }, + "minecraft:entity.creaking.unfreeze": { + "protocol_id": 383 + }, "minecraft:entity.creeper.death": { - "protocol_id": 393 - }, - "minecraft:entity.creeper.hurt": { - "protocol_id": 394 - }, - "minecraft:entity.creeper.primed": { "protocol_id": 395 }, + "minecraft:entity.creeper.hurt": { + "protocol_id": 396 + }, + "minecraft:entity.creeper.primed": { + "protocol_id": 397 + }, "minecraft:entity.dolphin.ambient": { - "protocol_id": 432 - }, - "minecraft:entity.dolphin.ambient_water": { - "protocol_id": 433 - }, - "minecraft:entity.dolphin.attack": { - "protocol_id": 434 - }, - "minecraft:entity.dolphin.death": { "protocol_id": 435 }, - "minecraft:entity.dolphin.eat": { + "minecraft:entity.dolphin.ambient_water": { "protocol_id": 436 }, - "minecraft:entity.dolphin.hurt": { + "minecraft:entity.dolphin.attack": { "protocol_id": 437 }, - "minecraft:entity.dolphin.jump": { + "minecraft:entity.dolphin.death": { "protocol_id": 438 }, - "minecraft:entity.dolphin.play": { + "minecraft:entity.dolphin.eat": { "protocol_id": 439 }, - "minecraft:entity.dolphin.splash": { + "minecraft:entity.dolphin.hurt": { "protocol_id": 440 }, - "minecraft:entity.dolphin.swim": { + "minecraft:entity.dolphin.jump": { "protocol_id": 441 }, - "minecraft:entity.donkey.ambient": { + "minecraft:entity.dolphin.play": { "protocol_id": 442 }, - "minecraft:entity.donkey.angry": { + "minecraft:entity.dolphin.splash": { "protocol_id": 443 }, - "minecraft:entity.donkey.chest": { + "minecraft:entity.dolphin.swim": { "protocol_id": 444 }, - "minecraft:entity.donkey.death": { + "minecraft:entity.donkey.ambient": { "protocol_id": 445 }, - "minecraft:entity.donkey.eat": { + "minecraft:entity.donkey.angry": { "protocol_id": 446 }, - "minecraft:entity.donkey.hurt": { + "minecraft:entity.donkey.chest": { "protocol_id": 447 }, - "minecraft:entity.donkey.jump": { + "minecraft:entity.donkey.death": { "protocol_id": 448 }, + "minecraft:entity.donkey.eat": { + "protocol_id": 449 + }, + "minecraft:entity.donkey.hurt": { + "protocol_id": 450 + }, + "minecraft:entity.donkey.jump": { + "protocol_id": 451 + }, "minecraft:entity.dragon_fireball.explode": { - "protocol_id": 491 - }, - "minecraft:entity.drowned.ambient": { - "protocol_id": 466 - }, - "minecraft:entity.drowned.ambient_water": { - "protocol_id": 467 - }, - "minecraft:entity.drowned.death": { - "protocol_id": 468 - }, - "minecraft:entity.drowned.death_water": { - "protocol_id": 469 - }, - "minecraft:entity.drowned.hurt": { - "protocol_id": 470 - }, - "minecraft:entity.drowned.hurt_water": { - "protocol_id": 471 - }, - "minecraft:entity.drowned.shoot": { - "protocol_id": 472 - }, - "minecraft:entity.drowned.step": { - "protocol_id": 473 - }, - "minecraft:entity.drowned.swim": { - "protocol_id": 474 - }, - "minecraft:entity.egg.throw": { - "protocol_id": 476 - }, - "minecraft:entity.elder_guardian.ambient": { - "protocol_id": 477 - }, - "minecraft:entity.elder_guardian.ambient_land": { - "protocol_id": 478 - }, - "minecraft:entity.elder_guardian.curse": { - "protocol_id": 479 - }, - "minecraft:entity.elder_guardian.death": { - "protocol_id": 480 - }, - "minecraft:entity.elder_guardian.death_land": { - "protocol_id": 481 - }, - "minecraft:entity.elder_guardian.flop": { - "protocol_id": 482 - }, - "minecraft:entity.elder_guardian.hurt": { - "protocol_id": 483 - }, - "minecraft:entity.elder_guardian.hurt_land": { - "protocol_id": 484 - }, - "minecraft:entity.ender_dragon.ambient": { - "protocol_id": 489 - }, - "minecraft:entity.ender_dragon.death": { - "protocol_id": 490 - }, - "minecraft:entity.ender_dragon.flap": { - "protocol_id": 492 - }, - "minecraft:entity.ender_dragon.growl": { - "protocol_id": 493 - }, - "minecraft:entity.ender_dragon.hurt": { "protocol_id": 494 }, - "minecraft:entity.ender_dragon.shoot": { + "minecraft:entity.drowned.ambient": { + "protocol_id": 469 + }, + "minecraft:entity.drowned.ambient_water": { + "protocol_id": 470 + }, + "minecraft:entity.drowned.death": { + "protocol_id": 471 + }, + "minecraft:entity.drowned.death_water": { + "protocol_id": 472 + }, + "minecraft:entity.drowned.hurt": { + "protocol_id": 473 + }, + "minecraft:entity.drowned.hurt_water": { + "protocol_id": 474 + }, + "minecraft:entity.drowned.shoot": { + "protocol_id": 475 + }, + "minecraft:entity.drowned.step": { + "protocol_id": 476 + }, + "minecraft:entity.drowned.swim": { + "protocol_id": 477 + }, + "minecraft:entity.egg.throw": { + "protocol_id": 479 + }, + "minecraft:entity.elder_guardian.ambient": { + "protocol_id": 480 + }, + "minecraft:entity.elder_guardian.ambient_land": { + "protocol_id": 481 + }, + "minecraft:entity.elder_guardian.curse": { + "protocol_id": 482 + }, + "minecraft:entity.elder_guardian.death": { + "protocol_id": 483 + }, + "minecraft:entity.elder_guardian.death_land": { + "protocol_id": 484 + }, + "minecraft:entity.elder_guardian.flop": { + "protocol_id": 485 + }, + "minecraft:entity.elder_guardian.hurt": { + "protocol_id": 486 + }, + "minecraft:entity.elder_guardian.hurt_land": { + "protocol_id": 487 + }, + "minecraft:entity.ender_dragon.ambient": { + "protocol_id": 492 + }, + "minecraft:entity.ender_dragon.death": { + "protocol_id": 493 + }, + "minecraft:entity.ender_dragon.flap": { "protocol_id": 495 }, - "minecraft:entity.ender_eye.death": { + "minecraft:entity.ender_dragon.growl": { "protocol_id": 496 }, - "minecraft:entity.ender_eye.launch": { + "minecraft:entity.ender_dragon.hurt": { "protocol_id": 497 }, - "minecraft:entity.ender_pearl.throw": { - "protocol_id": 508 - }, - "minecraft:entity.enderman.ambient": { + "minecraft:entity.ender_dragon.shoot": { "protocol_id": 498 }, - "minecraft:entity.enderman.death": { + "minecraft:entity.ender_eye.death": { "protocol_id": 499 }, - "minecraft:entity.enderman.hurt": { + "minecraft:entity.ender_eye.launch": { "protocol_id": 500 }, - "minecraft:entity.enderman.scream": { + "minecraft:entity.ender_pearl.throw": { + "protocol_id": 511 + }, + "minecraft:entity.enderman.ambient": { "protocol_id": 501 }, - "minecraft:entity.enderman.stare": { + "minecraft:entity.enderman.death": { "protocol_id": 502 }, - "minecraft:entity.enderman.teleport": { + "minecraft:entity.enderman.hurt": { "protocol_id": 503 }, - "minecraft:entity.endermite.ambient": { + "minecraft:entity.enderman.scream": { "protocol_id": 504 }, - "minecraft:entity.endermite.death": { + "minecraft:entity.enderman.stare": { "protocol_id": 505 }, - "minecraft:entity.endermite.hurt": { + "minecraft:entity.enderman.teleport": { "protocol_id": 506 }, - "minecraft:entity.endermite.step": { + "minecraft:entity.endermite.ambient": { "protocol_id": 507 }, + "minecraft:entity.endermite.death": { + "protocol_id": 508 + }, + "minecraft:entity.endermite.hurt": { + "protocol_id": 509 + }, + "minecraft:entity.endermite.step": { + "protocol_id": 510 + }, "minecraft:entity.evoker.ambient": { - "protocol_id": 512 - }, - "minecraft:entity.evoker.cast_spell": { - "protocol_id": 513 - }, - "minecraft:entity.evoker.celebrate": { - "protocol_id": 514 - }, - "minecraft:entity.evoker.death": { "protocol_id": 515 }, - "minecraft:entity.evoker.hurt": { - "protocol_id": 517 - }, - "minecraft:entity.evoker.prepare_attack": { - "protocol_id": 518 - }, - "minecraft:entity.evoker.prepare_summon": { - "protocol_id": 519 - }, - "minecraft:entity.evoker.prepare_wololo": { - "protocol_id": 520 - }, - "minecraft:entity.evoker_fangs.attack": { + "minecraft:entity.evoker.cast_spell": { "protocol_id": 516 }, - "minecraft:entity.experience_bottle.throw": { + "minecraft:entity.evoker.celebrate": { + "protocol_id": 517 + }, + "minecraft:entity.evoker.death": { + "protocol_id": 518 + }, + "minecraft:entity.evoker.hurt": { + "protocol_id": 520 + }, + "minecraft:entity.evoker.prepare_attack": { "protocol_id": 521 }, - "minecraft:entity.experience_orb.pickup": { + "minecraft:entity.evoker.prepare_summon": { "protocol_id": 522 }, + "minecraft:entity.evoker.prepare_wololo": { + "protocol_id": 523 + }, + "minecraft:entity.evoker_fangs.attack": { + "protocol_id": 519 + }, + "minecraft:entity.experience_bottle.throw": { + "protocol_id": 524 + }, + "minecraft:entity.experience_orb.pickup": { + "protocol_id": 525 + }, "minecraft:entity.firework_rocket.blast": { - "protocol_id": 531 - }, - "minecraft:entity.firework_rocket.blast_far": { - "protocol_id": 532 - }, - "minecraft:entity.firework_rocket.large_blast": { - "protocol_id": 533 - }, - "minecraft:entity.firework_rocket.large_blast_far": { - "protocol_id": 534 - }, - "minecraft:entity.firework_rocket.launch": { "protocol_id": 535 }, - "minecraft:entity.firework_rocket.shoot": { + "minecraft:entity.firework_rocket.blast_far": { "protocol_id": 536 }, - "minecraft:entity.firework_rocket.twinkle": { + "minecraft:entity.firework_rocket.large_blast": { "protocol_id": 537 }, - "minecraft:entity.firework_rocket.twinkle_far": { + "minecraft:entity.firework_rocket.large_blast_far": { "protocol_id": 538 }, - "minecraft:entity.fish.swim": { + "minecraft:entity.firework_rocket.launch": { + "protocol_id": 539 + }, + "minecraft:entity.firework_rocket.shoot": { + "protocol_id": 540 + }, + "minecraft:entity.firework_rocket.twinkle": { "protocol_id": 541 }, - "minecraft:entity.fishing_bobber.retrieve": { + "minecraft:entity.firework_rocket.twinkle_far": { "protocol_id": 542 }, + "minecraft:entity.fish.swim": { + "protocol_id": 545 + }, + "minecraft:entity.fishing_bobber.retrieve": { + "protocol_id": 546 + }, "minecraft:entity.fishing_bobber.splash": { - "protocol_id": 543 + "protocol_id": 547 }, "minecraft:entity.fishing_bobber.throw": { - "protocol_id": 544 + "protocol_id": 548 }, "minecraft:entity.fox.aggro": { - "protocol_id": 551 - }, - "minecraft:entity.fox.ambient": { - "protocol_id": 552 - }, - "minecraft:entity.fox.bite": { - "protocol_id": 553 - }, - "minecraft:entity.fox.death": { - "protocol_id": 554 - }, - "minecraft:entity.fox.eat": { "protocol_id": 555 }, - "minecraft:entity.fox.hurt": { + "minecraft:entity.fox.ambient": { "protocol_id": 556 }, - "minecraft:entity.fox.screech": { + "minecraft:entity.fox.bite": { "protocol_id": 557 }, - "minecraft:entity.fox.sleep": { + "minecraft:entity.fox.death": { "protocol_id": 558 }, - "minecraft:entity.fox.sniff": { + "minecraft:entity.fox.eat": { "protocol_id": 559 }, - "minecraft:entity.fox.spit": { + "minecraft:entity.fox.hurt": { "protocol_id": 560 }, - "minecraft:entity.fox.teleport": { + "minecraft:entity.fox.screech": { "protocol_id": 561 }, + "minecraft:entity.fox.sleep": { + "protocol_id": 562 + }, + "minecraft:entity.fox.sniff": { + "protocol_id": 563 + }, + "minecraft:entity.fox.spit": { + "protocol_id": 564 + }, + "minecraft:entity.fox.teleport": { + "protocol_id": 565 + }, "minecraft:entity.frog.ambient": { - "protocol_id": 583 - }, - "minecraft:entity.frog.death": { - "protocol_id": 584 - }, - "minecraft:entity.frog.eat": { - "protocol_id": 585 - }, - "minecraft:entity.frog.hurt": { - "protocol_id": 586 - }, - "minecraft:entity.frog.lay_spawn": { "protocol_id": 587 }, - "minecraft:entity.frog.long_jump": { + "minecraft:entity.frog.death": { "protocol_id": 588 }, - "minecraft:entity.frog.step": { + "minecraft:entity.frog.eat": { "protocol_id": 589 }, - "minecraft:entity.frog.tongue": { + "minecraft:entity.frog.hurt": { "protocol_id": 590 }, + "minecraft:entity.frog.lay_spawn": { + "protocol_id": 591 + }, + "minecraft:entity.frog.long_jump": { + "protocol_id": 592 + }, + "minecraft:entity.frog.step": { + "protocol_id": 593 + }, + "minecraft:entity.frog.tongue": { + "protocol_id": 594 + }, "minecraft:entity.generic.big_fall": { - "protocol_id": 597 - }, - "minecraft:entity.generic.burn": { - "protocol_id": 598 - }, - "minecraft:entity.generic.death": { - "protocol_id": 599 - }, - "minecraft:entity.generic.drink": { - "protocol_id": 600 - }, - "minecraft:entity.generic.eat": { "protocol_id": 601 }, - "minecraft:entity.generic.explode": { + "minecraft:entity.generic.burn": { "protocol_id": 602 }, - "minecraft:entity.generic.extinguish_fire": { + "minecraft:entity.generic.death": { "protocol_id": 603 }, - "minecraft:entity.generic.hurt": { + "minecraft:entity.generic.drink": { "protocol_id": 604 }, - "minecraft:entity.generic.small_fall": { + "minecraft:entity.generic.eat": { "protocol_id": 605 }, - "minecraft:entity.generic.splash": { + "minecraft:entity.generic.explode": { "protocol_id": 606 }, - "minecraft:entity.generic.swim": { + "minecraft:entity.generic.extinguish_fire": { "protocol_id": 607 }, - "minecraft:entity.ghast.ambient": { + "minecraft:entity.generic.hurt": { "protocol_id": 608 }, - "minecraft:entity.ghast.death": { + "minecraft:entity.generic.small_fall": { "protocol_id": 609 }, - "minecraft:entity.ghast.hurt": { + "minecraft:entity.generic.splash": { "protocol_id": 610 }, - "minecraft:entity.ghast.scream": { + "minecraft:entity.generic.swim": { "protocol_id": 611 }, - "minecraft:entity.ghast.shoot": { + "minecraft:entity.ghast.ambient": { "protocol_id": 612 }, - "minecraft:entity.ghast.warn": { + "minecraft:entity.ghast.death": { "protocol_id": 613 }, + "minecraft:entity.ghast.hurt": { + "protocol_id": 614 + }, + "minecraft:entity.ghast.scream": { + "protocol_id": 615 + }, + "minecraft:entity.ghast.shoot": { + "protocol_id": 616 + }, + "minecraft:entity.ghast.warn": { + "protocol_id": 617 + }, "minecraft:entity.glow_item_frame.add_item": { - "protocol_id": 625 - }, - "minecraft:entity.glow_item_frame.break": { - "protocol_id": 626 - }, - "minecraft:entity.glow_item_frame.place": { - "protocol_id": 627 - }, - "minecraft:entity.glow_item_frame.remove_item": { - "protocol_id": 628 - }, - "minecraft:entity.glow_item_frame.rotate_item": { "protocol_id": 629 }, - "minecraft:entity.glow_squid.ambient": { + "minecraft:entity.glow_item_frame.break": { "protocol_id": 630 }, - "minecraft:entity.glow_squid.death": { + "minecraft:entity.glow_item_frame.place": { "protocol_id": 631 }, - "minecraft:entity.glow_squid.hurt": { + "minecraft:entity.glow_item_frame.remove_item": { "protocol_id": 632 }, - "minecraft:entity.glow_squid.squirt": { + "minecraft:entity.glow_item_frame.rotate_item": { "protocol_id": 633 }, - "minecraft:entity.goat.ambient": { + "minecraft:entity.glow_squid.ambient": { "protocol_id": 634 }, - "minecraft:entity.goat.death": { + "minecraft:entity.glow_squid.death": { "protocol_id": 635 }, - "minecraft:entity.goat.eat": { + "minecraft:entity.glow_squid.hurt": { "protocol_id": 636 }, - "minecraft:entity.goat.horn_break": { - "protocol_id": 642 - }, - "minecraft:entity.goat.hurt": { + "minecraft:entity.glow_squid.squirt": { "protocol_id": 637 }, - "minecraft:entity.goat.long_jump": { + "minecraft:entity.goat.ambient": { "protocol_id": 638 }, - "minecraft:entity.goat.milk": { + "minecraft:entity.goat.death": { "protocol_id": 639 }, - "minecraft:entity.goat.prepare_ram": { + "minecraft:entity.goat.eat": { "protocol_id": 640 }, - "minecraft:entity.goat.ram_impact": { - "protocol_id": 641 - }, - "minecraft:entity.goat.screaming.ambient": { - "protocol_id": 643 - }, - "minecraft:entity.goat.screaming.death": { - "protocol_id": 644 - }, - "minecraft:entity.goat.screaming.eat": { - "protocol_id": 645 - }, - "minecraft:entity.goat.screaming.hurt": { + "minecraft:entity.goat.horn_break": { "protocol_id": 646 }, - "minecraft:entity.goat.screaming.long_jump": { + "minecraft:entity.goat.hurt": { + "protocol_id": 641 + }, + "minecraft:entity.goat.long_jump": { + "protocol_id": 642 + }, + "minecraft:entity.goat.milk": { + "protocol_id": 643 + }, + "minecraft:entity.goat.prepare_ram": { + "protocol_id": 644 + }, + "minecraft:entity.goat.ram_impact": { + "protocol_id": 645 + }, + "minecraft:entity.goat.screaming.ambient": { "protocol_id": 647 }, - "minecraft:entity.goat.screaming.milk": { + "minecraft:entity.goat.screaming.death": { "protocol_id": 648 }, - "minecraft:entity.goat.screaming.prepare_ram": { + "minecraft:entity.goat.screaming.eat": { "protocol_id": 649 }, - "minecraft:entity.goat.screaming.ram_impact": { + "minecraft:entity.goat.screaming.hurt": { "protocol_id": 650 }, - "minecraft:entity.goat.step": { + "minecraft:entity.goat.screaming.long_jump": { "protocol_id": 651 }, + "minecraft:entity.goat.screaming.milk": { + "protocol_id": 652 + }, + "minecraft:entity.goat.screaming.prepare_ram": { + "protocol_id": 653 + }, + "minecraft:entity.goat.screaming.ram_impact": { + "protocol_id": 654 + }, + "minecraft:entity.goat.step": { + "protocol_id": 655 + }, "minecraft:entity.guardian.ambient": { - "protocol_id": 664 - }, - "minecraft:entity.guardian.ambient_land": { - "protocol_id": 665 - }, - "minecraft:entity.guardian.attack": { - "protocol_id": 666 - }, - "minecraft:entity.guardian.death": { - "protocol_id": 667 - }, - "minecraft:entity.guardian.death_land": { "protocol_id": 668 }, - "minecraft:entity.guardian.flop": { + "minecraft:entity.guardian.ambient_land": { "protocol_id": 669 }, - "minecraft:entity.guardian.hurt": { + "minecraft:entity.guardian.attack": { "protocol_id": 670 }, - "minecraft:entity.guardian.hurt_land": { + "minecraft:entity.guardian.death": { "protocol_id": 671 }, + "minecraft:entity.guardian.death_land": { + "protocol_id": 672 + }, + "minecraft:entity.guardian.flop": { + "protocol_id": 673 + }, + "minecraft:entity.guardian.hurt": { + "protocol_id": 674 + }, + "minecraft:entity.guardian.hurt_land": { + "protocol_id": 675 + }, "minecraft:entity.hoglin.ambient": { - "protocol_id": 714 - }, - "minecraft:entity.hoglin.angry": { - "protocol_id": 715 - }, - "minecraft:entity.hoglin.attack": { - "protocol_id": 716 - }, - "minecraft:entity.hoglin.converted_to_zombified": { - "protocol_id": 717 - }, - "minecraft:entity.hoglin.death": { "protocol_id": 718 }, - "minecraft:entity.hoglin.hurt": { + "minecraft:entity.hoglin.angry": { "protocol_id": 719 }, - "minecraft:entity.hoglin.retreat": { + "minecraft:entity.hoglin.attack": { "protocol_id": 720 }, - "minecraft:entity.hoglin.step": { + "minecraft:entity.hoglin.converted_to_zombified": { "protocol_id": 721 }, + "minecraft:entity.hoglin.death": { + "protocol_id": 722 + }, + "minecraft:entity.hoglin.hurt": { + "protocol_id": 723 + }, + "minecraft:entity.hoglin.retreat": { + "protocol_id": 724 + }, + "minecraft:entity.hoglin.step": { + "protocol_id": 725 + }, "minecraft:entity.horse.ambient": { - "protocol_id": 738 - }, - "minecraft:entity.horse.angry": { - "protocol_id": 739 - }, - "minecraft:entity.horse.armor": { - "protocol_id": 740 - }, - "minecraft:entity.horse.breathe": { - "protocol_id": 741 - }, - "minecraft:entity.horse.death": { "protocol_id": 742 }, - "minecraft:entity.horse.eat": { + "minecraft:entity.horse.angry": { "protocol_id": 743 }, - "minecraft:entity.horse.gallop": { + "minecraft:entity.horse.armor": { "protocol_id": 744 }, - "minecraft:entity.horse.hurt": { + "minecraft:entity.horse.breathe": { "protocol_id": 745 }, - "minecraft:entity.horse.jump": { + "minecraft:entity.horse.death": { "protocol_id": 746 }, - "minecraft:entity.horse.land": { + "minecraft:entity.horse.eat": { "protocol_id": 747 }, - "minecraft:entity.horse.saddle": { + "minecraft:entity.horse.gallop": { "protocol_id": 748 }, - "minecraft:entity.horse.step": { + "minecraft:entity.horse.hurt": { "protocol_id": 749 }, - "minecraft:entity.horse.step_wood": { + "minecraft:entity.horse.jump": { "protocol_id": 750 }, - "minecraft:entity.hostile.big_fall": { + "minecraft:entity.horse.land": { "protocol_id": 751 }, - "minecraft:entity.hostile.death": { + "minecraft:entity.horse.saddle": { "protocol_id": 752 }, - "minecraft:entity.hostile.hurt": { + "minecraft:entity.horse.step": { "protocol_id": 753 }, - "minecraft:entity.hostile.small_fall": { + "minecraft:entity.horse.step_wood": { "protocol_id": 754 }, - "minecraft:entity.hostile.splash": { + "minecraft:entity.hostile.big_fall": { "protocol_id": 755 }, - "minecraft:entity.hostile.swim": { + "minecraft:entity.hostile.death": { "protocol_id": 756 }, - "minecraft:entity.husk.ambient": { + "minecraft:entity.hostile.hurt": { "protocol_id": 757 }, - "minecraft:entity.husk.converted_to_zombie": { + "minecraft:entity.hostile.small_fall": { "protocol_id": 758 }, - "minecraft:entity.husk.death": { + "minecraft:entity.hostile.splash": { "protocol_id": 759 }, - "minecraft:entity.husk.hurt": { + "minecraft:entity.hostile.swim": { "protocol_id": 760 }, - "minecraft:entity.husk.step": { + "minecraft:entity.husk.ambient": { "protocol_id": 761 }, - "minecraft:entity.illusioner.ambient": { + "minecraft:entity.husk.converted_to_zombie": { "protocol_id": 762 }, - "minecraft:entity.illusioner.cast_spell": { + "minecraft:entity.husk.death": { "protocol_id": 763 }, - "minecraft:entity.illusioner.death": { + "minecraft:entity.husk.hurt": { "protocol_id": 764 }, - "minecraft:entity.illusioner.hurt": { + "minecraft:entity.husk.step": { "protocol_id": 765 }, - "minecraft:entity.illusioner.mirror_move": { + "minecraft:entity.illusioner.ambient": { "protocol_id": 766 }, - "minecraft:entity.illusioner.prepare_blindness": { + "minecraft:entity.illusioner.cast_spell": { "protocol_id": 767 }, - "minecraft:entity.illusioner.prepare_mirror": { + "minecraft:entity.illusioner.death": { "protocol_id": 768 }, - "minecraft:entity.iron_golem.attack": { + "minecraft:entity.illusioner.hurt": { + "protocol_id": 769 + }, + "minecraft:entity.illusioner.mirror_move": { + "protocol_id": 770 + }, + "minecraft:entity.illusioner.prepare_blindness": { + "protocol_id": 771 + }, + "minecraft:entity.illusioner.prepare_mirror": { "protocol_id": 772 }, - "minecraft:entity.iron_golem.damage": { - "protocol_id": 773 - }, - "minecraft:entity.iron_golem.death": { - "protocol_id": 774 - }, - "minecraft:entity.iron_golem.hurt": { - "protocol_id": 775 - }, - "minecraft:entity.iron_golem.repair": { - "protocol_id": 776 - }, - "minecraft:entity.iron_golem.step": { - "protocol_id": 777 - }, - "minecraft:entity.item.break": { - "protocol_id": 785 - }, - "minecraft:entity.item.pickup": { - "protocol_id": 786 - }, - "minecraft:entity.item_frame.add_item": { - "protocol_id": 780 - }, - "minecraft:entity.item_frame.break": { + "minecraft:entity.iron_golem.attack": { "protocol_id": 781 }, - "minecraft:entity.item_frame.place": { + "minecraft:entity.iron_golem.damage": { "protocol_id": 782 }, - "minecraft:entity.item_frame.remove_item": { + "minecraft:entity.iron_golem.death": { "protocol_id": 783 }, - "minecraft:entity.item_frame.rotate_item": { + "minecraft:entity.iron_golem.hurt": { "protocol_id": 784 }, + "minecraft:entity.iron_golem.repair": { + "protocol_id": 785 + }, + "minecraft:entity.iron_golem.step": { + "protocol_id": 786 + }, + "minecraft:entity.item.break": { + "protocol_id": 794 + }, + "minecraft:entity.item.pickup": { + "protocol_id": 795 + }, + "minecraft:entity.item_frame.add_item": { + "protocol_id": 789 + }, + "minecraft:entity.item_frame.break": { + "protocol_id": 790 + }, + "minecraft:entity.item_frame.place": { + "protocol_id": 791 + }, + "minecraft:entity.item_frame.remove_item": { + "protocol_id": 792 + }, + "minecraft:entity.item_frame.rotate_item": { + "protocol_id": 793 + }, "minecraft:entity.leash_knot.break": { - "protocol_id": 802 - }, - "minecraft:entity.leash_knot.place": { - "protocol_id": 803 - }, - "minecraft:entity.lightning_bolt.impact": { - "protocol_id": 805 - }, - "minecraft:entity.lightning_bolt.thunder": { - "protocol_id": 806 - }, - "minecraft:entity.lingering_potion.throw": { - "protocol_id": 807 - }, - "minecraft:entity.llama.ambient": { - "protocol_id": 808 - }, - "minecraft:entity.llama.angry": { - "protocol_id": 809 - }, - "minecraft:entity.llama.chest": { - "protocol_id": 810 - }, - "minecraft:entity.llama.death": { - "protocol_id": 811 - }, - "minecraft:entity.llama.eat": { - "protocol_id": 812 - }, - "minecraft:entity.llama.hurt": { - "protocol_id": 813 - }, - "minecraft:entity.llama.spit": { - "protocol_id": 814 - }, - "minecraft:entity.llama.step": { - "protocol_id": 815 - }, - "minecraft:entity.llama.swag": { "protocol_id": 816 }, - "minecraft:entity.magma_cube.death": { - "protocol_id": 827 - }, - "minecraft:entity.magma_cube.death_small": { + "minecraft:entity.leash_knot.place": { "protocol_id": 817 }, - "minecraft:entity.magma_cube.hurt": { + "minecraft:entity.lightning_bolt.impact": { + "protocol_id": 819 + }, + "minecraft:entity.lightning_bolt.thunder": { + "protocol_id": 820 + }, + "minecraft:entity.lingering_potion.throw": { + "protocol_id": 821 + }, + "minecraft:entity.llama.ambient": { + "protocol_id": 822 + }, + "minecraft:entity.llama.angry": { + "protocol_id": 823 + }, + "minecraft:entity.llama.chest": { + "protocol_id": 824 + }, + "minecraft:entity.llama.death": { + "protocol_id": 825 + }, + "minecraft:entity.llama.eat": { + "protocol_id": 826 + }, + "minecraft:entity.llama.hurt": { + "protocol_id": 827 + }, + "minecraft:entity.llama.spit": { "protocol_id": 828 }, - "minecraft:entity.magma_cube.hurt_small": { + "minecraft:entity.llama.step": { "protocol_id": 829 }, - "minecraft:entity.magma_cube.jump": { + "minecraft:entity.llama.swag": { "protocol_id": 830 }, - "minecraft:entity.magma_cube.squish": { + "minecraft:entity.magma_cube.death": { + "protocol_id": 841 + }, + "minecraft:entity.magma_cube.death_small": { "protocol_id": 831 }, + "minecraft:entity.magma_cube.hurt": { + "protocol_id": 842 + }, + "minecraft:entity.magma_cube.hurt_small": { + "protocol_id": 843 + }, + "minecraft:entity.magma_cube.jump": { + "protocol_id": 844 + }, + "minecraft:entity.magma_cube.squish": { + "protocol_id": 845 + }, "minecraft:entity.magma_cube.squish_small": { - "protocol_id": 832 + "protocol_id": 846 }, "minecraft:entity.minecart.inside": { - "protocol_id": 848 + "protocol_id": 862 }, "minecraft:entity.minecart.inside.underwater": { - "protocol_id": 847 + "protocol_id": 861 }, "minecraft:entity.minecart.riding": { - "protocol_id": 849 + "protocol_id": 863 }, "minecraft:entity.mooshroom.convert": { - "protocol_id": 850 + "protocol_id": 864 }, "minecraft:entity.mooshroom.eat": { - "protocol_id": 851 + "protocol_id": 865 }, "minecraft:entity.mooshroom.milk": { - "protocol_id": 852 + "protocol_id": 866 }, "minecraft:entity.mooshroom.shear": { - "protocol_id": 854 + "protocol_id": 868 }, "minecraft:entity.mooshroom.suspicious_milk": { - "protocol_id": 853 + "protocol_id": 867 }, "minecraft:entity.mule.ambient": { - "protocol_id": 885 + "protocol_id": 899 }, "minecraft:entity.mule.angry": { - "protocol_id": 886 + "protocol_id": 900 }, "minecraft:entity.mule.chest": { - "protocol_id": 887 + "protocol_id": 901 }, "minecraft:entity.mule.death": { - "protocol_id": 888 + "protocol_id": 902 }, "minecraft:entity.mule.eat": { - "protocol_id": 889 + "protocol_id": 903 }, "minecraft:entity.mule.hurt": { - "protocol_id": 890 + "protocol_id": 904 }, "minecraft:entity.mule.jump": { - "protocol_id": 891 + "protocol_id": 905 }, "minecraft:entity.ocelot.ambient": { - "protocol_id": 1033 - }, - "minecraft:entity.ocelot.death": { - "protocol_id": 1034 - }, - "minecraft:entity.ocelot.hurt": { - "protocol_id": 1032 - }, - "minecraft:entity.painting.break": { - "protocol_id": 1036 - }, - "minecraft:entity.painting.place": { - "protocol_id": 1037 - }, - "minecraft:entity.panda.aggressive_ambient": { - "protocol_id": 1046 - }, - "minecraft:entity.panda.ambient": { - "protocol_id": 1041 - }, - "minecraft:entity.panda.bite": { - "protocol_id": 1049 - }, - "minecraft:entity.panda.cant_breed": { - "protocol_id": 1045 - }, - "minecraft:entity.panda.death": { - "protocol_id": 1042 - }, - "minecraft:entity.panda.eat": { - "protocol_id": 1043 - }, - "minecraft:entity.panda.hurt": { - "protocol_id": 1048 - }, - "minecraft:entity.panda.pre_sneeze": { - "protocol_id": 1039 - }, - "minecraft:entity.panda.sneeze": { - "protocol_id": 1040 - }, - "minecraft:entity.panda.step": { - "protocol_id": 1044 - }, - "minecraft:entity.panda.worried_ambient": { "protocol_id": 1047 }, - "minecraft:entity.parrot.ambient": { + "minecraft:entity.ocelot.death": { + "protocol_id": 1048 + }, + "minecraft:entity.ocelot.hurt": { + "protocol_id": 1046 + }, + "minecraft:entity.painting.break": { "protocol_id": 1050 }, - "minecraft:entity.parrot.death": { + "minecraft:entity.painting.place": { "protocol_id": 1051 }, - "minecraft:entity.parrot.eat": { - "protocol_id": 1052 - }, - "minecraft:entity.parrot.fly": { - "protocol_id": 1053 - }, - "minecraft:entity.parrot.hurt": { - "protocol_id": 1054 - }, - "minecraft:entity.parrot.imitate.blaze": { - "protocol_id": 1055 - }, - "minecraft:entity.parrot.imitate.bogged": { - "protocol_id": 1056 - }, - "minecraft:entity.parrot.imitate.breeze": { - "protocol_id": 1057 - }, - "minecraft:entity.parrot.imitate.creaking": { - "protocol_id": 1058 - }, - "minecraft:entity.parrot.imitate.creeper": { - "protocol_id": 1059 - }, - "minecraft:entity.parrot.imitate.drowned": { + "minecraft:entity.panda.aggressive_ambient": { "protocol_id": 1060 }, - "minecraft:entity.parrot.imitate.elder_guardian": { - "protocol_id": 1061 + "minecraft:entity.panda.ambient": { + "protocol_id": 1055 }, - "minecraft:entity.parrot.imitate.ender_dragon": { - "protocol_id": 1062 - }, - "minecraft:entity.parrot.imitate.endermite": { + "minecraft:entity.panda.bite": { "protocol_id": 1063 }, - "minecraft:entity.parrot.imitate.evoker": { + "minecraft:entity.panda.cant_breed": { + "protocol_id": 1059 + }, + "minecraft:entity.panda.death": { + "protocol_id": 1056 + }, + "minecraft:entity.panda.eat": { + "protocol_id": 1057 + }, + "minecraft:entity.panda.hurt": { + "protocol_id": 1062 + }, + "minecraft:entity.panda.pre_sneeze": { + "protocol_id": 1053 + }, + "minecraft:entity.panda.sneeze": { + "protocol_id": 1054 + }, + "minecraft:entity.panda.step": { + "protocol_id": 1058 + }, + "minecraft:entity.panda.worried_ambient": { + "protocol_id": 1061 + }, + "minecraft:entity.parrot.ambient": { "protocol_id": 1064 }, - "minecraft:entity.parrot.imitate.ghast": { + "minecraft:entity.parrot.death": { "protocol_id": 1065 }, - "minecraft:entity.parrot.imitate.guardian": { + "minecraft:entity.parrot.eat": { "protocol_id": 1066 }, - "minecraft:entity.parrot.imitate.hoglin": { + "minecraft:entity.parrot.fly": { "protocol_id": 1067 }, - "minecraft:entity.parrot.imitate.husk": { + "minecraft:entity.parrot.hurt": { "protocol_id": 1068 }, - "minecraft:entity.parrot.imitate.illusioner": { + "minecraft:entity.parrot.imitate.blaze": { "protocol_id": 1069 }, - "minecraft:entity.parrot.imitate.magma_cube": { + "minecraft:entity.parrot.imitate.bogged": { "protocol_id": 1070 }, - "minecraft:entity.parrot.imitate.phantom": { + "minecraft:entity.parrot.imitate.breeze": { "protocol_id": 1071 }, - "minecraft:entity.parrot.imitate.piglin": { + "minecraft:entity.parrot.imitate.creaking": { "protocol_id": 1072 }, - "minecraft:entity.parrot.imitate.piglin_brute": { + "minecraft:entity.parrot.imitate.creeper": { "protocol_id": 1073 }, - "minecraft:entity.parrot.imitate.pillager": { + "minecraft:entity.parrot.imitate.drowned": { "protocol_id": 1074 }, - "minecraft:entity.parrot.imitate.ravager": { + "minecraft:entity.parrot.imitate.elder_guardian": { "protocol_id": 1075 }, - "minecraft:entity.parrot.imitate.shulker": { + "minecraft:entity.parrot.imitate.ender_dragon": { "protocol_id": 1076 }, - "minecraft:entity.parrot.imitate.silverfish": { + "minecraft:entity.parrot.imitate.endermite": { "protocol_id": 1077 }, - "minecraft:entity.parrot.imitate.skeleton": { + "minecraft:entity.parrot.imitate.evoker": { "protocol_id": 1078 }, - "minecraft:entity.parrot.imitate.slime": { + "minecraft:entity.parrot.imitate.ghast": { "protocol_id": 1079 }, - "minecraft:entity.parrot.imitate.spider": { + "minecraft:entity.parrot.imitate.guardian": { "protocol_id": 1080 }, - "minecraft:entity.parrot.imitate.stray": { + "minecraft:entity.parrot.imitate.hoglin": { "protocol_id": 1081 }, - "minecraft:entity.parrot.imitate.vex": { + "minecraft:entity.parrot.imitate.husk": { "protocol_id": 1082 }, - "minecraft:entity.parrot.imitate.vindicator": { + "minecraft:entity.parrot.imitate.illusioner": { "protocol_id": 1083 }, - "minecraft:entity.parrot.imitate.warden": { + "minecraft:entity.parrot.imitate.magma_cube": { "protocol_id": 1084 }, - "minecraft:entity.parrot.imitate.witch": { + "minecraft:entity.parrot.imitate.phantom": { "protocol_id": 1085 }, - "minecraft:entity.parrot.imitate.wither": { + "minecraft:entity.parrot.imitate.piglin": { "protocol_id": 1086 }, - "minecraft:entity.parrot.imitate.wither_skeleton": { + "minecraft:entity.parrot.imitate.piglin_brute": { "protocol_id": 1087 }, - "minecraft:entity.parrot.imitate.zoglin": { + "minecraft:entity.parrot.imitate.pillager": { "protocol_id": 1088 }, - "minecraft:entity.parrot.imitate.zombie": { + "minecraft:entity.parrot.imitate.ravager": { "protocol_id": 1089 }, - "minecraft:entity.parrot.imitate.zombie_villager": { + "minecraft:entity.parrot.imitate.shulker": { "protocol_id": 1090 }, - "minecraft:entity.parrot.step": { + "minecraft:entity.parrot.imitate.silverfish": { "protocol_id": 1091 }, - "minecraft:entity.phantom.ambient": { + "minecraft:entity.parrot.imitate.skeleton": { "protocol_id": 1092 }, - "minecraft:entity.phantom.bite": { + "minecraft:entity.parrot.imitate.slime": { "protocol_id": 1093 }, - "minecraft:entity.phantom.death": { + "minecraft:entity.parrot.imitate.spider": { "protocol_id": 1094 }, - "minecraft:entity.phantom.flap": { + "minecraft:entity.parrot.imitate.stray": { "protocol_id": 1095 }, - "minecraft:entity.phantom.hurt": { + "minecraft:entity.parrot.imitate.vex": { "protocol_id": 1096 }, - "minecraft:entity.phantom.swoop": { + "minecraft:entity.parrot.imitate.vindicator": { "protocol_id": 1097 }, - "minecraft:entity.pig.ambient": { + "minecraft:entity.parrot.imitate.warden": { "protocol_id": 1098 }, - "minecraft:entity.pig.death": { + "minecraft:entity.parrot.imitate.witch": { "protocol_id": 1099 }, - "minecraft:entity.pig.hurt": { + "minecraft:entity.parrot.imitate.wither": { "protocol_id": 1100 }, - "minecraft:entity.pig.saddle": { + "minecraft:entity.parrot.imitate.wither_skeleton": { "protocol_id": 1101 }, - "minecraft:entity.pig.step": { + "minecraft:entity.parrot.imitate.zoglin": { "protocol_id": 1102 }, - "minecraft:entity.piglin.admiring_item": { + "minecraft:entity.parrot.imitate.zombie": { "protocol_id": 1103 }, - "minecraft:entity.piglin.ambient": { + "minecraft:entity.parrot.imitate.zombie_villager": { "protocol_id": 1104 }, - "minecraft:entity.piglin.angry": { + "minecraft:entity.parrot.step": { "protocol_id": 1105 }, - "minecraft:entity.piglin.celebrate": { + "minecraft:entity.phantom.ambient": { "protocol_id": 1106 }, - "minecraft:entity.piglin.converted_to_zombified": { - "protocol_id": 1112 - }, - "minecraft:entity.piglin.death": { + "minecraft:entity.phantom.bite": { "protocol_id": 1107 }, - "minecraft:entity.piglin.hurt": { - "protocol_id": 1109 - }, - "minecraft:entity.piglin.jealous": { + "minecraft:entity.phantom.death": { "protocol_id": 1108 }, - "minecraft:entity.piglin.retreat": { + "minecraft:entity.phantom.flap": { + "protocol_id": 1109 + }, + "minecraft:entity.phantom.hurt": { "protocol_id": 1110 }, - "minecraft:entity.piglin.step": { + "minecraft:entity.phantom.swoop": { "protocol_id": 1111 }, - "minecraft:entity.piglin_brute.ambient": { + "minecraft:entity.pig.ambient": { + "protocol_id": 1112 + }, + "minecraft:entity.pig.death": { "protocol_id": 1113 }, - "minecraft:entity.piglin_brute.angry": { + "minecraft:entity.pig.hurt": { "protocol_id": 1114 }, - "minecraft:entity.piglin_brute.converted_to_zombified": { - "protocol_id": 1118 - }, - "minecraft:entity.piglin_brute.death": { + "minecraft:entity.pig.saddle": { "protocol_id": 1115 }, - "minecraft:entity.piglin_brute.hurt": { + "minecraft:entity.pig.step": { "protocol_id": 1116 }, - "minecraft:entity.piglin_brute.step": { + "minecraft:entity.piglin.admiring_item": { "protocol_id": 1117 }, - "minecraft:entity.pillager.ambient": { + "minecraft:entity.piglin.ambient": { + "protocol_id": 1118 + }, + "minecraft:entity.piglin.angry": { "protocol_id": 1119 }, - "minecraft:entity.pillager.celebrate": { + "minecraft:entity.piglin.celebrate": { "protocol_id": 1120 }, - "minecraft:entity.pillager.death": { - "protocol_id": 1121 - }, - "minecraft:entity.pillager.hurt": { - "protocol_id": 1122 - }, - "minecraft:entity.player.attack.crit": { - "protocol_id": 1125 - }, - "minecraft:entity.player.attack.knockback": { + "minecraft:entity.piglin.converted_to_zombified": { "protocol_id": 1126 }, - "minecraft:entity.player.attack.nodamage": { + "minecraft:entity.piglin.death": { + "protocol_id": 1121 + }, + "minecraft:entity.piglin.hurt": { + "protocol_id": 1123 + }, + "minecraft:entity.piglin.jealous": { + "protocol_id": 1122 + }, + "minecraft:entity.piglin.retreat": { + "protocol_id": 1124 + }, + "minecraft:entity.piglin.step": { + "protocol_id": 1125 + }, + "minecraft:entity.piglin_brute.ambient": { "protocol_id": 1127 }, - "minecraft:entity.player.attack.strong": { + "minecraft:entity.piglin_brute.angry": { "protocol_id": 1128 }, - "minecraft:entity.player.attack.sweep": { - "protocol_id": 1129 - }, - "minecraft:entity.player.attack.weak": { - "protocol_id": 1130 - }, - "minecraft:entity.player.big_fall": { - "protocol_id": 1131 - }, - "minecraft:entity.player.breath": { + "minecraft:entity.piglin_brute.converted_to_zombified": { "protocol_id": 1132 }, - "minecraft:entity.player.burp": { + "minecraft:entity.piglin_brute.death": { + "protocol_id": 1129 + }, + "minecraft:entity.piglin_brute.hurt": { + "protocol_id": 1130 + }, + "minecraft:entity.piglin_brute.step": { + "protocol_id": 1131 + }, + "minecraft:entity.pillager.ambient": { "protocol_id": 1133 }, - "minecraft:entity.player.death": { + "minecraft:entity.pillager.celebrate": { "protocol_id": 1134 }, - "minecraft:entity.player.hurt": { + "minecraft:entity.pillager.death": { "protocol_id": 1135 }, - "minecraft:entity.player.hurt_drown": { + "minecraft:entity.pillager.hurt": { "protocol_id": 1136 }, - "minecraft:entity.player.hurt_freeze": { - "protocol_id": 1137 - }, - "minecraft:entity.player.hurt_on_fire": { - "protocol_id": 1138 - }, - "minecraft:entity.player.hurt_sweet_berry_bush": { + "minecraft:entity.player.attack.crit": { "protocol_id": 1139 }, - "minecraft:entity.player.levelup": { + "minecraft:entity.player.attack.knockback": { "protocol_id": 1140 }, - "minecraft:entity.player.small_fall": { + "minecraft:entity.player.attack.nodamage": { "protocol_id": 1141 }, - "minecraft:entity.player.splash": { + "minecraft:entity.player.attack.strong": { "protocol_id": 1142 }, - "minecraft:entity.player.splash.high_speed": { + "minecraft:entity.player.attack.sweep": { "protocol_id": 1143 }, - "minecraft:entity.player.swim": { + "minecraft:entity.player.attack.weak": { "protocol_id": 1144 }, - "minecraft:entity.player.teleport": { + "minecraft:entity.player.big_fall": { "protocol_id": 1145 }, - "minecraft:entity.polar_bear.ambient": { + "minecraft:entity.player.breath": { "protocol_id": 1146 }, - "minecraft:entity.polar_bear.ambient_baby": { + "minecraft:entity.player.burp": { "protocol_id": 1147 }, - "minecraft:entity.polar_bear.death": { + "minecraft:entity.player.death": { "protocol_id": 1148 }, - "minecraft:entity.polar_bear.hurt": { + "minecraft:entity.player.hurt": { "protocol_id": 1149 }, - "minecraft:entity.polar_bear.step": { + "minecraft:entity.player.hurt_drown": { "protocol_id": 1150 }, - "minecraft:entity.polar_bear.warning": { + "minecraft:entity.player.hurt_freeze": { "protocol_id": 1151 }, - "minecraft:entity.puffer_fish.ambient": { + "minecraft:entity.player.hurt_on_fire": { + "protocol_id": 1152 + }, + "minecraft:entity.player.hurt_sweet_berry_bush": { + "protocol_id": 1153 + }, + "minecraft:entity.player.levelup": { + "protocol_id": 1154 + }, + "minecraft:entity.player.small_fall": { + "protocol_id": 1155 + }, + "minecraft:entity.player.splash": { + "protocol_id": 1156 + }, + "minecraft:entity.player.splash.high_speed": { + "protocol_id": 1157 + }, + "minecraft:entity.player.swim": { + "protocol_id": 1158 + }, + "minecraft:entity.player.teleport": { + "protocol_id": 1159 + }, + "minecraft:entity.polar_bear.ambient": { + "protocol_id": 1160 + }, + "minecraft:entity.polar_bear.ambient_baby": { + "protocol_id": 1161 + }, + "minecraft:entity.polar_bear.death": { + "protocol_id": 1162 + }, + "minecraft:entity.polar_bear.hurt": { + "protocol_id": 1163 + }, + "minecraft:entity.polar_bear.step": { + "protocol_id": 1164 + }, + "minecraft:entity.polar_bear.warning": { "protocol_id": 1165 }, - "minecraft:entity.puffer_fish.blow_out": { - "protocol_id": 1166 - }, - "minecraft:entity.puffer_fish.blow_up": { - "protocol_id": 1167 - }, - "minecraft:entity.puffer_fish.death": { - "protocol_id": 1168 - }, - "minecraft:entity.puffer_fish.flop": { - "protocol_id": 1169 - }, - "minecraft:entity.puffer_fish.hurt": { - "protocol_id": 1170 - }, - "minecraft:entity.puffer_fish.sting": { - "protocol_id": 1171 - }, - "minecraft:entity.rabbit.ambient": { - "protocol_id": 1173 - }, - "minecraft:entity.rabbit.attack": { - "protocol_id": 1174 - }, - "minecraft:entity.rabbit.death": { - "protocol_id": 1175 - }, - "minecraft:entity.rabbit.hurt": { - "protocol_id": 1176 - }, - "minecraft:entity.rabbit.jump": { - "protocol_id": 1177 - }, - "minecraft:entity.ravager.ambient": { + "minecraft:entity.puffer_fish.ambient": { "protocol_id": 1179 }, - "minecraft:entity.ravager.attack": { + "minecraft:entity.puffer_fish.blow_out": { "protocol_id": 1180 }, - "minecraft:entity.ravager.celebrate": { + "minecraft:entity.puffer_fish.blow_up": { "protocol_id": 1181 }, - "minecraft:entity.ravager.death": { + "minecraft:entity.puffer_fish.death": { "protocol_id": 1182 }, - "minecraft:entity.ravager.hurt": { + "minecraft:entity.puffer_fish.flop": { "protocol_id": 1183 }, - "minecraft:entity.ravager.roar": { - "protocol_id": 1186 - }, - "minecraft:entity.ravager.step": { + "minecraft:entity.puffer_fish.hurt": { "protocol_id": 1184 }, - "minecraft:entity.ravager.stunned": { + "minecraft:entity.puffer_fish.sting": { "protocol_id": 1185 }, + "minecraft:entity.rabbit.ambient": { + "protocol_id": 1187 + }, + "minecraft:entity.rabbit.attack": { + "protocol_id": 1188 + }, + "minecraft:entity.rabbit.death": { + "protocol_id": 1189 + }, + "minecraft:entity.rabbit.hurt": { + "protocol_id": 1190 + }, + "minecraft:entity.rabbit.jump": { + "protocol_id": 1191 + }, + "minecraft:entity.ravager.ambient": { + "protocol_id": 1193 + }, + "minecraft:entity.ravager.attack": { + "protocol_id": 1194 + }, + "minecraft:entity.ravager.celebrate": { + "protocol_id": 1195 + }, + "minecraft:entity.ravager.death": { + "protocol_id": 1196 + }, + "minecraft:entity.ravager.hurt": { + "protocol_id": 1197 + }, + "minecraft:entity.ravager.roar": { + "protocol_id": 1200 + }, + "minecraft:entity.ravager.step": { + "protocol_id": 1198 + }, + "minecraft:entity.ravager.stunned": { + "protocol_id": 1199 + }, "minecraft:entity.salmon.ambient": { - "protocol_id": 1207 + "protocol_id": 1221 }, "minecraft:entity.salmon.death": { - "protocol_id": 1208 + "protocol_id": 1222 }, "minecraft:entity.salmon.flop": { - "protocol_id": 1209 + "protocol_id": 1223 }, "minecraft:entity.salmon.hurt": { - "protocol_id": 1210 + "protocol_id": 1224 }, "minecraft:entity.sheep.ambient": { - "protocol_id": 1252 - }, - "minecraft:entity.sheep.death": { - "protocol_id": 1253 - }, - "minecraft:entity.sheep.hurt": { - "protocol_id": 1254 - }, - "minecraft:entity.sheep.shear": { - "protocol_id": 1255 - }, - "minecraft:entity.sheep.step": { - "protocol_id": 1256 - }, - "minecraft:entity.shulker.ambient": { - "protocol_id": 1265 - }, - "minecraft:entity.shulker.close": { - "protocol_id": 1270 - }, - "minecraft:entity.shulker.death": { - "protocol_id": 1271 - }, - "minecraft:entity.shulker.hurt": { - "protocol_id": 1272 - }, - "minecraft:entity.shulker.hurt_closed": { - "protocol_id": 1273 - }, - "minecraft:entity.shulker.open": { - "protocol_id": 1274 - }, - "minecraft:entity.shulker.shoot": { - "protocol_id": 1275 - }, - "minecraft:entity.shulker.teleport": { - "protocol_id": 1276 - }, - "minecraft:entity.shulker_bullet.hit": { "protocol_id": 1268 }, - "minecraft:entity.shulker_bullet.hurt": { + "minecraft:entity.sheep.death": { "protocol_id": 1269 }, - "minecraft:entity.silverfish.ambient": { - "protocol_id": 1277 + "minecraft:entity.sheep.hurt": { + "protocol_id": 1270 }, - "minecraft:entity.silverfish.death": { - "protocol_id": 1278 + "minecraft:entity.sheep.shear": { + "protocol_id": 1271 }, - "minecraft:entity.silverfish.hurt": { - "protocol_id": 1279 + "minecraft:entity.sheep.step": { + "protocol_id": 1272 }, - "minecraft:entity.silverfish.step": { - "protocol_id": 1280 - }, - "minecraft:entity.skeleton.ambient": { + "minecraft:entity.shulker.ambient": { "protocol_id": 1281 }, - "minecraft:entity.skeleton.converted_to_stray": { - "protocol_id": 1282 - }, - "minecraft:entity.skeleton.death": { - "protocol_id": 1283 - }, - "minecraft:entity.skeleton.hurt": { - "protocol_id": 1292 - }, - "minecraft:entity.skeleton.shoot": { - "protocol_id": 1293 - }, - "minecraft:entity.skeleton.step": { - "protocol_id": 1294 - }, - "minecraft:entity.skeleton_horse.ambient": { - "protocol_id": 1284 - }, - "minecraft:entity.skeleton_horse.ambient_water": { - "protocol_id": 1288 - }, - "minecraft:entity.skeleton_horse.death": { - "protocol_id": 1285 - }, - "minecraft:entity.skeleton_horse.gallop_water": { - "protocol_id": 1289 - }, - "minecraft:entity.skeleton_horse.hurt": { + "minecraft:entity.shulker.close": { "protocol_id": 1286 }, - "minecraft:entity.skeleton_horse.jump_water": { - "protocol_id": 1290 - }, - "minecraft:entity.skeleton_horse.step_water": { - "protocol_id": 1291 - }, - "minecraft:entity.skeleton_horse.swim": { + "minecraft:entity.shulker.death": { "protocol_id": 1287 }, - "minecraft:entity.slime.attack": { + "minecraft:entity.shulker.hurt": { + "protocol_id": 1288 + }, + "minecraft:entity.shulker.hurt_closed": { + "protocol_id": 1289 + }, + "minecraft:entity.shulker.open": { + "protocol_id": 1290 + }, + "minecraft:entity.shulker.shoot": { + "protocol_id": 1291 + }, + "minecraft:entity.shulker.teleport": { + "protocol_id": 1292 + }, + "minecraft:entity.shulker_bullet.hit": { + "protocol_id": 1284 + }, + "minecraft:entity.shulker_bullet.hurt": { + "protocol_id": 1285 + }, + "minecraft:entity.silverfish.ambient": { + "protocol_id": 1293 + }, + "minecraft:entity.silverfish.death": { + "protocol_id": 1294 + }, + "minecraft:entity.silverfish.hurt": { "protocol_id": 1295 }, - "minecraft:entity.slime.death": { + "minecraft:entity.silverfish.step": { "protocol_id": 1296 }, - "minecraft:entity.slime.death_small": { - "protocol_id": 1351 - }, - "minecraft:entity.slime.hurt": { + "minecraft:entity.skeleton.ambient": { "protocol_id": 1297 }, - "minecraft:entity.slime.hurt_small": { - "protocol_id": 1352 - }, - "minecraft:entity.slime.jump": { + "minecraft:entity.skeleton.converted_to_stray": { "protocol_id": 1298 }, - "minecraft:entity.slime.jump_small": { - "protocol_id": 1353 - }, - "minecraft:entity.slime.squish": { + "minecraft:entity.skeleton.death": { "protocol_id": 1299 }, - "minecraft:entity.slime.squish_small": { - "protocol_id": 1354 + "minecraft:entity.skeleton.hurt": { + "protocol_id": 1308 }, - "minecraft:entity.sniffer.death": { - "protocol_id": 1361 + "minecraft:entity.skeleton.shoot": { + "protocol_id": 1309 }, - "minecraft:entity.sniffer.digging": { - "protocol_id": 1366 + "minecraft:entity.skeleton.step": { + "protocol_id": 1310 }, - "minecraft:entity.sniffer.digging_stop": { + "minecraft:entity.skeleton_horse.ambient": { + "protocol_id": 1300 + }, + "minecraft:entity.skeleton_horse.ambient_water": { + "protocol_id": 1304 + }, + "minecraft:entity.skeleton_horse.death": { + "protocol_id": 1301 + }, + "minecraft:entity.skeleton_horse.gallop_water": { + "protocol_id": 1305 + }, + "minecraft:entity.skeleton_horse.hurt": { + "protocol_id": 1302 + }, + "minecraft:entity.skeleton_horse.jump_water": { + "protocol_id": 1306 + }, + "minecraft:entity.skeleton_horse.step_water": { + "protocol_id": 1307 + }, + "minecraft:entity.skeleton_horse.swim": { + "protocol_id": 1303 + }, + "minecraft:entity.slime.attack": { + "protocol_id": 1311 + }, + "minecraft:entity.slime.death": { + "protocol_id": 1312 + }, + "minecraft:entity.slime.death_small": { "protocol_id": 1367 }, - "minecraft:entity.sniffer.drop_seed": { - "protocol_id": 1362 + "minecraft:entity.slime.hurt": { + "protocol_id": 1313 }, - "minecraft:entity.sniffer.eat": { - "protocol_id": 1358 - }, - "minecraft:entity.sniffer.happy": { + "minecraft:entity.slime.hurt_small": { "protocol_id": 1368 }, - "minecraft:entity.sniffer.hurt": { - "protocol_id": 1360 + "minecraft:entity.slime.jump": { + "protocol_id": 1314 }, - "minecraft:entity.sniffer.idle": { - "protocol_id": 1359 + "minecraft:entity.slime.jump_small": { + "protocol_id": 1369 }, - "minecraft:entity.sniffer.scenting": { - "protocol_id": 1363 + "minecraft:entity.slime.squish": { + "protocol_id": 1315 }, - "minecraft:entity.sniffer.searching": { - "protocol_id": 1365 + "minecraft:entity.slime.squish_small": { + "protocol_id": 1370 }, - "minecraft:entity.sniffer.sniffing": { - "protocol_id": 1364 - }, - "minecraft:entity.sniffer.step": { - "protocol_id": 1357 - }, - "minecraft:entity.snow_golem.ambient": { - "protocol_id": 1375 - }, - "minecraft:entity.snow_golem.death": { - "protocol_id": 1376 - }, - "minecraft:entity.snow_golem.hurt": { + "minecraft:entity.sniffer.death": { "protocol_id": 1377 }, - "minecraft:entity.snow_golem.shear": { - "protocol_id": 1379 + "minecraft:entity.sniffer.digging": { + "protocol_id": 1382 }, - "minecraft:entity.snow_golem.shoot": { - "protocol_id": 1378 - }, - "minecraft:entity.snowball.throw": { - "protocol_id": 1372 - }, - "minecraft:entity.spider.ambient": { + "minecraft:entity.sniffer.digging_stop": { "protocol_id": 1383 }, - "minecraft:entity.spider.death": { + "minecraft:entity.sniffer.drop_seed": { + "protocol_id": 1378 + }, + "minecraft:entity.sniffer.eat": { + "protocol_id": 1374 + }, + "minecraft:entity.sniffer.happy": { "protocol_id": 1384 }, - "minecraft:entity.spider.hurt": { - "protocol_id": 1385 + "minecraft:entity.sniffer.hurt": { + "protocol_id": 1376 }, - "minecraft:entity.spider.step": { - "protocol_id": 1386 + "minecraft:entity.sniffer.idle": { + "protocol_id": 1375 }, - "minecraft:entity.splash_potion.break": { - "protocol_id": 1387 + "minecraft:entity.sniffer.scenting": { + "protocol_id": 1379 }, - "minecraft:entity.splash_potion.throw": { + "minecraft:entity.sniffer.searching": { + "protocol_id": 1381 + }, + "minecraft:entity.sniffer.sniffing": { + "protocol_id": 1380 + }, + "minecraft:entity.sniffer.step": { + "protocol_id": 1373 + }, + "minecraft:entity.snow_golem.ambient": { + "protocol_id": 1391 + }, + "minecraft:entity.snow_golem.death": { + "protocol_id": 1392 + }, + "minecraft:entity.snow_golem.hurt": { + "protocol_id": 1393 + }, + "minecraft:entity.snow_golem.shear": { + "protocol_id": 1395 + }, + "minecraft:entity.snow_golem.shoot": { + "protocol_id": 1394 + }, + "minecraft:entity.snowball.throw": { "protocol_id": 1388 }, - "minecraft:entity.squid.ambient": { - "protocol_id": 1397 - }, - "minecraft:entity.squid.death": { - "protocol_id": 1398 - }, - "minecraft:entity.squid.hurt": { + "minecraft:entity.spider.ambient": { "protocol_id": 1399 }, - "minecraft:entity.squid.squirt": { + "minecraft:entity.spider.death": { "protocol_id": 1400 }, - "minecraft:entity.stray.ambient": { - "protocol_id": 1410 + "minecraft:entity.spider.hurt": { + "protocol_id": 1401 }, - "minecraft:entity.stray.death": { - "protocol_id": 1411 + "minecraft:entity.spider.step": { + "protocol_id": 1402 }, - "minecraft:entity.stray.hurt": { - "protocol_id": 1412 + "minecraft:entity.splash_potion.break": { + "protocol_id": 1403 }, - "minecraft:entity.stray.step": { + "minecraft:entity.splash_potion.throw": { + "protocol_id": 1404 + }, + "minecraft:entity.squid.ambient": { "protocol_id": 1413 }, + "minecraft:entity.squid.death": { + "protocol_id": 1414 + }, + "minecraft:entity.squid.hurt": { + "protocol_id": 1415 + }, + "minecraft:entity.squid.squirt": { + "protocol_id": 1416 + }, + "minecraft:entity.stray.ambient": { + "protocol_id": 1426 + }, + "minecraft:entity.stray.death": { + "protocol_id": 1427 + }, + "minecraft:entity.stray.hurt": { + "protocol_id": 1428 + }, + "minecraft:entity.stray.step": { + "protocol_id": 1429 + }, "minecraft:entity.strider.ambient": { - "protocol_id": 1342 + "protocol_id": 1358 }, "minecraft:entity.strider.death": { - "protocol_id": 1345 + "protocol_id": 1361 }, "minecraft:entity.strider.eat": { - "protocol_id": 1349 + "protocol_id": 1365 }, "minecraft:entity.strider.happy": { - "protocol_id": 1343 + "protocol_id": 1359 }, "minecraft:entity.strider.hurt": { - "protocol_id": 1346 + "protocol_id": 1362 }, "minecraft:entity.strider.retreat": { - "protocol_id": 1344 + "protocol_id": 1360 }, "minecraft:entity.strider.saddle": { - "protocol_id": 1350 + "protocol_id": 1366 }, "minecraft:entity.strider.step": { - "protocol_id": 1347 + "protocol_id": 1363 }, "minecraft:entity.strider.step_lava": { - "protocol_id": 1348 + "protocol_id": 1364 }, "minecraft:entity.tadpole.death": { - "protocol_id": 1417 + "protocol_id": 1433 }, "minecraft:entity.tadpole.flop": { - "protocol_id": 1418 + "protocol_id": 1434 }, "minecraft:entity.tadpole.grow_up": { - "protocol_id": 1419 + "protocol_id": 1435 }, "minecraft:entity.tadpole.hurt": { - "protocol_id": 1420 - }, - "minecraft:entity.tnt.primed": { - "protocol_id": 1422 - }, - "minecraft:entity.tropical_fish.ambient": { "protocol_id": 1436 }, - "minecraft:entity.tropical_fish.death": { - "protocol_id": 1437 - }, - "minecraft:entity.tropical_fish.flop": { + "minecraft:entity.tnt.primed": { "protocol_id": 1438 }, - "minecraft:entity.tropical_fish.hurt": { - "protocol_id": 1439 + "minecraft:entity.tropical_fish.ambient": { + "protocol_id": 1452 }, - "minecraft:entity.turtle.ambient_land": { + "minecraft:entity.tropical_fish.death": { + "protocol_id": 1453 + }, + "minecraft:entity.tropical_fish.flop": { + "protocol_id": 1454 + }, + "minecraft:entity.tropical_fish.hurt": { "protocol_id": 1455 }, + "minecraft:entity.turtle.ambient_land": { + "protocol_id": 1471 + }, "minecraft:entity.turtle.death": { - "protocol_id": 1456 + "protocol_id": 1472 }, "minecraft:entity.turtle.death_baby": { - "protocol_id": 1457 + "protocol_id": 1473 }, "minecraft:entity.turtle.egg_break": { - "protocol_id": 1458 + "protocol_id": 1474 }, "minecraft:entity.turtle.egg_crack": { - "protocol_id": 1459 + "protocol_id": 1475 }, "minecraft:entity.turtle.egg_hatch": { - "protocol_id": 1460 + "protocol_id": 1476 }, "minecraft:entity.turtle.hurt": { - "protocol_id": 1461 + "protocol_id": 1477 }, "minecraft:entity.turtle.hurt_baby": { - "protocol_id": 1462 + "protocol_id": 1478 }, "minecraft:entity.turtle.lay_egg": { - "protocol_id": 1463 + "protocol_id": 1479 }, "minecraft:entity.turtle.shamble": { - "protocol_id": 1464 + "protocol_id": 1480 }, "minecraft:entity.turtle.shamble_baby": { - "protocol_id": 1465 + "protocol_id": 1481 }, "minecraft:entity.turtle.swim": { - "protocol_id": 1466 + "protocol_id": 1482 }, "minecraft:entity.vex.ambient": { - "protocol_id": 1490 - }, - "minecraft:entity.vex.charge": { - "protocol_id": 1491 - }, - "minecraft:entity.vex.death": { - "protocol_id": 1492 - }, - "minecraft:entity.vex.hurt": { - "protocol_id": 1493 - }, - "minecraft:entity.villager.ambient": { - "protocol_id": 1494 - }, - "minecraft:entity.villager.celebrate": { - "protocol_id": 1495 - }, - "minecraft:entity.villager.death": { - "protocol_id": 1496 - }, - "minecraft:entity.villager.hurt": { - "protocol_id": 1497 - }, - "minecraft:entity.villager.no": { - "protocol_id": 1498 - }, - "minecraft:entity.villager.trade": { - "protocol_id": 1499 - }, - "minecraft:entity.villager.work_armorer": { - "protocol_id": 1501 - }, - "minecraft:entity.villager.work_butcher": { - "protocol_id": 1502 - }, - "minecraft:entity.villager.work_cartographer": { - "protocol_id": 1503 - }, - "minecraft:entity.villager.work_cleric": { - "protocol_id": 1504 - }, - "minecraft:entity.villager.work_farmer": { - "protocol_id": 1505 - }, - "minecraft:entity.villager.work_fisherman": { "protocol_id": 1506 }, - "minecraft:entity.villager.work_fletcher": { + "minecraft:entity.vex.charge": { "protocol_id": 1507 }, - "minecraft:entity.villager.work_leatherworker": { + "minecraft:entity.vex.death": { "protocol_id": 1508 }, - "minecraft:entity.villager.work_librarian": { + "minecraft:entity.vex.hurt": { "protocol_id": 1509 }, - "minecraft:entity.villager.work_mason": { + "minecraft:entity.villager.ambient": { "protocol_id": 1510 }, - "minecraft:entity.villager.work_shepherd": { + "minecraft:entity.villager.celebrate": { "protocol_id": 1511 }, - "minecraft:entity.villager.work_toolsmith": { + "minecraft:entity.villager.death": { "protocol_id": 1512 }, - "minecraft:entity.villager.work_weaponsmith": { + "minecraft:entity.villager.hurt": { "protocol_id": 1513 }, - "minecraft:entity.villager.yes": { - "protocol_id": 1500 - }, - "minecraft:entity.vindicator.ambient": { + "minecraft:entity.villager.no": { "protocol_id": 1514 }, - "minecraft:entity.vindicator.celebrate": { + "minecraft:entity.villager.trade": { "protocol_id": 1515 }, - "minecraft:entity.vindicator.death": { - "protocol_id": 1516 - }, - "minecraft:entity.vindicator.hurt": { + "minecraft:entity.villager.work_armorer": { "protocol_id": 1517 }, - "minecraft:entity.wandering_trader.ambient": { + "minecraft:entity.villager.work_butcher": { + "protocol_id": 1518 + }, + "minecraft:entity.villager.work_cartographer": { + "protocol_id": 1519 + }, + "minecraft:entity.villager.work_cleric": { + "protocol_id": 1520 + }, + "minecraft:entity.villager.work_farmer": { + "protocol_id": 1521 + }, + "minecraft:entity.villager.work_fisherman": { + "protocol_id": 1522 + }, + "minecraft:entity.villager.work_fletcher": { + "protocol_id": 1523 + }, + "minecraft:entity.villager.work_leatherworker": { "protocol_id": 1524 }, - "minecraft:entity.wandering_trader.death": { + "minecraft:entity.villager.work_librarian": { "protocol_id": 1525 }, - "minecraft:entity.wandering_trader.disappeared": { + "minecraft:entity.villager.work_mason": { "protocol_id": 1526 }, - "minecraft:entity.wandering_trader.drink_milk": { + "minecraft:entity.villager.work_shepherd": { "protocol_id": 1527 }, - "minecraft:entity.wandering_trader.drink_potion": { + "minecraft:entity.villager.work_toolsmith": { "protocol_id": 1528 }, - "minecraft:entity.wandering_trader.hurt": { + "minecraft:entity.villager.work_weaponsmith": { "protocol_id": 1529 }, - "minecraft:entity.wandering_trader.no": { + "minecraft:entity.villager.yes": { + "protocol_id": 1516 + }, + "minecraft:entity.vindicator.ambient": { "protocol_id": 1530 }, - "minecraft:entity.wandering_trader.reappeared": { + "minecraft:entity.vindicator.celebrate": { "protocol_id": 1531 }, - "minecraft:entity.wandering_trader.trade": { + "minecraft:entity.vindicator.death": { "protocol_id": 1532 }, - "minecraft:entity.wandering_trader.yes": { + "minecraft:entity.vindicator.hurt": { "protocol_id": 1533 }, - "minecraft:entity.warden.agitated": { - "protocol_id": 1534 - }, - "minecraft:entity.warden.ambient": { - "protocol_id": 1535 - }, - "minecraft:entity.warden.angry": { - "protocol_id": 1536 - }, - "minecraft:entity.warden.attack_impact": { - "protocol_id": 1537 - }, - "minecraft:entity.warden.death": { - "protocol_id": 1538 - }, - "minecraft:entity.warden.dig": { - "protocol_id": 1539 - }, - "minecraft:entity.warden.emerge": { + "minecraft:entity.wandering_trader.ambient": { "protocol_id": 1540 }, - "minecraft:entity.warden.heartbeat": { + "minecraft:entity.wandering_trader.death": { "protocol_id": 1541 }, - "minecraft:entity.warden.hurt": { + "minecraft:entity.wandering_trader.disappeared": { "protocol_id": 1542 }, - "minecraft:entity.warden.listening": { + "minecraft:entity.wandering_trader.drink_milk": { "protocol_id": 1543 }, - "minecraft:entity.warden.listening_angry": { + "minecraft:entity.wandering_trader.drink_potion": { "protocol_id": 1544 }, - "minecraft:entity.warden.nearby_close": { + "minecraft:entity.wandering_trader.hurt": { "protocol_id": 1545 }, - "minecraft:entity.warden.nearby_closer": { + "minecraft:entity.wandering_trader.no": { "protocol_id": 1546 }, - "minecraft:entity.warden.nearby_closest": { + "minecraft:entity.wandering_trader.reappeared": { "protocol_id": 1547 }, - "minecraft:entity.warden.roar": { + "minecraft:entity.wandering_trader.trade": { "protocol_id": 1548 }, - "minecraft:entity.warden.sniff": { + "minecraft:entity.wandering_trader.yes": { "protocol_id": 1549 }, - "minecraft:entity.warden.sonic_boom": { + "minecraft:entity.warden.agitated": { "protocol_id": 1550 }, - "minecraft:entity.warden.sonic_charge": { + "minecraft:entity.warden.ambient": { "protocol_id": 1551 }, - "minecraft:entity.warden.step": { + "minecraft:entity.warden.angry": { "protocol_id": 1552 }, - "minecraft:entity.warden.tendril_clicks": { + "minecraft:entity.warden.attack_impact": { "protocol_id": 1553 }, + "minecraft:entity.warden.death": { + "protocol_id": 1554 + }, + "minecraft:entity.warden.dig": { + "protocol_id": 1555 + }, + "minecraft:entity.warden.emerge": { + "protocol_id": 1556 + }, + "minecraft:entity.warden.heartbeat": { + "protocol_id": 1557 + }, + "minecraft:entity.warden.hurt": { + "protocol_id": 1558 + }, + "minecraft:entity.warden.listening": { + "protocol_id": 1559 + }, + "minecraft:entity.warden.listening_angry": { + "protocol_id": 1560 + }, + "minecraft:entity.warden.nearby_close": { + "protocol_id": 1561 + }, + "minecraft:entity.warden.nearby_closer": { + "protocol_id": 1562 + }, + "minecraft:entity.warden.nearby_closest": { + "protocol_id": 1563 + }, + "minecraft:entity.warden.roar": { + "protocol_id": 1564 + }, + "minecraft:entity.warden.sniff": { + "protocol_id": 1565 + }, + "minecraft:entity.warden.sonic_boom": { + "protocol_id": 1566 + }, + "minecraft:entity.warden.sonic_charge": { + "protocol_id": 1567 + }, + "minecraft:entity.warden.step": { + "protocol_id": 1568 + }, + "minecraft:entity.warden.tendril_clicks": { + "protocol_id": 1569 + }, "minecraft:entity.wind_charge.throw": { - "protocol_id": 1571 - }, - "minecraft:entity.wind_charge.wind_burst": { - "protocol_id": 1570 - }, - "minecraft:entity.witch.ambient": { - "protocol_id": 1572 - }, - "minecraft:entity.witch.celebrate": { - "protocol_id": 1573 - }, - "minecraft:entity.witch.death": { - "protocol_id": 1574 - }, - "minecraft:entity.witch.drink": { - "protocol_id": 1575 - }, - "minecraft:entity.witch.hurt": { - "protocol_id": 1576 - }, - "minecraft:entity.witch.throw": { - "protocol_id": 1577 - }, - "minecraft:entity.wither.ambient": { - "protocol_id": 1578 - }, - "minecraft:entity.wither.break_block": { - "protocol_id": 1579 - }, - "minecraft:entity.wither.death": { - "protocol_id": 1580 - }, - "minecraft:entity.wither.hurt": { - "protocol_id": 1581 - }, - "minecraft:entity.wither.shoot": { - "protocol_id": 1582 - }, - "minecraft:entity.wither.spawn": { "protocol_id": 1587 }, - "minecraft:entity.wither_skeleton.ambient": { - "protocol_id": 1583 - }, - "minecraft:entity.wither_skeleton.death": { - "protocol_id": 1584 - }, - "minecraft:entity.wither_skeleton.hurt": { - "protocol_id": 1585 - }, - "minecraft:entity.wither_skeleton.step": { + "minecraft:entity.wind_charge.wind_burst": { "protocol_id": 1586 }, - "minecraft:entity.wolf.ambient": { + "minecraft:entity.witch.ambient": { + "protocol_id": 1588 + }, + "minecraft:entity.witch.celebrate": { + "protocol_id": 1589 + }, + "minecraft:entity.witch.death": { + "protocol_id": 1590 + }, + "minecraft:entity.witch.drink": { + "protocol_id": 1591 + }, + "minecraft:entity.witch.hurt": { "protocol_id": 1592 }, - "minecraft:entity.wolf.death": { + "minecraft:entity.witch.throw": { "protocol_id": 1593 }, - "minecraft:entity.wolf.growl": { + "minecraft:entity.wither.ambient": { "protocol_id": 1594 }, - "minecraft:entity.wolf.howl": { + "minecraft:entity.wither.break_block": { "protocol_id": 1595 }, - "minecraft:entity.wolf.hurt": { + "minecraft:entity.wither.death": { "protocol_id": 1596 }, - "minecraft:entity.wolf.pant": { + "minecraft:entity.wither.hurt": { "protocol_id": 1597 }, - "minecraft:entity.wolf.shake": { + "minecraft:entity.wither.shoot": { "protocol_id": 1598 }, - "minecraft:entity.wolf.step": { + "minecraft:entity.wither.spawn": { + "protocol_id": 1603 + }, + "minecraft:entity.wither_skeleton.ambient": { "protocol_id": 1599 }, - "minecraft:entity.wolf.whine": { + "minecraft:entity.wither_skeleton.death": { "protocol_id": 1600 }, - "minecraft:entity.zoglin.ambient": { - "protocol_id": 1619 + "minecraft:entity.wither_skeleton.hurt": { + "protocol_id": 1601 }, - "minecraft:entity.zoglin.angry": { - "protocol_id": 1620 + "minecraft:entity.wither_skeleton.step": { + "protocol_id": 1602 }, - "minecraft:entity.zoglin.attack": { - "protocol_id": 1621 + "minecraft:entity.wolf.ambient": { + "protocol_id": 1610 }, - "minecraft:entity.zoglin.death": { - "protocol_id": 1622 + "minecraft:entity.wolf.death": { + "protocol_id": 1611 }, - "minecraft:entity.zoglin.hurt": { - "protocol_id": 1623 + "minecraft:entity.wolf.growl": { + "protocol_id": 1612 }, - "minecraft:entity.zoglin.step": { - "protocol_id": 1624 + "minecraft:entity.wolf.hurt": { + "protocol_id": 1613 }, - "minecraft:entity.zombie.ambient": { - "protocol_id": 1625 + "minecraft:entity.wolf.pant": { + "protocol_id": 1614 }, - "minecraft:entity.zombie.attack_iron_door": { - "protocol_id": 1627 + "minecraft:entity.wolf.shake": { + "protocol_id": 1608 }, - "minecraft:entity.zombie.attack_wooden_door": { - "protocol_id": 1626 + "minecraft:entity.wolf.step": { + "protocol_id": 1609 }, - "minecraft:entity.zombie.break_wooden_door": { + "minecraft:entity.wolf.whine": { + "protocol_id": 1615 + }, + "minecraft:entity.wolf_angry.ambient": { "protocol_id": 1628 }, - "minecraft:entity.zombie.converted_to_drowned": { + "minecraft:entity.wolf_angry.death": { "protocol_id": 1629 }, - "minecraft:entity.zombie.death": { + "minecraft:entity.wolf_angry.growl": { "protocol_id": 1630 }, - "minecraft:entity.zombie.destroy_egg": { + "minecraft:entity.wolf_angry.hurt": { "protocol_id": 1631 }, - "minecraft:entity.zombie.hurt": { - "protocol_id": 1635 - }, - "minecraft:entity.zombie.infect": { - "protocol_id": 1636 - }, - "minecraft:entity.zombie.step": { - "protocol_id": 1641 - }, - "minecraft:entity.zombie_horse.ambient": { + "minecraft:entity.wolf_angry.pant": { "protocol_id": 1632 }, - "minecraft:entity.zombie_horse.death": { + "minecraft:entity.wolf_angry.whine": { "protocol_id": 1633 }, - "minecraft:entity.zombie_horse.hurt": { - "protocol_id": 1634 - }, - "minecraft:entity.zombie_villager.ambient": { - "protocol_id": 1642 - }, - "minecraft:entity.zombie_villager.converted": { - "protocol_id": 1643 - }, - "minecraft:entity.zombie_villager.cure": { - "protocol_id": 1644 - }, - "minecraft:entity.zombie_villager.death": { - "protocol_id": 1645 - }, - "minecraft:entity.zombie_villager.hurt": { - "protocol_id": 1646 - }, - "minecraft:entity.zombie_villager.step": { - "protocol_id": 1647 - }, - "minecraft:entity.zombified_piglin.ambient": { - "protocol_id": 1637 - }, - "minecraft:entity.zombified_piglin.angry": { - "protocol_id": 1638 - }, - "minecraft:entity.zombified_piglin.death": { - "protocol_id": 1639 - }, - "minecraft:entity.zombified_piglin.hurt": { + "minecraft:entity.wolf_big.ambient": { "protocol_id": 1640 }, - "minecraft:event.mob_effect.bad_omen": { + "minecraft:entity.wolf_big.death": { + "protocol_id": 1641 + }, + "minecraft:entity.wolf_big.growl": { + "protocol_id": 1642 + }, + "minecraft:entity.wolf_big.hurt": { + "protocol_id": 1643 + }, + "minecraft:entity.wolf_big.pant": { + "protocol_id": 1644 + }, + "minecraft:entity.wolf_big.whine": { + "protocol_id": 1645 + }, + "minecraft:entity.wolf_cute.ambient": { + "protocol_id": 1646 + }, + "minecraft:entity.wolf_cute.death": { + "protocol_id": 1647 + }, + "minecraft:entity.wolf_cute.growl": { "protocol_id": 1648 }, - "minecraft:event.mob_effect.raid_omen": { - "protocol_id": 1650 - }, - "minecraft:event.mob_effect.trial_omen": { + "minecraft:entity.wolf_cute.hurt": { "protocol_id": 1649 }, + "minecraft:entity.wolf_cute.pant": { + "protocol_id": 1650 + }, + "minecraft:entity.wolf_cute.whine": { + "protocol_id": 1651 + }, + "minecraft:entity.wolf_grumpy.ambient": { + "protocol_id": 1634 + }, + "minecraft:entity.wolf_grumpy.death": { + "protocol_id": 1635 + }, + "minecraft:entity.wolf_grumpy.growl": { + "protocol_id": 1636 + }, + "minecraft:entity.wolf_grumpy.hurt": { + "protocol_id": 1637 + }, + "minecraft:entity.wolf_grumpy.pant": { + "protocol_id": 1638 + }, + "minecraft:entity.wolf_grumpy.whine": { + "protocol_id": 1639 + }, + "minecraft:entity.wolf_puglin.ambient": { + "protocol_id": 1616 + }, + "minecraft:entity.wolf_puglin.death": { + "protocol_id": 1617 + }, + "minecraft:entity.wolf_puglin.growl": { + "protocol_id": 1618 + }, + "minecraft:entity.wolf_puglin.hurt": { + "protocol_id": 1619 + }, + "minecraft:entity.wolf_puglin.pant": { + "protocol_id": 1620 + }, + "minecraft:entity.wolf_puglin.whine": { + "protocol_id": 1621 + }, + "minecraft:entity.wolf_sad.ambient": { + "protocol_id": 1622 + }, + "minecraft:entity.wolf_sad.death": { + "protocol_id": 1623 + }, + "minecraft:entity.wolf_sad.growl": { + "protocol_id": 1624 + }, + "minecraft:entity.wolf_sad.hurt": { + "protocol_id": 1625 + }, + "minecraft:entity.wolf_sad.pant": { + "protocol_id": 1626 + }, + "minecraft:entity.wolf_sad.whine": { + "protocol_id": 1627 + }, + "minecraft:entity.zoglin.ambient": { + "protocol_id": 1670 + }, + "minecraft:entity.zoglin.angry": { + "protocol_id": 1671 + }, + "minecraft:entity.zoglin.attack": { + "protocol_id": 1672 + }, + "minecraft:entity.zoglin.death": { + "protocol_id": 1673 + }, + "minecraft:entity.zoglin.hurt": { + "protocol_id": 1674 + }, + "minecraft:entity.zoglin.step": { + "protocol_id": 1675 + }, + "minecraft:entity.zombie.ambient": { + "protocol_id": 1676 + }, + "minecraft:entity.zombie.attack_iron_door": { + "protocol_id": 1678 + }, + "minecraft:entity.zombie.attack_wooden_door": { + "protocol_id": 1677 + }, + "minecraft:entity.zombie.break_wooden_door": { + "protocol_id": 1679 + }, + "minecraft:entity.zombie.converted_to_drowned": { + "protocol_id": 1680 + }, + "minecraft:entity.zombie.death": { + "protocol_id": 1681 + }, + "minecraft:entity.zombie.destroy_egg": { + "protocol_id": 1682 + }, + "minecraft:entity.zombie.hurt": { + "protocol_id": 1686 + }, + "minecraft:entity.zombie.infect": { + "protocol_id": 1687 + }, + "minecraft:entity.zombie.step": { + "protocol_id": 1692 + }, + "minecraft:entity.zombie_horse.ambient": { + "protocol_id": 1683 + }, + "minecraft:entity.zombie_horse.death": { + "protocol_id": 1684 + }, + "minecraft:entity.zombie_horse.hurt": { + "protocol_id": 1685 + }, + "minecraft:entity.zombie_villager.ambient": { + "protocol_id": 1693 + }, + "minecraft:entity.zombie_villager.converted": { + "protocol_id": 1694 + }, + "minecraft:entity.zombie_villager.cure": { + "protocol_id": 1695 + }, + "minecraft:entity.zombie_villager.death": { + "protocol_id": 1696 + }, + "minecraft:entity.zombie_villager.hurt": { + "protocol_id": 1697 + }, + "minecraft:entity.zombie_villager.step": { + "protocol_id": 1698 + }, + "minecraft:entity.zombified_piglin.ambient": { + "protocol_id": 1688 + }, + "minecraft:entity.zombified_piglin.angry": { + "protocol_id": 1689 + }, + "minecraft:entity.zombified_piglin.death": { + "protocol_id": 1690 + }, + "minecraft:entity.zombified_piglin.hurt": { + "protocol_id": 1691 + }, + "minecraft:event.mob_effect.bad_omen": { + "protocol_id": 1699 + }, + "minecraft:event.mob_effect.raid_omen": { + "protocol_id": 1701 + }, + "minecraft:event.mob_effect.trial_omen": { + "protocol_id": 1700 + }, "minecraft:event.raid.horn": { - "protocol_id": 1178 + "protocol_id": 1192 }, "minecraft:intentionally_empty": { - "protocol_id": 964 + "protocol_id": 978 }, "minecraft:item.armor.equip_chain": { "protocol_id": 67 @@ -16905,350 +17162,364 @@ "protocol_id": 226 }, "minecraft:item.chorus_fruit.teleport": { - "protocol_id": 321 + "protocol_id": 323 }, "minecraft:item.crop.plant": { - "protocol_id": 397 - }, - "minecraft:item.crossbow.hit": { - "protocol_id": 398 - }, - "minecraft:item.crossbow.loading_end": { "protocol_id": 399 }, - "minecraft:item.crossbow.loading_middle": { + "minecraft:item.crossbow.hit": { "protocol_id": 400 }, - "minecraft:item.crossbow.loading_start": { + "minecraft:item.crossbow.loading_end": { "protocol_id": 401 }, - "minecraft:item.crossbow.quick_charge_1": { + "minecraft:item.crossbow.loading_middle": { "protocol_id": 402 }, - "minecraft:item.crossbow.quick_charge_2": { + "minecraft:item.crossbow.loading_start": { "protocol_id": 403 }, - "minecraft:item.crossbow.quick_charge_3": { + "minecraft:item.crossbow.quick_charge_1": { "protocol_id": 404 }, - "minecraft:item.crossbow.shoot": { + "minecraft:item.crossbow.quick_charge_2": { "protocol_id": 405 }, + "minecraft:item.crossbow.quick_charge_3": { + "protocol_id": 406 + }, + "minecraft:item.crossbow.shoot": { + "protocol_id": 407 + }, "minecraft:item.dye.use": { - "protocol_id": 475 + "protocol_id": 478 }, "minecraft:item.elytra.flying": { - "protocol_id": 485 + "protocol_id": 488 }, "minecraft:item.firecharge.use": { - "protocol_id": 530 + "protocol_id": 533 }, "minecraft:item.flintandsteel.use": { - "protocol_id": 545 + "protocol_id": 549 }, "minecraft:item.glow_ink_sac.use": { - "protocol_id": 624 + "protocol_id": 628 }, "minecraft:item.goat_horn.sound.0": { - "protocol_id": 730 - }, - "minecraft:item.goat_horn.sound.1": { - "protocol_id": 731 - }, - "minecraft:item.goat_horn.sound.2": { - "protocol_id": 732 - }, - "minecraft:item.goat_horn.sound.3": { - "protocol_id": 733 - }, - "minecraft:item.goat_horn.sound.4": { "protocol_id": 734 }, - "minecraft:item.goat_horn.sound.5": { + "minecraft:item.goat_horn.sound.1": { "protocol_id": 735 }, - "minecraft:item.goat_horn.sound.6": { + "minecraft:item.goat_horn.sound.2": { "protocol_id": 736 }, - "minecraft:item.goat_horn.sound.7": { + "minecraft:item.goat_horn.sound.3": { "protocol_id": 737 }, + "minecraft:item.goat_horn.sound.4": { + "protocol_id": 738 + }, + "minecraft:item.goat_horn.sound.5": { + "protocol_id": 739 + }, + "minecraft:item.goat_horn.sound.6": { + "protocol_id": 740 + }, + "minecraft:item.goat_horn.sound.7": { + "protocol_id": 741 + }, "minecraft:item.hoe.till": { - "protocol_id": 713 + "protocol_id": 717 }, "minecraft:item.honey_bottle.drink": { - "protocol_id": 729 + "protocol_id": 733 }, "minecraft:item.honeycomb.wax_on": { - "protocol_id": 728 + "protocol_id": 732 }, "minecraft:item.ink_sac.use": { - "protocol_id": 769 + "protocol_id": 773 }, "minecraft:item.lodestone_compass.lock": { - "protocol_id": 823 + "protocol_id": 837 }, "minecraft:item.mace.smash_air": { - "protocol_id": 824 + "protocol_id": 838 }, "minecraft:item.mace.smash_ground": { - "protocol_id": 825 + "protocol_id": 839 }, "minecraft:item.mace.smash_ground_heavy": { - "protocol_id": 826 + "protocol_id": 840 }, "minecraft:item.nether_wart.plant": { - "protocol_id": 948 + "protocol_id": 962 }, "minecraft:item.ominous_bottle.dispose": { - "protocol_id": 1035 + "protocol_id": 1049 }, "minecraft:item.shield.block": { - "protocol_id": 1257 + "protocol_id": 1273 }, "minecraft:item.shield.break": { - "protocol_id": 1258 + "protocol_id": 1274 }, "minecraft:item.shovel.flatten": { - "protocol_id": 1264 + "protocol_id": 1280 }, "minecraft:item.spyglass.stop_using": { - "protocol_id": 1396 + "protocol_id": 1412 }, "minecraft:item.spyglass.use": { - "protocol_id": 1395 + "protocol_id": 1411 }, "minecraft:item.totem.use": { - "protocol_id": 1423 + "protocol_id": 1439 }, "minecraft:item.trident.hit": { - "protocol_id": 1424 + "protocol_id": 1440 }, "minecraft:item.trident.hit_ground": { - "protocol_id": 1425 + "protocol_id": 1441 }, "minecraft:item.trident.return": { - "protocol_id": 1426 + "protocol_id": 1442 }, "minecraft:item.trident.riptide_1": { - "protocol_id": 1427 + "protocol_id": 1443 }, "minecraft:item.trident.riptide_2": { - "protocol_id": 1428 + "protocol_id": 1444 }, "minecraft:item.trident.riptide_3": { - "protocol_id": 1429 + "protocol_id": 1445 }, "minecraft:item.trident.throw": { - "protocol_id": 1430 + "protocol_id": 1446 }, "minecraft:item.trident.thunder": { - "protocol_id": 1431 + "protocol_id": 1447 }, "minecraft:item.wolf_armor.break": { - "protocol_id": 1588 + "protocol_id": 1604 }, "minecraft:item.wolf_armor.crack": { - "protocol_id": 1589 + "protocol_id": 1605 }, "minecraft:item.wolf_armor.damage": { - "protocol_id": 1590 + "protocol_id": 1606 }, "minecraft:item.wolf_armor.repair": { - "protocol_id": 1591 + "protocol_id": 1607 }, "minecraft:music.creative": { - "protocol_id": 892 - }, - "minecraft:music.credits": { - "protocol_id": 893 - }, - "minecraft:music.dragon": { - "protocol_id": 913 - }, - "minecraft:music.end": { - "protocol_id": 914 - }, - "minecraft:music.game": { - "protocol_id": 915 - }, - "minecraft:music.menu": { - "protocol_id": 916 - }, - "minecraft:music.nether.basalt_deltas": { - "protocol_id": 917 - }, - "minecraft:music.nether.crimson_forest": { - "protocol_id": 918 - }, - "minecraft:music.nether.nether_wastes": { - "protocol_id": 929 - }, - "minecraft:music.nether.soul_sand_valley": { - "protocol_id": 932 - }, - "minecraft:music.nether.warped_forest": { - "protocol_id": 934 - }, - "minecraft:music.overworld.badlands": { - "protocol_id": 937 - }, - "minecraft:music.overworld.bamboo_jungle": { - "protocol_id": 940 - }, - "minecraft:music.overworld.cherry_grove": { - "protocol_id": 928 - }, - "minecraft:music.overworld.deep_dark": { - "protocol_id": 919 - }, - "minecraft:music.overworld.desert": { - "protocol_id": 936 - }, - "minecraft:music.overworld.dripstone_caves": { - "protocol_id": 920 - }, - "minecraft:music.overworld.flower_forest": { - "protocol_id": 935 - }, - "minecraft:music.overworld.forest": { - "protocol_id": 925 - }, - "minecraft:music.overworld.frozen_peaks": { - "protocol_id": 930 - }, - "minecraft:music.overworld.grove": { - "protocol_id": 921 - }, - "minecraft:music.overworld.jagged_peaks": { - "protocol_id": 922 - }, - "minecraft:music.overworld.jungle": { - "protocol_id": 938 - }, - "minecraft:music.overworld.lush_caves": { - "protocol_id": 923 - }, - "minecraft:music.overworld.meadow": { - "protocol_id": 927 - }, - "minecraft:music.overworld.old_growth_taiga": { - "protocol_id": 926 - }, - "minecraft:music.overworld.snowy_slopes": { - "protocol_id": 931 - }, - "minecraft:music.overworld.sparse_jungle": { - "protocol_id": 939 - }, - "minecraft:music.overworld.stony_peaks": { - "protocol_id": 933 - }, - "minecraft:music.overworld.swamp": { - "protocol_id": 924 - }, - "minecraft:music.under_water": { - "protocol_id": 941 - }, - "minecraft:music_disc.11": { - "protocol_id": 895 - }, - "minecraft:music_disc.13": { - "protocol_id": 896 - }, - "minecraft:music_disc.5": { - "protocol_id": 894 - }, - "minecraft:music_disc.blocks": { - "protocol_id": 897 - }, - "minecraft:music_disc.cat": { - "protocol_id": 898 - }, - "minecraft:music_disc.chirp": { - "protocol_id": 899 - }, - "minecraft:music_disc.creator": { - "protocol_id": 910 - }, - "minecraft:music_disc.creator_music_box": { - "protocol_id": 911 - }, - "minecraft:music_disc.far": { - "protocol_id": 900 - }, - "minecraft:music_disc.mall": { - "protocol_id": 901 - }, - "minecraft:music_disc.mellohi": { - "protocol_id": 902 - }, - "minecraft:music_disc.otherside": { - "protocol_id": 908 - }, - "minecraft:music_disc.pigstep": { - "protocol_id": 903 - }, - "minecraft:music_disc.precipice": { - "protocol_id": 912 - }, - "minecraft:music_disc.relic": { - "protocol_id": 909 - }, - "minecraft:music_disc.stal": { - "protocol_id": 904 - }, - "minecraft:music_disc.strad": { - "protocol_id": 905 - }, - "minecraft:music_disc.wait": { "protocol_id": 906 }, - "minecraft:music_disc.ward": { + "minecraft:music.credits": { "protocol_id": 907 }, + "minecraft:music.dragon": { + "protocol_id": 927 + }, + "minecraft:music.end": { + "protocol_id": 928 + }, + "minecraft:music.game": { + "protocol_id": 929 + }, + "minecraft:music.menu": { + "protocol_id": 930 + }, + "minecraft:music.nether.basalt_deltas": { + "protocol_id": 931 + }, + "minecraft:music.nether.crimson_forest": { + "protocol_id": 932 + }, + "minecraft:music.nether.nether_wastes": { + "protocol_id": 943 + }, + "minecraft:music.nether.soul_sand_valley": { + "protocol_id": 946 + }, + "minecraft:music.nether.warped_forest": { + "protocol_id": 948 + }, + "minecraft:music.overworld.badlands": { + "protocol_id": 951 + }, + "minecraft:music.overworld.bamboo_jungle": { + "protocol_id": 954 + }, + "minecraft:music.overworld.cherry_grove": { + "protocol_id": 942 + }, + "minecraft:music.overworld.deep_dark": { + "protocol_id": 933 + }, + "minecraft:music.overworld.desert": { + "protocol_id": 950 + }, + "minecraft:music.overworld.dripstone_caves": { + "protocol_id": 934 + }, + "minecraft:music.overworld.flower_forest": { + "protocol_id": 949 + }, + "minecraft:music.overworld.forest": { + "protocol_id": 939 + }, + "minecraft:music.overworld.frozen_peaks": { + "protocol_id": 944 + }, + "minecraft:music.overworld.grove": { + "protocol_id": 935 + }, + "minecraft:music.overworld.jagged_peaks": { + "protocol_id": 936 + }, + "minecraft:music.overworld.jungle": { + "protocol_id": 952 + }, + "minecraft:music.overworld.lush_caves": { + "protocol_id": 937 + }, + "minecraft:music.overworld.meadow": { + "protocol_id": 941 + }, + "minecraft:music.overworld.old_growth_taiga": { + "protocol_id": 940 + }, + "minecraft:music.overworld.snowy_slopes": { + "protocol_id": 945 + }, + "minecraft:music.overworld.sparse_jungle": { + "protocol_id": 953 + }, + "minecraft:music.overworld.stony_peaks": { + "protocol_id": 947 + }, + "minecraft:music.overworld.swamp": { + "protocol_id": 938 + }, + "minecraft:music.under_water": { + "protocol_id": 955 + }, + "minecraft:music_disc.11": { + "protocol_id": 909 + }, + "minecraft:music_disc.13": { + "protocol_id": 910 + }, + "minecraft:music_disc.5": { + "protocol_id": 908 + }, + "minecraft:music_disc.blocks": { + "protocol_id": 911 + }, + "minecraft:music_disc.cat": { + "protocol_id": 912 + }, + "minecraft:music_disc.chirp": { + "protocol_id": 913 + }, + "minecraft:music_disc.creator": { + "protocol_id": 924 + }, + "minecraft:music_disc.creator_music_box": { + "protocol_id": 925 + }, + "minecraft:music_disc.far": { + "protocol_id": 914 + }, + "minecraft:music_disc.mall": { + "protocol_id": 915 + }, + "minecraft:music_disc.mellohi": { + "protocol_id": 916 + }, + "minecraft:music_disc.otherside": { + "protocol_id": 922 + }, + "minecraft:music_disc.pigstep": { + "protocol_id": 917 + }, + "minecraft:music_disc.precipice": { + "protocol_id": 926 + }, + "minecraft:music_disc.relic": { + "protocol_id": 923 + }, + "minecraft:music_disc.stal": { + "protocol_id": 918 + }, + "minecraft:music_disc.strad": { + "protocol_id": 919 + }, + "minecraft:music_disc.wait": { + "protocol_id": 920 + }, + "minecraft:music_disc.ward": { + "protocol_id": 921 + }, "minecraft:particle.soul_escape": { - "protocol_id": 1322 + "protocol_id": 1338 }, "minecraft:ui.button.click": { - "protocol_id": 1467 + "protocol_id": 1483 }, "minecraft:ui.cartography_table.take_result": { - "protocol_id": 1470 + "protocol_id": 1486 }, "minecraft:ui.hud.bubble_pop": { "protocol_id": 210 }, "minecraft:ui.loom.select_pattern": { - "protocol_id": 1468 + "protocol_id": 1484 }, "minecraft:ui.loom.take_result": { - "protocol_id": 1469 + "protocol_id": 1485 }, "minecraft:ui.stonecutter.select_recipe": { - "protocol_id": 1472 + "protocol_id": 1488 }, "minecraft:ui.stonecutter.take_result": { - "protocol_id": 1471 + "protocol_id": 1487 }, "minecraft:ui.toast.challenge_complete": { - "protocol_id": 1473 + "protocol_id": 1489 }, "minecraft:ui.toast.in": { - "protocol_id": 1474 + "protocol_id": 1490 }, "minecraft:ui.toast.out": { - "protocol_id": 1475 + "protocol_id": 1491 }, "minecraft:weather.rain": { - "protocol_id": 1557 + "protocol_id": 1573 }, "minecraft:weather.rain.above": { - "protocol_id": 1558 + "protocol_id": 1574 } }, "protocol_id": 1 }, + "minecraft:spawn_condition_type": { + "entries": { + "minecraft:biome": { + "protocol_id": 2 + }, + "minecraft:moon_brightness": { + "protocol_id": 1 + }, + "minecraft:structure": { + "protocol_id": 0 + } + }, + "protocol_id": 81 + }, "minecraft:stat_type": { "entries": { "minecraft:broken": { @@ -17281,6 +17552,74 @@ }, "protocol_id": 21 }, + "minecraft:test_environment_definition_type": { + "entries": { + "minecraft:all_of": { + "protocol_id": 0 + }, + "minecraft:function": { + "protocol_id": 4 + }, + "minecraft:game_rules": { + "protocol_id": 1 + }, + "minecraft:time_of_day": { + "protocol_id": 2 + }, + "minecraft:weather": { + "protocol_id": 3 + } + }, + "protocol_id": 79 + }, + "minecraft:test_function": { + "entries": { + "minecraft:always_pass": { + "protocol_id": 0 + } + }, + "protocol_id": 82 + }, + "minecraft:test_instance_type": { + "entries": { + "minecraft:block_based": { + "protocol_id": 0 + }, + "minecraft:function": { + "protocol_id": 1 + } + }, + "protocol_id": 80 + }, + "minecraft:ticket_type": { + "entries": { + "minecraft:dragon": { + "protocol_id": 1 + }, + "minecraft:ender_pearl": { + "protocol_id": 6 + }, + "minecraft:forced": { + "protocol_id": 4 + }, + "minecraft:player_loading": { + "protocol_id": 2 + }, + "minecraft:player_simulation": { + "protocol_id": 3 + }, + "minecraft:portal": { + "protocol_id": 5 + }, + "minecraft:start": { + "protocol_id": 0 + }, + "minecraft:unknown": { + "protocol_id": 7 + } + }, + "protocol_id": 78 + }, "minecraft:trigger_type": { "entries": { "minecraft:allay_drop_item_on_block": { @@ -17452,7 +17791,7 @@ "protocol_id": 34 } }, - "protocol_id": 64 + "protocol_id": 62 }, "minecraft:villager_profession": { "default": "minecraft:none", @@ -17707,190 +18046,193 @@ "minecraft:worldgen/feature": { "entries": { "minecraft:bamboo": { - "protocol_id": 42 - }, - "minecraft:basalt_columns": { - "protocol_id": 47 - }, - "minecraft:basalt_pillar": { - "protocol_id": 52 - }, - "minecraft:block_column": { - "protocol_id": 18 - }, - "minecraft:block_pile": { - "protocol_id": 5 - }, - "minecraft:blue_ice": { - "protocol_id": 25 - }, - "minecraft:bonus_chest": { - "protocol_id": 51 - }, - "minecraft:chorus_plant": { - "protocol_id": 7 - }, - "minecraft:coral_claw": { - "protocol_id": 39 - }, - "minecraft:coral_mushroom": { - "protocol_id": 38 - }, - "minecraft:coral_tree": { - "protocol_id": 37 - }, - "minecraft:delta_feature": { - "protocol_id": 48 - }, - "minecraft:desert_well": { - "protocol_id": 10 - }, - "minecraft:disk": { - "protocol_id": 28 - }, - "minecraft:dripstone_cluster": { - "protocol_id": 58 - }, - "minecraft:end_gateway": { - "protocol_id": 34 - }, - "minecraft:end_island": { - "protocol_id": 33 - }, - "minecraft:end_platform": { - "protocol_id": 31 - }, - "minecraft:end_spike": { - "protocol_id": 32 - }, - "minecraft:fill_layer": { - "protocol_id": 50 - }, - "minecraft:flower": { - "protocol_id": 2 - }, - "minecraft:forest_rock": { - "protocol_id": 27 - }, - "minecraft:fossil": { - "protocol_id": 11 - }, - "minecraft:freeze_top_layer": { - "protocol_id": 16 - }, - "minecraft:geode": { - "protocol_id": 57 - }, - "minecraft:glowstone_blob": { - "protocol_id": 15 - }, - "minecraft:huge_brown_mushroom": { - "protocol_id": 13 - }, - "minecraft:huge_fungus": { "protocol_id": 43 }, - "minecraft:huge_red_mushroom": { - "protocol_id": 12 + "minecraft:basalt_columns": { + "protocol_id": 48 }, - "minecraft:ice_spike": { - "protocol_id": 14 + "minecraft:basalt_pillar": { + "protocol_id": 53 }, - "minecraft:iceberg": { + "minecraft:block_column": { + "protocol_id": 19 + }, + "minecraft:block_pile": { + "protocol_id": 6 + }, + "minecraft:blue_ice": { "protocol_id": 26 }, - "minecraft:kelp": { - "protocol_id": 36 + "minecraft:bonus_chest": { + "protocol_id": 52 }, - "minecraft:lake": { - "protocol_id": 29 + "minecraft:chorus_plant": { + "protocol_id": 8 }, - "minecraft:large_dripstone": { - "protocol_id": 59 + "minecraft:coral_claw": { + "protocol_id": 40 }, - "minecraft:monster_room": { - "protocol_id": 24 + "minecraft:coral_mushroom": { + "protocol_id": 39 }, - "minecraft:multiface_growth": { - "protocol_id": 22 + "minecraft:coral_tree": { + "protocol_id": 38 }, - "minecraft:nether_forest_vegetation": { - "protocol_id": 44 - }, - "minecraft:netherrack_replace_blobs": { + "minecraft:delta_feature": { "protocol_id": 49 }, - "minecraft:no_bonemeal_flower": { + "minecraft:desert_well": { + "protocol_id": 11 + }, + "minecraft:disk": { + "protocol_id": 29 + }, + "minecraft:dripstone_cluster": { + "protocol_id": 59 + }, + "minecraft:end_gateway": { + "protocol_id": 35 + }, + "minecraft:end_island": { + "protocol_id": 34 + }, + "minecraft:end_platform": { + "protocol_id": 32 + }, + "minecraft:end_spike": { + "protocol_id": 33 + }, + "minecraft:fallen_tree": { + "protocol_id": 2 + }, + "minecraft:fill_layer": { + "protocol_id": 51 + }, + "minecraft:flower": { "protocol_id": 3 }, + "minecraft:forest_rock": { + "protocol_id": 28 + }, + "minecraft:fossil": { + "protocol_id": 12 + }, + "minecraft:freeze_top_layer": { + "protocol_id": 17 + }, + "minecraft:geode": { + "protocol_id": 58 + }, + "minecraft:glowstone_blob": { + "protocol_id": 16 + }, + "minecraft:huge_brown_mushroom": { + "protocol_id": 14 + }, + "minecraft:huge_fungus": { + "protocol_id": 44 + }, + "minecraft:huge_red_mushroom": { + "protocol_id": 13 + }, + "minecraft:ice_spike": { + "protocol_id": 15 + }, + "minecraft:iceberg": { + "protocol_id": 27 + }, + "minecraft:kelp": { + "protocol_id": 37 + }, + "minecraft:lake": { + "protocol_id": 30 + }, + "minecraft:large_dripstone": { + "protocol_id": 60 + }, + "minecraft:monster_room": { + "protocol_id": 25 + }, + "minecraft:multiface_growth": { + "protocol_id": 23 + }, + "minecraft:nether_forest_vegetation": { + "protocol_id": 45 + }, + "minecraft:netherrack_replace_blobs": { + "protocol_id": 50 + }, + "minecraft:no_bonemeal_flower": { + "protocol_id": 4 + }, "minecraft:no_op": { "protocol_id": 0 }, "minecraft:ore": { - "protocol_id": 30 + "protocol_id": 31 }, "minecraft:pointed_dripstone": { - "protocol_id": 60 - }, - "minecraft:random_boolean_selector": { - "protocol_id": 56 - }, - "minecraft:random_patch": { - "protocol_id": 4 - }, - "minecraft:random_selector": { - "protocol_id": 54 - }, - "minecraft:replace_single_block": { - "protocol_id": 8 - }, - "minecraft:root_system": { - "protocol_id": 21 - }, - "minecraft:scattered_ore": { - "protocol_id": 53 - }, - "minecraft:sculk_patch": { "protocol_id": 61 }, - "minecraft:sea_pickle": { - "protocol_id": 40 + "minecraft:random_boolean_selector": { + "protocol_id": 57 }, - "minecraft:seagrass": { - "protocol_id": 35 + "minecraft:random_patch": { + "protocol_id": 5 }, - "minecraft:simple_block": { - "protocol_id": 41 - }, - "minecraft:simple_random_selector": { + "minecraft:random_selector": { "protocol_id": 55 }, + "minecraft:replace_single_block": { + "protocol_id": 9 + }, + "minecraft:root_system": { + "protocol_id": 22 + }, + "minecraft:scattered_ore": { + "protocol_id": 54 + }, + "minecraft:sculk_patch": { + "protocol_id": 62 + }, + "minecraft:sea_pickle": { + "protocol_id": 41 + }, + "minecraft:seagrass": { + "protocol_id": 36 + }, + "minecraft:simple_block": { + "protocol_id": 42 + }, + "minecraft:simple_random_selector": { + "protocol_id": 56 + }, "minecraft:spring_feature": { - "protocol_id": 6 + "protocol_id": 7 }, "minecraft:tree": { "protocol_id": 1 }, "minecraft:twisting_vines": { - "protocol_id": 46 + "protocol_id": 47 }, "minecraft:underwater_magma": { - "protocol_id": 23 + "protocol_id": 24 }, "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:vines": { + "protocol_id": 18 + }, + "minecraft:void_start_platform": { + "protocol_id": 10 + }, + "minecraft:waterlogged_vegetation_patch": { + "protocol_id": 21 + }, "minecraft:weeping_vines": { - "protocol_id": 45 + "protocol_id": 46 } }, "protocol_id": 40 @@ -18374,6 +18716,9 @@ "minecraft:attached_to_leaves": { "protocol_id": 7 }, + "minecraft:attached_to_logs": { + "protocol_id": 9 + }, "minecraft:beehive": { "protocol_id": 5 }, @@ -18389,6 +18734,9 @@ "minecraft:pale_moss": { "protocol_id": 2 }, + "minecraft:place_on_ground": { + "protocol_id": 8 + }, "minecraft:trunk_vine": { "protocol_id": 0 }